﻿<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>
    <name>System.Windows.Forms</name>
  </assembly>
  <members>
    <member name="T:System.Drawing.Design.IPropertyValueUIService">
      <summary>Provides an interface to manage the images, ToolTips, and event handlers for the properties of a component displayed in a property browser.</summary>
    </member>
    <member name="E:System.Drawing.Design.IPropertyValueUIService.PropertyUIValueItemsChanged">
      <summary>Occurs when the list of <see cref="T:System.Drawing.Design.PropertyValueUIItem" /> objects is modified.</summary>
    </member>
    <member name="M:System.Drawing.Design.IPropertyValueUIService.AddPropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler)">
      <summary>Adds the specified <see cref="T:System.Drawing.Design.PropertyValueUIHandler" /> to this service.</summary>
      <param name="newHandler">The property value UI handler to add.</param>
    </member>
    <member name="M:System.Drawing.Design.IPropertyValueUIService.GetPropertyUIValueItems(System.ComponentModel.ITypeDescriptorContext,System.ComponentModel.PropertyDescriptor)">
      <summary>Gets the <see cref="T:System.Drawing.Design.PropertyValueUIItem" /> objects that match the specified context and property descriptor characteristics.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information.</param>
      <param name="propDesc">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that indicates the property to match with the properties to return.</param>
      <returns>An array of <see cref="T:System.Drawing.Design.PropertyValueUIItem" /> objects that match the specified parameters.</returns>
    </member>
    <member name="M:System.Drawing.Design.IPropertyValueUIService.NotifyPropertyValueUIItemsChanged">
      <summary>Notifies the <see cref="T:System.Drawing.Design.IPropertyValueUIService" /> implementation that the global list of <see cref="T:System.Drawing.Design.PropertyValueUIItem" /> objects has been modified.</summary>
    </member>
    <member name="M:System.Drawing.Design.IPropertyValueUIService.RemovePropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler)">
      <summary>Removes the specified <see cref="T:System.Drawing.Design.PropertyValueUIHandler" /> from the property value UI service.</summary>
      <param name="newHandler">The handler to remove.</param>
    </member>
    <member name="T:System.Drawing.Design.PaintValueEventArgs">
      <summary>Provides data for the <see cref="M:System.Drawing.Design.UITypeEditor.PaintValue(System.Object,System.Drawing.Graphics,System.Drawing.Rectangle)" /> method.</summary>
    </member>
    <member name="M:System.Drawing.Design.PaintValueEventArgs.#ctor(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.PaintValueEventArgs" /> class using the specified values.</summary>
      <param name="context">The context in which the value appears.</param>
      <param name="value">The value to paint.</param>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> object with which drawing is to be done.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> in which drawing is to be done.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="graphics" /> is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Drawing.Design.PaintValueEventArgs.Bounds">
      <summary>Gets the rectangle that indicates the area in which the painting should be done.</summary>
      <returns>The rectangle that indicates the area in which the painting should be done.</returns>
    </member>
    <member name="P:System.Drawing.Design.PaintValueEventArgs.Context">
      <summary>Gets the <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> interface to be used to gain additional information about the context this value appears in.</summary>
      <returns>An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that indicates the context of the event.</returns>
    </member>
    <member name="P:System.Drawing.Design.PaintValueEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> object with which painting should be done.</summary>
      <returns>A <see cref="T:System.Drawing.Graphics" /> object to use for painting.</returns>
    </member>
    <member name="P:System.Drawing.Design.PaintValueEventArgs.Value">
      <summary>Gets the value to paint.</summary>
      <returns>An object indicating what to paint.</returns>
    </member>
    <member name="T:System.Drawing.Design.PropertyValueUIHandler">
      <summary>Represents the method that adds a delegate to an implementation of <see cref="T:System.Drawing.Design.IPropertyValueUIService" />.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to obtain context information.</param>
      <param name="propDesc">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the property being queried.</param>
      <param name="valueUIItemList">An <see cref="T:System.Collections.ArrayList" /> of <see cref="T:System.Drawing.Design.PropertyValueUIItem" /> objects containing the UI items associated with the property.</param>
    </member>
    <member name="T:System.Drawing.Design.PropertyValueUIItem">
      <summary>Provides information about a property displayed in the Properties window, including the associated event handler, pop-up information string, and the icon to display for the property.</summary>
    </member>
    <member name="M:System.Drawing.Design.PropertyValueUIItem.#ctor(System.Drawing.Image,System.Drawing.Design.PropertyValueUIItemInvokeHandler,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.PropertyValueUIItem" /> class.</summary>
      <param name="uiItemImage">The icon to display. The image must be 8 x 8 pixels.</param>
      <param name="handler">The handler to invoke when the image is double-clicked.</param>
      <param name="tooltip">The <see cref="P:System.Drawing.Design.PropertyValueUIItem.ToolTip" /> to display for the property that this <see cref="T:System.Drawing.Design.PropertyValueUIItem" /> is associated with.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="uiItemImage" /> or <paramref name="handler" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Drawing.Design.PropertyValueUIItem.Reset">
      <summary>Resets the user interface (UI) item.</summary>
    </member>
    <member name="P:System.Drawing.Design.PropertyValueUIItem.Image">
      <summary>Gets the 8 x 8 pixel image that will be drawn in the Properties window.</summary>
      <returns>The image to use for the property icon.</returns>
    </member>
    <member name="P:System.Drawing.Design.PropertyValueUIItem.InvokeHandler">
      <summary>Gets the handler that is raised when a user double-clicks this item.</summary>
      <returns>A <see cref="T:System.Drawing.Design.PropertyValueUIItemInvokeHandler" /> indicating the event handler for this user interface (UI) item.</returns>
    </member>
    <member name="P:System.Drawing.Design.PropertyValueUIItem.ToolTip">
      <summary>Gets or sets the information string to display for this item.</summary>
      <returns>A string containing the information string to display for this item.</returns>
    </member>
    <member name="T:System.Drawing.Design.PropertyValueUIItemInvokeHandler">
      <summary>Represents the method that will handle the <see cref="P:System.Drawing.Design.PropertyValueUIItem.InvokeHandler" /> event of a <see cref="T:System.Drawing.Design.PropertyValueUIItem" />.</summary>
      <param name="context">The <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> for the property associated with the icon that was double-clicked.</param>
      <param name="descriptor">The property associated with the icon that was double-clicked.</param>
      <param name="invokedItem">The <see cref="T:System.Drawing.Design.PropertyValueUIItem" /> associated with the icon that was double-clicked.</param>
    </member>
    <member name="T:System.Drawing.Design.UITypeEditor">
      <summary>Provides a base class that can be used to design value editors that can provide a user interface (UI) for representing and editing the values of objects of the supported data types.</summary>
    </member>
    <member name="M:System.Drawing.Design.UITypeEditor.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.UITypeEditor" /> class.</summary>
    </member>
    <member name="M:System.Drawing.Design.UITypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
      <summary>Edits the specified object's value using the editor style indicated by the <see cref="M:System.Drawing.Design.UITypeEditor.GetEditStyle" /> method.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information.</param>
      <param name="provider">An <see cref="T:System.IServiceProvider" /> that this editor can use to obtain services.</param>
      <param name="value">The object to edit.</param>
      <returns>The new value of the object. If the value of the object has not changed, this should return the same object it was passed.</returns>
    </member>
    <member name="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)">
      <summary>Edits the value of the specified object using the editor style indicated by the <see cref="M:System.Drawing.Design.UITypeEditor.GetEditStyle" /> method.</summary>
      <param name="provider">An <see cref="T:System.IServiceProvider" /> that this editor can use to obtain services.</param>
      <param name="value">The object to edit.</param>
      <returns>The new value of the object.</returns>
    </member>
    <member name="M:System.Drawing.Design.UITypeEditor.GetEditStyle">
      <summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)" /> method.</summary>
      <returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> enumeration value that indicates the style of editor used by the current <see cref="T:System.Drawing.Design.UITypeEditor" />. By default, this method will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
    </member>
    <member name="M:System.Drawing.Design.UITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)" /> method.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information.</param>
      <returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by the <see cref="M:System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider,System.Object)" /> method. If the <see cref="T:System.Drawing.Design.UITypeEditor" /> does not support this method, then <see cref="M:System.Drawing.Design.UITypeEditor.GetEditStyle" /> will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
    </member>
    <member name="M:System.Drawing.Design.UITypeEditor.GetPaintValueSupported">
      <summary>Indicates whether this editor supports painting a representation of an object's value.</summary>
      <returns>
        <see langword="true" /> if <see cref="M:System.Drawing.Design.UITypeEditor.PaintValue(System.Object,System.Drawing.Graphics,System.Drawing.Rectangle)" /> is implemented; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Drawing.Design.UITypeEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Indicates whether the specified context supports painting a representation of an object's value within the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information.</param>
      <returns>
        <see langword="true" /> if <see cref="M:System.Drawing.Design.UITypeEditor.PaintValue(System.Object,System.Drawing.Graphics,System.Drawing.Rectangle)" /> is implemented; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Drawing.Design.UITypeEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)">
      <summary>Paints a representation of the value of an object using the specified <see cref="T:System.Drawing.Design.PaintValueEventArgs" />.</summary>
      <param name="e">A <see cref="T:System.Drawing.Design.PaintValueEventArgs" /> that indicates what to paint and where to paint it.</param>
    </member>
    <member name="M:System.Drawing.Design.UITypeEditor.PaintValue(System.Object,System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Paints a representation of the value of the specified object to the specified canvas.</summary>
      <param name="value">The object whose value this type editor will display.</param>
      <param name="canvas">A drawing canvas on which to paint the representation of the object's value.</param>
      <param name="rectangle">A <see cref="T:System.Drawing.Rectangle" /> within whose boundaries to paint the value.</param>
    </member>
    <member name="P:System.Drawing.Design.UITypeEditor.IsDropDownResizable">
      <summary>Gets a value indicating whether drop-down editors should be resizable by the user.</summary>
      <returns>
        <see langword="true" /> if drop-down editors are resizable; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Drawing.Design.UITypeEditorEditStyle">
      <summary>Specifies identifiers that indicate the value editing style of a <see cref="T:System.Drawing.Design.UITypeEditor" />.</summary>
    </member>
    <member name="F:System.Drawing.Design.UITypeEditorEditStyle.DropDown">
      <summary>Displays a drop-down arrow button and hosts the user interface (UI) in a drop-down dialog box.</summary>
    </member>
    <member name="F:System.Drawing.Design.UITypeEditorEditStyle.Modal">
      <summary>Displays an ellipsis (...) button to start a modal dialog box, which requires user input before continuing a program, or a modeless dialog box, which stays on the screen and is available for use at any time but permits other user activities.</summary>
    </member>
    <member name="F:System.Drawing.Design.UITypeEditorEditStyle.None">
      <summary>Provides no interactive user interface (UI) component.</summary>
    </member>
    <member name="T:System.Resources.ResXDataNode">
      <summary>Represents an element in an XML resource (.resx) file.</summary>
    </member>
    <member name="M:System.Resources.ResXDataNode.#ctor(System.String,System.Object)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXDataNode" /> class.</summary>
      <param name="name">The name of the resource.</param>
      <param name="value">The resource to store.</param>
      <exception cref="T:System.InvalidOperationException">The resource named in <paramref name="value" /> does not support serialization.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="name" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="name" /> is a string of zero length.</exception>
    </member>
    <member name="M:System.Resources.ResXDataNode.#ctor(System.String,System.Object,System.Func{System.Type,System.String})">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXDataNode" /> class.</summary>
      <param name="name">The name of the resource.</param>
      <param name="value">The resource to store.</param>
      <param name="typeNameConverter">A reference to a method that takes a <see cref="T:System.Type" /> and returns a string containing the <see cref="T:System.Type" /> name.</param>
      <exception cref="T:System.InvalidOperationException">The resource named in <paramref name="value" /> does not support serialization.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="name" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="name" /> is a string of zero length.</exception>
    </member>
    <member name="M:System.Resources.ResXDataNode.#ctor(System.String,System.Resources.ResXFileRef)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXDataNode" /> class with a reference to a resource file.</summary>
      <param name="name">The name of the resource.</param>
      <param name="fileRef">The file reference to use as the resource.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="name" /> is <see langword="null" /> or <paramref name="fileRef" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="name" /> is a string of zero length.</exception>
    </member>
    <member name="M:System.Resources.ResXDataNode.#ctor(System.String,System.Resources.ResXFileRef,System.Func{System.Type,System.String})">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXDataNode" /> class with a reference to a resource file.</summary>
      <param name="name">The name of the resource.</param>
      <param name="fileRef">The file reference to use as the resource.</param>
      <param name="typeNameConverter">A reference to a method that takes a <see cref="T:System.Type" /> and returns a string containing the <see cref="T:System.Type" /> name.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="name" /> is <see langword="null" /> or <paramref name="fileRef" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="name" /> is a string of zero length.</exception>
    </member>
    <member name="M:System.Resources.ResXDataNode.GetNodePosition">
      <summary>Retrieves the position of the resource in the resource file.</summary>
      <returns>A structure that specifies the location of this resource in the resource file as a line position (<see cref="P:System.Drawing.Point.X" />) and a column position (<see cref="P:System.Drawing.Point.Y" />). If this resource is not part of a resource file, this method returns a structure that has an <see cref="P:System.Drawing.Point.X" /> of 0 and a <see cref="P:System.Drawing.Point.Y" /> of 0.</returns>
    </member>
    <member name="M:System.Resources.ResXDataNode.GetValue(System.ComponentModel.Design.ITypeResolutionService)">
      <summary>Retrieves the object that is stored by this node by using the specified type resolution service.</summary>
      <param name="typeResolver">The type resolution service to use when looking for a type converter.</param>
      <exception cref="T:System.TypeLoadException">The corresponding type could not be found, or an appropriate type converter is not available.</exception>
      <returns>The object that corresponds to the stored value.</returns>
    </member>
    <member name="M:System.Resources.ResXDataNode.GetValue(System.Reflection.AssemblyName[])">
      <summary>Retrieves the object that is stored by this node by searching the specified assemblies.</summary>
      <param name="names">The list of assemblies to search for the type of the object.</param>
      <exception cref="T:System.TypeLoadException">The corresponding type could not be found, or an appropriate type converter is not available.</exception>
      <returns>The object that corresponds to the stored value.</returns>
    </member>
    <member name="M:System.Resources.ResXDataNode.GetValueTypeName(System.ComponentModel.Design.ITypeResolutionService)">
      <summary>Retrieves the type name for the value by using the specified type resolution service.</summary>
      <param name="typeResolver">The type resolution service to use to locate a converter for this type.</param>
      <exception cref="T:System.TypeLoadException">The corresponding type could not be found.</exception>
      <returns>A string that represents the fully qualified name of the type.</returns>
    </member>
    <member name="M:System.Resources.ResXDataNode.GetValueTypeName(System.Reflection.AssemblyName[])">
      <summary>Retrieves the type name for the value by examining the specified assemblies.</summary>
      <param name="names">The assemblies to examine for the type.</param>
      <exception cref="T:System.TypeLoadException">The corresponding type could not be found.</exception>
      <returns>A string that represents the fully qualified name of the type.</returns>
    </member>
    <member name="M:System.Resources.ResXDataNode.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data needed to serialize the target object.</summary>
      <param name="si">An object to populate with data.</param>
      <param name="context">The destination for this serialization.</param>
    </member>
    <member name="P:System.Resources.ResXDataNode.Comment">
      <summary>Gets or sets an arbitrary comment regarding this resource.</summary>
      <returns>A string that represents the comment.</returns>
    </member>
    <member name="P:System.Resources.ResXDataNode.FileRef">
      <summary>Gets the file reference for this resource.</summary>
      <returns>The file reference, if this resource uses one. If this resource stores its value as an <see cref="T:System.Object" />, this property will return <see langword="null" />.</returns>
    </member>
    <member name="P:System.Resources.ResXDataNode.Name">
      <summary>Gets or sets the name of this resource.</summary>
      <exception cref="T:System.ArgumentNullException">The name property is set to <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The name property is set to a string of zero length.</exception>
      <returns>A string that corresponds to the resource name. If no name is assigned, this property returns a zero-length string.</returns>
    </member>
    <member name="T:System.Resources.ResXFileRef">
      <summary>Represents a link to an external resource.</summary>
    </member>
    <member name="M:System.Resources.ResXFileRef.#ctor(System.String,System.String)">
      <summary>Creates a new instance of the <see cref="T:System.Resources.ResXFileRef" /> class that references the specified file.</summary>
      <param name="fileName">The file to reference.</param>
      <param name="typeName">The type of the resource that is referenced.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="fileName" /> or <paramref name="typeName" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Resources.ResXFileRef.#ctor(System.String,System.String,System.Text.Encoding)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXFileRef" /> class that references the specified file.</summary>
      <param name="fileName">The file to reference.</param>
      <param name="typeName">The type name of the resource that is referenced.</param>
      <param name="textFileEncoding">The encoding used in the referenced file.</param>
    </member>
    <member name="M:System.Resources.ResXFileRef.ToString">
      <summary>Gets the text representation of the current <see cref="T:System.Resources.ResXFileRef" /> object.</summary>
      <returns>A string that consists of the concatenated text representations of the parameters specified in the current <see cref="Overload:System.Resources.ResXFileRef.#ctor" /> constructor.</returns>
    </member>
    <member name="P:System.Resources.ResXFileRef.FileName">
      <summary>Gets the file name specified in the current <see cref="Overload:System.Resources.ResXFileRef.#ctor" /> constructor.</summary>
      <returns>The name of the referenced file.</returns>
    </member>
    <member name="P:System.Resources.ResXFileRef.TextFileEncoding">
      <summary>Gets the encoding specified in the current <see cref="Overload:System.Resources.ResXFileRef.#ctor" /> constructor.</summary>
      <returns>The encoding used in the referenced file.</returns>
    </member>
    <member name="P:System.Resources.ResXFileRef.TypeName">
      <summary>Gets the type name specified in the current <see cref="Overload:System.Resources.ResXFileRef.#ctor" /> constructor.</summary>
      <returns>The type name of the resource that is referenced.</returns>
    </member>
    <member name="T:System.Resources.ResXFileRef.Converter">
      <summary>Provides a type converter to convert data for a <see cref="T:System.Resources.ResXFileRef" /> to and from a string.</summary>
    </member>
    <member name="M:System.Resources.ResXFileRef.Converter.#ctor">
      <summary>Creates a new instance of the <see cref="T:System.Resources.ResXFileRef.Converter" /> class.</summary>
    </member>
    <member name="M:System.Resources.ResXFileRef.Converter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="sourceType">A <see cref="T:System.Type" /> that represents the type you want to convert from.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Resources.ResXFileRef.Converter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns whether this converter can convert the object to the specified type, using the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you want to convert to.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Resources.ResXFileRef.Converter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the given object to the type of this converter, using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> to use as the current culture.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="M:System.Resources.ResXFileRef.Converter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the given value object to the specified type, using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" />. If null is passed, the current culture is assumed.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <param name="destinationType">The <see cref="T:System.Type" /> to convert the value parameter to.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="T:System.Resources.ResXResourceReader">
      <summary>Enumerates XML resource (.resx) files and streams, and reads the sequential resource name and value pairs.</summary>
    </member>
    <member name="M:System.Resources.ResXResourceReader.#ctor(System.IO.Stream)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceReader" /> class for the specified stream.</summary>
      <param name="stream">An input stream that contains resources.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.#ctor(System.IO.Stream,System.ComponentModel.Design.ITypeResolutionService)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceReader" /> class using an input stream and a type resolution service.</summary>
      <param name="stream">An input stream that contains resources.</param>
      <param name="typeResolver">An object that resolves type names specified in a resource.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.#ctor(System.IO.Stream,System.Reflection.AssemblyName[])">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceReader" /> class using a stream and an array of assembly names.</summary>
      <param name="stream">An input stream that contains resources.</param>
      <param name="assemblyNames">An array of <see cref="T:System.Reflection.AssemblyName" /> objects that specifies one or more assemblies. The assemblies are used to resolve a type name in the resource to an actual type.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.#ctor(System.IO.TextReader)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceReader" /> class for the specified <see cref="T:System.IO.TextReader" />.</summary>
      <param name="reader">A text input stream that contains resources.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.#ctor(System.IO.TextReader,System.ComponentModel.Design.ITypeResolutionService)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceReader" /> class using a text stream reader and a type resolution service.</summary>
      <param name="reader">A text stream reader that contains resources.</param>
      <param name="typeResolver">An object that resolves type names specified in a resource.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.#ctor(System.IO.TextReader,System.Reflection.AssemblyName[])">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceReader" /> class using a <see cref="T:System.IO.TextReader" /> object and an array of assembly names.</summary>
      <param name="reader">An object used to read resources from a stream of text.</param>
      <param name="assemblyNames">An array of <see cref="T:System.Reflection.AssemblyName" /> objects that specifies one or more assemblies. The assemblies are used to resolve a type name in the resource to an actual type.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceReader" /> class for the specified resource file.</summary>
      <param name="fileName">The path of the resource file to read.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.#ctor(System.String,System.ComponentModel.Design.ITypeResolutionService)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceReader" /> class using a file name and a type resolution service.</summary>
      <param name="fileName">The name of an XML resource file that contains resources.</param>
      <param name="typeResolver">An object that resolves type names specified in a resource.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.#ctor(System.String,System.Reflection.AssemblyName[])">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceReader" /> class using an XML resource file name and an array of assembly names.</summary>
      <param name="fileName">The name of an XML resource file that contains resources.</param>
      <param name="assemblyNames">An array of <see cref="T:System.Reflection.AssemblyName" /> objects that specifies one or more assemblies. The assemblies are used to resolve a type name in the resource to an actual type.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.Close">
      <summary>Releases all resources used by the <see cref="T:System.Resources.ResXResourceReader" />.</summary>
    </member>
    <member name="M:System.Resources.ResXResourceReader.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Resources.ResXResourceReader" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Resources.ResXResourceReader.Finalize">
      <summary>This member overrides the <see cref="M:System.Object.Finalize" /> method.</summary>
    </member>
    <member name="M:System.Resources.ResXResourceReader.FromFileContents(System.String)">
      <summary>Creates a new <see cref="T:System.Resources.ResXResourceReader" /> object and initializes it to read a string whose contents are in the form of an XML resource file.</summary>
      <param name="fileContents">A string containing XML resource-formatted information.</param>
      <returns>An object that reads resources from the <paramref name="fileContents" /> string.</returns>
    </member>
    <member name="M:System.Resources.ResXResourceReader.FromFileContents(System.String,System.ComponentModel.Design.ITypeResolutionService)">
      <summary>Creates a new <see cref="T:System.Resources.ResXResourceReader" /> object and initializes it to read a string whose contents are in the form of an XML resource file, and to use an <see cref="T:System.ComponentModel.Design.ITypeResolutionService" /> object to resolve type names specified in a resource.</summary>
      <param name="fileContents">A string containing XML resource-formatted information.</param>
      <param name="typeResolver">An object that resolves type names specified in a resource.</param>
      <returns>An object that reads resources from the <paramref name="fileContents" /> string.</returns>
    </member>
    <member name="M:System.Resources.ResXResourceReader.FromFileContents(System.String,System.Reflection.AssemblyName[])">
      <summary>Creates a new <see cref="T:System.Resources.ResXResourceReader" /> object and initializes it to read a string whose contents are in the form of an XML resource file, and to use an array of <see cref="T:System.Reflection.AssemblyName" /> objects to resolve type names specified in a resource.</summary>
      <param name="fileContents">A string whose contents are in the form of an XML resource file.</param>
      <param name="assemblyNames">An array of <see cref="T:System.Reflection.AssemblyName" /> objects that specifies one or more assemblies. The assemblies are used to resolve a type name in the resource to an actual type.</param>
      <returns>An object that reads resources from the <paramref name="fileContents" /> string.</returns>
    </member>
    <member name="M:System.Resources.ResXResourceReader.GetEnumerator">
      <summary>Returns an enumerator for the current <see cref="T:System.Resources.ResXResourceReader" /> object.</summary>
      <returns>An enumerator for the current <see cref="T:System.Resources.ResourceReader" /> object.</returns>
    </member>
    <member name="M:System.Resources.ResXResourceReader.GetMetadataEnumerator">
      <summary>Provides a dictionary enumerator that can retrieve the design-time properties from the current XML resource file or stream.</summary>
      <returns>An enumerator for the metadata in a resource.</returns>
    </member>
    <member name="M:System.Resources.ResXResourceReader.System#Collections#IEnumerable#GetEnumerator">
      <summary>Returns an enumerator for the current <see cref="T:System.Resources.ResXResourceReader" /> object. For a description of this member, see the <see cref="M:System.Collections.IEnumerable.GetEnumerator" /> method.</summary>
      <returns>An enumerator that can iterate through the name/value pairs in the XML resource (.resx) stream or string associated with the current <see cref="T:System.Resources.ResXResourceReader" /> object.</returns>
    </member>
    <member name="M:System.Resources.ResXResourceReader.System#IDisposable#Dispose">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Resources.ResXResourceReader" /> and optionally releases the managed resources. For a description of this member, see the <see cref="M:System.IDisposable.Dispose" /> method.</summary>
    </member>
    <member name="P:System.Resources.ResXResourceReader.BasePath">
      <summary>Gets or sets the base path for the relative file path specified in a <see cref="T:System.Resources.ResXFileRef" /> object.</summary>
      <exception cref="T:System.InvalidOperationException">In a set operation, a value cannot be specified because the XML resource file has already been accessed and is in use.</exception>
      <returns>A path that, if prepended to the relative file path specified in a <see cref="T:System.Resources.ResXFileRef" /> object, yields an absolute path to a resource file.</returns>
    </member>
    <member name="P:System.Resources.ResXResourceReader.UseResXDataNodes">
      <summary>Gets or sets a value that indicates whether <see cref="T:System.Resources.ResXDataNode" /> objects are returned when reading the current XML resource file or stream.</summary>
      <exception cref="T:System.InvalidOperationException">In a set operation, the enumerator for the resource file or stream is already open.</exception>
      <returns>
        <see langword="true" /> if resource data nodes are retrieved; <see langword="false" /> if resource data nodes are ignored.</returns>
    </member>
    <member name="T:System.Resources.ResXResourceSet">
      <summary>Represents all resources in an XML resource (.resx) file.</summary>
    </member>
    <member name="M:System.Resources.ResXResourceSet.#ctor(System.IO.Stream)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceSet" /> class using the system default <see cref="T:System.Resources.ResXResourceReader" /> to read resources from the specified stream.</summary>
      <param name="stream">The <see cref="T:System.IO.Stream" /> of resources to be read. The stream should refer to an existing resource file.</param>
    </member>
    <member name="M:System.Resources.ResXResourceSet.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceSet" /> class using the system default <see cref="T:System.Resources.ResXResourceReader" /> that opens and reads resources from the specified file.</summary>
      <param name="fileName">The name of the file to read resources from.</param>
    </member>
    <member name="M:System.Resources.ResXResourceSet.GetDefaultReader">
      <summary>Returns the preferred resource reader class for this kind of <see cref="T:System.Resources.ResXResourceSet" />.</summary>
      <returns>The <see cref="T:System.Type" /> of the preferred resource reader for this kind of <see cref="T:System.Resources.ResXResourceSet" />.</returns>
    </member>
    <member name="M:System.Resources.ResXResourceSet.GetDefaultWriter">
      <summary>Returns the preferred resource writer class for this kind of <see cref="T:System.Resources.ResXResourceSet" />.</summary>
      <returns>The <see cref="T:System.Type" /> of the preferred resource writer for this kind of <see cref="T:System.Resources.ResXResourceSet" />.</returns>
    </member>
    <member name="T:System.Resources.ResXResourceWriter">
      <summary>Writes resources in an XML resource (.resx) file or an output stream.</summary>
    </member>
    <member name="F:System.Resources.ResXResourceWriter.BinSerializedObjectMimeType">
      <summary>Specifies the default content type for a binary object. This field is read-only.</summary>
    </member>
    <member name="F:System.Resources.ResXResourceWriter.ByteArraySerializedObjectMimeType">
      <summary>Specifies the default content type for a byte array object. This field is read-only.</summary>
    </member>
    <member name="F:System.Resources.ResXResourceWriter.DefaultSerializedObjectMimeType">
      <summary>Specifies the default content type for an object. This field is read-only.</summary>
    </member>
    <member name="F:System.Resources.ResXResourceWriter.ResMimeType">
      <summary>Specifies the content type of an XML resource. This field is read-only.</summary>
    </member>
    <member name="F:System.Resources.ResXResourceWriter.ResourceSchema">
      <summary>Specifies the schema to use in writing the XML file. This field is read-only.</summary>
    </member>
    <member name="F:System.Resources.ResXResourceWriter.SoapSerializedObjectMimeType">
      <summary>Specifies the content type for a SOAP object. This field is read-only.</summary>
    </member>
    <member name="F:System.Resources.ResXResourceWriter.Version">
      <summary>Specifies the version of the schema that the XML output conforms to. This field is read-only.</summary>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.#ctor(System.IO.Stream)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceWriter" /> class that writes the resources to the specified stream object.</summary>
      <param name="stream">The output stream.</param>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.#ctor(System.IO.Stream,System.Func{System.Type,System.String})">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceWriter" /> class that writes the resources to a specified stream object and sets a converter delegate. This delegate enables resource assemblies to be written that target versions of the .NET Framework before .NET Framework 4 by using qualified assembly names.</summary>
      <param name="stream">The stream to send the output to.</param>
      <param name="typeNameConverter">The delegate that is used to target earlier versions of the .NET Framework.</param>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.#ctor(System.IO.TextWriter)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceWriter" /> class that writes to the specified <see cref="T:System.IO.TextWriter" /> object.</summary>
      <param name="textWriter">The <see cref="T:System.IO.TextWriter" /> object to send the output to.</param>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.#ctor(System.IO.TextWriter,System.Func{System.Type,System.String})">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceWriter" /> class that writes the resources to a specified <see cref="T:System.IO.TextWriter" /> object and sets a delegate that enables resource assemblies to be written that target versions of the .NET Framework before .NET Framework 4 by using qualified assembly names.</summary>
      <param name="textWriter">The object to send output to.</param>
      <param name="typeNameConverter">The delegate that is used to target earlier versions of the .NET Framework.</param>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceWriter" /> class that writes the resources to the specified file.</summary>
      <param name="fileName">The output file name.</param>
      <exception cref="T:System.IO.DirectoryNotFoundException">The directory specified in <paramref name="filename" /> does not exist.</exception>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.#ctor(System.String,System.Func{System.Type,System.String})">
      <summary>Initializes a new instance of the <see cref="T:System.Resources.ResXResourceWriter" /> class that writes the resources to a specified file and sets a delegate that enables resource assemblies to be written that target versions of the .NET Framework before .NET Framework 4 by using qualified assembly names.</summary>
      <param name="fileName">The file to send output to.</param>
      <param name="typeNameConverter">The delegate that is used to target earlier versions of the .NET Framework.</param>
      <exception cref="T:System.IO.DirectoryNotFoundException">The directory specified in <paramref name="filename" /> does not exist.</exception>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.AddAlias(System.String,System.Reflection.AssemblyName)">
      <summary>Adds the specified alias to a list of aliases.</summary>
      <param name="aliasName">The name of the alias.</param>
      <param name="assemblyName">The name of the assembly represented by <paramref name="aliasName" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="assemblyName" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.AddMetadata(System.String,System.Byte[])">
      <summary>Adds a design-time property whose value is specified as a byte array to the list of resources to write.</summary>
      <param name="name">The name of a property.</param>
      <param name="value">A byte array containing the value of the property to add.</param>
      <exception cref="T:System.InvalidOperationException">The resource specified by the <paramref name="name" /> parameter has already been added.</exception>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.AddMetadata(System.String,System.Object)">
      <summary>Adds a design-time property whose value is specified as an object to the list of resources to write.</summary>
      <param name="name">The name of a property.</param>
      <param name="value">An object that is the value of the property to add.</param>
      <exception cref="T:System.InvalidOperationException">The resource specified by the <paramref name="name" /> parameter has already been added.</exception>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.AddMetadata(System.String,System.String)">
      <summary>Adds a design-time property whose value is specified as a string to the list of resources to write.</summary>
      <param name="name">The name of a property.</param>
      <param name="value">A string that is the value of the property to add.</param>
      <exception cref="T:System.InvalidOperationException">The resource specified by the <paramref name="name" /> property has already been added.</exception>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.AddResource(System.Resources.ResXDataNode)">
      <summary>Adds a named resource specified in a <see cref="T:System.Resources.ResXDataNode" /> object to the list of resources to write.</summary>
      <param name="node">A <see cref="T:System.Resources.ResXDataNode" /> object that contains a resource name/value pair.</param>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.AddResource(System.String,System.Byte[])">
      <summary>Adds a named resource specified as a byte array to the list of resources to write.</summary>
      <param name="name">The name of the resource.</param>
      <param name="value">The value of the resource to add as an 8-bit unsigned integer array.</param>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.AddResource(System.String,System.Object)">
      <summary>Adds a named resource specified as an object to the list of resources to write.</summary>
      <param name="name">The name of the resource.</param>
      <param name="value">The value of the resource.</param>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.AddResource(System.String,System.String)">
      <summary>Adds a string resource to the resources.</summary>
      <param name="name">The name of the resource.</param>
      <param name="value">The value of the resource.</param>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.Close">
      <summary>Releases all resources used by the <see cref="T:System.Resources.ResXResourceWriter" />.</summary>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.Dispose">
      <summary>Releases all resources used by the <see cref="T:System.Resources.ResXResourceWriter" />.</summary>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Resources.ResXResourceWriter" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.Finalize">
      <summary>This member overrides the <see cref="M:System.Object.Finalize" /> method.</summary>
    </member>
    <member name="M:System.Resources.ResXResourceWriter.Generate">
      <summary>Writes all resources added by the <see cref="M:System.Resources.ResXResourceWriter.AddResource(System.String,System.Byte[])" /> method to the output file or stream.</summary>
      <exception cref="T:System.InvalidOperationException">The resource has already been saved.</exception>
    </member>
    <member name="P:System.Resources.ResXResourceWriter.BasePath">
      <summary>Gets or sets the base path for the relative file path specified in a <see cref="T:System.Resources.ResXFileRef" /> object.</summary>
      <returns>A path that, if prepended to the relative file path specified in a <see cref="T:System.Resources.ResXFileRef" /> object, yields an absolute path to an XML resource file.</returns>
    </member>
    <member name="T:System.Windows.Forms.AccessibleEvents">
      <summary>Specifies events that are reported by accessible applications.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.AcceleratorChange">
      <summary>An object's <see cref="P:System.Windows.Forms.AccessibleObject.KeyboardShortcut" /> property changed. Server applications send the event for their accessible objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.Create">
      <summary>An object was created. The operating system sends the event for the following user interface elements: caret, header control, list view control, tab control, toolbar control, tree view control, and window object. Server applications send this event for their accessible objects. Servers must send this event for all an object's child objects before sending the event for the parent object. Servers must ensure that all child objects are fully created and ready to accept calls from clients when the parent object sends the event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.DefaultActionChange">
      <summary>An object's <see cref="P:System.Windows.Forms.AccessibleObject.DefaultAction" /> property changed. The system sends this event for dialog boxes. Server applications send this event for their accessible objects. Therefore, server applications do not need to send this event for the child objects. Hidden objects have a state of <see cref="F:System.Windows.Forms.AccessibleStates.Invisible" />, and shown objects do not. Events of type <see langword="AccessibleEvents.Hide" /> indicate that a state of <see cref="F:System.Windows.Forms.AccessibleStates.Invisible" /> has been set. Therefore, servers do not need to send the <see langword="AccessibleEvents.StateChange" /> event in this case.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.DescriptionChange">
      <summary>An object's <see cref="P:System.Windows.Forms.AccessibleObject.Description" /> property changed. Server applications send this event for their accessible objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.Destroy">
      <summary>An object was destroyed. The system sends this event for the following user interface elements: caret, header control, list view control, tab control, toolbar control, tree view control, and window object. Server applications send this event for their accessible objects. This event may or may not be sent for child objects. However, clients can conclude that all the children of an object have been destroyed when the parent object sends this event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.Focus">
      <summary>An object has received the keyboard focus. The system sends this event for the following user interface elements: list view control, menu bar, shortcut menu, switch window, tab control, tree view control, and window object. Server applications send this event for their accessible objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.HelpChange">
      <summary>An object's <see cref="P:System.Windows.Forms.AccessibleObject.Help" /> property changed. Server applications send this event for their accessible objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.Hide">
      <summary>An object is hidden. The system sends the event for the following user interface elements: caret and cursor. Server applications send the event for their accessible objects. When the event is generated for a parent object, all child objects have already been hidden. Therefore, server applications do not need to send the event for the child objects. The system does not send the event consistently.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.LocationChange">
      <summary>An object has changed location, shape, or size. The system sends this event for the following user interface elements: caret and window object. Server applications send this event for their accessible objects. This event is generated in response to the top-level object within the object hierarchy that has changed, not for any children it might contain. For example, if the user resizes a window, the system sends this notification for the window, but not for the menu bar, title bar, scroll bars, or other objects that have also changed. The system does not send this event for every non-floating child window when the parent moves. However, if an application explicitly resizes child windows as a result of being resized, the system sends multiple events for the resized children. If an object's <see cref="P:System.Windows.Forms.AccessibleObject.State" /> property is set to <see cref="F:System.Windows.Forms.AccessibleStates.Floating" />, servers should send a location change event whenever the object changes location. If an object does not have this state, servers should raise this event when the object moves relative to its parent.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.NameChange">
      <summary>An object's <see cref="P:System.Windows.Forms.AccessibleObject.Name" /> property changed. The system sends this event for the following user interface elements: check box, cursor, list view control, push button, radio button, status bar control, tree view control, and window object. Server applications send this event for their accessible objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.ParentChange">
      <summary>An object has a new parent object. Server applications send this event for their accessible objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.Reorder">
      <summary>A container object has added, removed, or reordered its children. The system sends this event for the following user interface elements: header control, list view control, toolbar control, and window object. Server applications send this event as appropriate for their accessible objects. This event is also sent by a parent window when the z order for the child windows changes.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.Selection">
      <summary>An accessible object within a container object has been selected. This event signals a single selection. Either a child has been selected in a container that previously did not contain any selected children, or the selection has changed from one child to another.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SelectionAdd">
      <summary>An item within a container object was added to the selection. The system sends this event for the following user interface elements: list box, list view control, and tree view control. Server applications send this event for their accessible objects. This event signals that a child has been added to an existing selection.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SelectionRemove">
      <summary>An item within a container object was removed from the selection. The system sends this event for the following user interface elements: list box, list view control, and tree view control. Server applications send this event for their accessible objects. This event signals that a child has been removed from an existing selection.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SelectionWithin">
      <summary>Numerous selection changes occurred within a container object. The system sends this event for list boxes. Server applications send this event for their accessible objects. This event can be sent when the selected items within a control have changed substantially. This event informs the client that many selection changes have occurred. This is preferable to sending several <see langword="SelectionAdd" /> or <see langword="SelectionRemove" /> events.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.Show">
      <summary>A hidden object is being shown. The system sends this event for the following user interface elements: caret, cursor, and window object. Server applications send this event for their accessible objects. Clients can conclude that, when this event is sent by a parent object, all child objects have already been displayed. Therefore, server applications do not need to send this event for the child objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.StateChange">
      <summary>An object's state has changed. The system sends the event for the following user interface elements: check box, combo box, header control, push button, radio button, scroll bar, toolbar control, tree view control, up-down control, and window object. Server applications send the event for their accessible objects. For example, a state change can occur when a button object has been pressed or released, or when an object is being enabled or disabled. The system does not send the event consistently.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemAlert">
      <summary>An alert was generated. Server applications send this event whenever an important user interface change has occurred that a user might need to know about. The system does not send the event consistently for dialog box objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemCaptureEnd">
      <summary>A window has lost mouse capture. The system sends the event; servers never send this event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemCaptureStart">
      <summary>A window is being moved or resized. The system sends the event; servers never send this event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemContextHelpEnd">
      <summary>A window exited context-sensitive Help mode. The system does not send the event consistently.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemContextHelpStart">
      <summary>A window entered context-sensitive Help mode. The system does not send the event consistently.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemDialogEnd">
      <summary>A dialog box was closed. The system does not send the event for standard dialog boxes. Servers send this event for custom dialog boxes. The system does not send the event consistently.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemDialogStart">
      <summary>A dialog box was displayed. The system sends the event for standard dialog boxes. Servers send this event for custom dialog boxes. The system does not send the event consistently.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemDragDropEnd">
      <summary>An application is about to exit drag-and-drop mode. Applications that support drag-and-drop operations must send this event; the system does not.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemDragDropStart">
      <summary>An application is about to enter drag-and-drop mode. Applications that support drag-and-drop operations must send this event; the system does not.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemForeground">
      <summary>The foreground window changed. The system sends this event even if the foreground window is changed to another window in the same thread. Server applications never send this event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemMenuEnd">
      <summary>A menu from the menu bar was closed. The system sends this event for standard menus. Servers send this event for custom menus.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemMenuPopupEnd">
      <summary>
        <para>A shortcut menu was closed. The system sends this event for standard menus. Servers send this event for custom menus. When a shortcut menu is closed, the client receives this message followed almost immediately by the <see langword="SystemMenuEnd" /> event. The system does not send the event consistently.</para>
        <para>For a call to <c>TrackPopupMenu()</c>, a client will see <see langword="EVENT_SYSTEM_MENUSTART" /> followed almost immediately by <see langword="EVENT_SYSTEM_MENUPOPUPSTART" /> for the popup being shown.</para>
      </summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemMenuPopupStart">
      <summary>
        <para>A shortcut menu was displayed. The system sends this event for standard menus. Servers send this event for custom menus. The system does not send the event consistently.</para>
        <para>For a call to <c>TrackPopupMenu()</c>, a client will see <see langword="EVENT_SYSTEM_MENUSTART" /> followed almost immediately by <see langword="EVENT_SYSTEM_MENUPOPUPSTART" /> for the popup being shown.</para>
      </summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemMenuStart">
      <summary>A menu item on the menu bar was selected. The system sends this event for standard menus. Servers send this event for custom menus. The system might raise more than one <see langword="MenuStart" /> event that might or might not have a corresponding <see langword="MenuEnd" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemMinimizeEnd">
      <summary>A window object was minimized or maximized. The system sends the event; servers never send this event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemMinimizeStart">
      <summary>A window object is about to be minimized or maximized. The system sends the event; servers never send this event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemMoveSizeEnd">
      <summary>The movement or resizing of a window is finished. The system sends the event; servers never send this event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemMoveSizeStart">
      <summary>A window is being moved or resized. The system sends the event; servers never send this event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemScrollingEnd">
      <summary>Scrolling has ended on a scroll bar. The system sends this event for scroll bars attached to a window and for standard scroll bar controls. Servers send this event for custom scroll bars.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemScrollingStart">
      <summary>Scrolling has started on a scroll bar. The system sends the event for scroll bars attached to a window and for standard scroll bar controls. Servers send this event for custom scroll bars.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemSound">
      <summary>A sound was played. The system sends this event when a system sound, such as for menus, is played, even if no sound is audible. This might be caused by lack of a sound file or sound card. Servers send this event if a custom user interface element generates a sound.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemSwitchEnd">
      <summary>The user released ALT+TAB. The system sends the <see langword="SwitchEnd" /> event; servers never send this event. If only one application is running when the user presses ALT+TAB, the system sends the <see langword="SwitchEnd" /> event without a corresponding <see langword="SwitchStart" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.SystemSwitchStart">
      <summary>The user pressed ALT+TAB, which activates the switch window. If only one application is running when the user presses ALT+TAB, the system raises the <see langword="SwitchEnd" /> event without a corresponding <see langword="SwitchStart" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleEvents.ValueChange">
      <summary>An object's <see cref="P:System.Windows.Forms.AccessibleObject.Value" /> property changed. The system raises the <see langword="ValueChange" /> event for the following user interface elements: edit control, header control, hot key control, progress bar control, scroll bar, slider control, and up-down control. Server applications send this event for their accessible objects.</summary>
    </member>
    <member name="T:System.Windows.Forms.AccessibleNavigation">
      <summary>Specifies values for navigating among accessible objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleNavigation.Down">
      <summary>Navigation to a sibling object located below the starting object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleNavigation.FirstChild">
      <summary>Navigation to the first child of the object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleNavigation.LastChild">
      <summary>Navigation to the last child of the object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleNavigation.Left">
      <summary>Navigation to the sibling object located to the left of the starting object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleNavigation.Next">
      <summary>Navigation to the next logical object, typically from a sibling object to the starting object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleNavigation.Previous">
      <summary>Navigation to the previous logical object, typically from a sibling object to the starting object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleNavigation.Right">
      <summary>Navigation to the sibling object located to the right of the starting object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleNavigation.Up">
      <summary>Navigation to a sibling object located above the starting object.</summary>
    </member>
    <member name="T:System.Windows.Forms.AccessibleObject">
      <summary>Provides information that accessibility applications use to adjust an application's user interface (UI) for users with impairments.</summary>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AccessibleObject" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accDoDefaultAction(System.Object)">
      <summary>Performs the specified object's default action. Not all objects have a default action. For a description of this member, see <see cref="M:Accessibility.IAccessible.accDoDefaultAction(System.Object)" />.</summary>
      <param name="childID">The child ID in the <see cref="T:Accessibility.IAccessible" /> interface/child ID pair that represents the accessible object.</param>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accHitTest(System.Int32,System.Int32)">
      <summary>Gets the child object at the specified screen coordinates. For a description of this member, see <see cref="M:Accessibility.IAccessible.accHitTest(System.Int32,System.Int32)" />.</summary>
      <param name="xLeft">The horizontal coordinate.</param>
      <param name="yTop">The vertical coordinate.</param>
      <returns>The accessible object at the point specified by <paramref name="xLeft" /> and <paramref name="yTop" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accLocation(System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Object)">
      <summary>Gets the object's current screen location. For a description of this member, see <see cref="M:Accessibility.IAccessible.accLocation(System.Int32@,System.Int32@,System.Int32@,System.Int32@,System.Object)" />.</summary>
      <param name="pxLeft">When this method returns, contains the x-coordinate of the object's left edge. This parameter is passed uninitialized.</param>
      <param name="pyTop">When this method returns, contains the y-coordinate of the object's top edge. This parameter is passed uninitialized.</param>
      <param name="pcxWidth">When this method returns, contains the width of the object. This parameter is passed uninitialized.</param>
      <param name="pcyHeight">When this method returns, contains the height of the object. This parameter is passed uninitialized.</param>
      <param name="childID">The ID number of the accessible object. This parameter is 0 to get the location of the object, or a child ID to get the location of one of the object's child objects.</param>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accNavigate(System.Int32,System.Object)">
      <summary>Navigates to an accessible object relative to the current object. For a description of this member, see <see cref="M:Accessibility.IAccessible.accNavigate(System.Int32,System.Object)" />.</summary>
      <param name="navDir">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> enumerations that specifies the direction to navigate.</param>
      <param name="childID">The ID number of the accessible object. This parameter is 0 to start from the object, or a child ID to start from one of the object's child objects.</param>
      <returns>The accessible object positioned at the value specified by <paramref name="navDir" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accSelect(System.Int32,System.Object)">
      <summary>Modifies the selection or moves the keyboard focus of the accessible object. For a description of this member, see <see cref="M:Accessibility.IAccessible.accSelect(System.Int32,System.Object)" />.</summary>
      <param name="flagsSelect">A bitwise combination of the <see cref="T:System.Windows.Forms.AccessibleSelection" /> values.</param>
      <param name="childID">The ID number of the accessible object on which to change the selection. This parameter is 0 to select the object, or a child ID to select one of the object's child objects.</param>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.DoDefaultAction">
      <summary>Performs the default action associated with this accessible object.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The default action for the control cannot be performed.</exception>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.GetChild(System.Int32)">
      <summary>Retrieves the accessible child corresponding to the specified index.</summary>
      <param name="index">The zero-based index of the accessible child.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the accessible child corresponding to the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.GetChildCount">
      <summary>Retrieves the number of children belonging to an accessible object.</summary>
      <returns>The number of children belonging to an accessible object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.GetFocused">
      <summary>Retrieves the object that has the keyboard focus.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The control cannot be retrieved.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that specifies the currently focused child. This method returns the calling object if the object itself is focused. Returns <see langword="null" /> if no object has focus.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.GetHelpTopic(System.String@)">
      <summary>Gets an identifier for a Help topic identifier and the path to the Help file associated with this accessible object.</summary>
      <param name="fileName">On return, this property contains the path to the Help file associated with this accessible object.</param>
      <exception cref="T:System.Runtime.InteropServices.COMException">The Help topic for the control cannot be retrieved.</exception>
      <returns>An identifier for a Help topic, or -1 if there is no Help topic. On return, the <paramref name="fileName" /> parameter contains the path to the Help file associated with this accessible object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.GetSelected">
      <summary>Retrieves the currently selected child.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The selected child cannot be retrieved.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the currently selected child. This method returns the calling object if the object itself is selected. Returns <see langword="null" /> if is no child is currently selected and the object itself does not have focus.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.HitTest(System.Int32,System.Int32)">
      <summary>Retrieves the child object at the specified screen coordinates.</summary>
      <param name="x">The horizontal screen coordinate.</param>
      <param name="y">The vertical screen coordinate.</param>
      <exception cref="T:System.Runtime.InteropServices.COMException">The control cannot be hit tested.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the child object at the given screen coordinates. This method returns the calling object if the object itself is at the location specified. Returns <see langword="null" /> if no object is at the tested location.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
      <summary>Navigates to another accessible object.</summary>
      <param name="navdir">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</param>
      <exception cref="T:System.Runtime.InteropServices.COMException">The navigation attempt fails.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents one of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.RaiseAutomationNotification(System.Windows.Forms.Automation.AutomationNotificationKind,System.Windows.Forms.Automation.AutomationNotificationProcessing,System.String)">
      <summary>Raises the UI automation notification event.</summary>
      <param name="notificationKind">The type of notification.</param>
      <param name="notificationProcessing">An indicator of how to process notifications.</param>
      <param name="notificationText">The text of the notification.</param>
      <returns>
        <see langword="true" /> if the operation succeeds; <see langword="false" /> if the underlying Windows infrastructure is not available or the operation failed. Call <see cref="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error" /> for details.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.RaiseLiveRegionChanged">
      <summary>Raises the LiveRegionChanged UI automation event.</summary>
      <exception cref="T:System.NotSupportedException">Accessibility object live regions are not supported.</exception>
      <returns>
        <see langword="true" /> if the operation succeeds; <see langword="False" /> otherwise.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.Select(System.Windows.Forms.AccessibleSelection)">
      <summary>Modifies the selection or moves the keyboard focus of the accessible object.</summary>
      <param name="flags">One of the <see cref="T:System.Windows.Forms.AccessibleSelection" /> values.</param>
      <exception cref="T:System.Runtime.InteropServices.COMException">The selection cannot be performed.</exception>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetField(System.String,System.Reflection.BindingFlags)">
      <summary>Gets the <see cref="T:System.Reflection.FieldInfo" /> object corresponding to the specified field and binding flag. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetField(System.String,System.Reflection.BindingFlags)" />.</summary>
      <param name="name">The name of the field to find.</param>
      <param name="bindingAttr">The binding attributes used to control the search.</param>
      <exception cref="T:System.Reflection.AmbiguousMatchException">The object implements multiple fields with the same name.</exception>
      <returns>A <see cref="T:System.Reflection.FieldInfo" /> object containing the field information for the named object that meets the search constraints specified in <paramref name="bindingAttr" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetFields(System.Reflection.BindingFlags)">
      <summary>Gets an array of <see cref="T:System.Reflection.FieldInfo" /> objects corresponding to all fields of the current class. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetFields(System.Reflection.BindingFlags)" />.</summary>
      <param name="bindingAttr">The binding attributes used to control the search.</param>
      <returns>An array of <see cref="T:System.Reflection.FieldInfo" /> objects containing all the field information for this reflection object that meets the search constraints specified in <paramref name="bindingAttr" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMember(System.String,System.Reflection.BindingFlags)">
      <summary>Gets an array of <see cref="T:System.Reflection.MemberInfo" /> objects corresponding to all public members or to all members that match a specified name. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetMember(System.String,System.Reflection.BindingFlags)" />.</summary>
      <param name="name">The name of the member to find.</param>
      <param name="bindingAttr">The binding attributes used to control the search.</param>
      <returns>An array of <see cref="T:System.Reflection.MemberInfo" /> objects matching the name parameter.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMembers(System.Reflection.BindingFlags)">
      <summary>Gets an array of <see cref="T:System.Reflection.MemberInfo" /> objects corresponding either to all public members or to all members of the current class. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetMembers(System.Reflection.BindingFlags)" />.</summary>
      <param name="bindingAttr">The binding attributes used to control the search.</param>
      <returns>An array of <see cref="T:System.Reflection.MemberInfo" /> objects containing all the member information for this reflection object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMethod(System.String,System.Reflection.BindingFlags)">
      <summary>Gets a <see cref="T:System.Reflection.MethodInfo" /> object corresponding to a specified method under specified search constraints. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetMethod(System.String,System.Reflection.BindingFlags)" />.</summary>
      <param name="name">The name of the member to find.</param>
      <param name="bindingAttr">The binding attributes used to control the search.</param>
      <exception cref="T:System.Reflection.AmbiguousMatchException">The object implements multiple methods with the same name.</exception>
      <returns>A <see cref="T:System.Reflection.MethodInfo" /> object containing the method information, with the match being based on the method name and search constraints specified in <paramref name="bindingAttr" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])">
      <summary>Gets a <see cref="T:System.Reflection.MethodInfo" /> object corresponding to a specified method, using a Type array to choose from among overloaded methods. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])" />.</summary>
      <param name="name">The name of the member to find.</param>
      <param name="bindingAttr">The binding attributes used to control the search.</param>
      <param name="binder">An object that implements <see cref="T:System.Reflection.Binder" />, containing properties related to this method.</param>
      <param name="types">An array used to choose among overloaded methods.</param>
      <param name="modifiers">An array of parameter modifiers used to make binding work with parameter signatures in which the types have been modified.</param>
      <exception cref="T:System.Reflection.AmbiguousMatchException">The object implements multiple methods with the same name.</exception>
      <returns>The requested method that matches all the specified parameters.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetMethods(System.Reflection.BindingFlags)">
      <summary>Gets an array of <see cref="T:System.Reflection.MethodInfo" /> objects with all public methods or all methods of the current class. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetMethods(System.Reflection.BindingFlags)" />.</summary>
      <param name="bindingAttr">The binding attributes used to control the search.</param>
      <returns>An array of <see cref="T:System.Reflection.MethodInfo" /> objects containing all the methods defined for this reflection object that meet the search constraints specified in <see langword="bindingAttr" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetProperties(System.Reflection.BindingFlags)">
      <summary>Gets an array of <see cref="T:System.Reflection.PropertyInfo" /> objects corresponding to all public properties or to all properties of the current class. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetProperties(System.Reflection.BindingFlags)" />.</summary>
      <param name="bindingAttr">The binding attribute used to control the search.</param>
      <returns>An array of <see cref="T:System.Reflection.PropertyInfo" /> objects for all the properties defined on the reflection object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetProperty(System.String,System.Reflection.BindingFlags)">
      <summary>Gets a <see cref="T:System.Reflection.PropertyInfo" /> object corresponding to a specified property under specified search constraints. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetProperty(System.String,System.Reflection.BindingFlags)" />.</summary>
      <param name="name">The name of the property to find.</param>
      <param name="bindingAttr">The binding attributes used to control the search.</param>
      <exception cref="T:System.Reflection.AmbiguousMatchException">The object implements multiple methods with the same name.</exception>
      <returns>A <see cref="T:System.Reflection.PropertyInfo" /> object for the located property that meets the search constraints specified in <paramref name="bindingAttr" />, or <see langword="null" /> if the property was not located.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])">
      <summary>Gets a <see cref="T:System.Reflection.PropertyInfo" /> object corresponding to a specified property with specified search constraints. For a description of this member, see <see cref="M:System.Reflection.IReflect.GetProperty(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[])" />.</summary>
      <param name="name">The name of the member to find.</param>
      <param name="bindingAttr">The binding attributes used to control the search.</param>
      <param name="binder">An object that implements Binder, containing properties related to this method.</param>
      <param name="returnType">An array used to choose among overloaded methods.</param>
      <param name="types">An array of parameter modifiers used to make binding work with parameter signatures in which the types have been modified.</param>
      <param name="modifiers">An array used to choose the parameter modifiers.</param>
      <returns>A <see cref="T:System.Reflection.PropertyInfo" /> object for the located property, if a property with the specified name was located in this reflection object, or <see langword="null" /> if the property was not located.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])">
      <summary>Invokes a specified member. For a description of this member, see <see cref="M:System.Reflection.IReflect.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[])" />.</summary>
      <param name="name">The name of the member to find.</param>
      <param name="invokeAttr">One of the <see cref="T:System.Reflection.BindingFlags" /> invocation attributes.</param>
      <param name="binder">One of the <see cref="T:System.Reflection.BindingFlags" /> bit flags. Implements Binder, containing properties related to this method.</param>
      <param name="target">The object on which to invoke the specified member. This parameter is ignored for static members.</param>
      <param name="args">An array of objects that contains the number, order, and type of the parameters of the member to be invoked. This is an empty array if there are no parameters.</param>
      <param name="modifiers">An array of <see cref="T:System.Reflection.ParameterModifier" /> objects.</param>
      <param name="culture">An instance of <see cref="T:System.Globalization.CultureInfo" /> used to govern the coercion of types.</param>
      <param name="namedParameters">A String array of parameters.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="invokeAttr" /> is <see cref="F:System.Reflection.BindingFlags.CreateInstance" /> and another bit flag is also set.

-or-
<paramref name="invokeAttr" /> is not <see cref="F:System.Reflection.BindingFlags.CreateInstance" /> and name is <see langword="null" />.

-or-

<paramref name="invokeAttr" /> is not an invocation attribute from <see cref="T:System.Reflection.BindingFlags" />.

-or-

<paramref name="invokeAttr" /> specifies both get and set for a property or field.

-or-

<paramref name="invokeAttr" /> specifies both a field set and an Invoke method.<paramref name="args" /> is provided for a field get operation.

-or-

More than one argument is specified for a field set operation.</exception>
      <exception cref="T:System.MissingFieldException">The field or property cannot be found.</exception>
      <exception cref="T:System.MissingMethodException">The method cannot be found.</exception>
      <exception cref="T:System.Security.SecurityException">A private member is invoked without the necessary <see cref="T:System.Security.Permissions.ReflectionPermission" />.</exception>
      <returns>The specified member.</returns>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.UseStdAccessibleObjects(System.IntPtr)">
      <summary>Associates an object with an instance of an <see cref="T:System.Windows.Forms.AccessibleObject" /> based on the handle of the object.</summary>
      <param name="handle">An <see cref="T:System.IntPtr" /> that contains the handle of the object.</param>
    </member>
    <member name="M:System.Windows.Forms.AccessibleObject.UseStdAccessibleObjects(System.IntPtr,System.Int32)">
      <summary>Associates an object with an instance of an <see cref="T:System.Windows.Forms.AccessibleObject" /> based on the handle and the object id of the object.</summary>
      <param name="handle">An <see cref="T:System.IntPtr" /> that contains the handle of the object.</param>
      <param name="objid">An Int that defines the type of object that the <paramref name="handle" /> parameter refers to.</param>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accChildCount">
      <summary>Gets the number of child interfaces that belong to this object. For a description of this member, see <see cref="P:Accessibility.IAccessible.accChildCount" />.</summary>
      <returns>The number of child accessible objects that belong to this object. If the object has no child objects, this value is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accFocus">
      <summary>Gets the object that has the keyboard focus. For a description of this member, see <see cref="P:Accessibility.IAccessible.accFocus" />.</summary>
      <returns>The object that has keyboard focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accParent">
      <summary>Gets the parent accessible object of this object. For a description of this member, see <see cref="P:Accessibility.IAccessible.accParent" />.</summary>
      <returns>An <see cref="T:Accessibility.IAccessible" /> that represents the parent of the accessible object, or <see langword="null" /> if there is no parent object.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Accessibility#IAccessible#accSelection">
      <summary>Gets the selected child objects of an accessible object. For a description of this member, see <see cref="P:Accessibility.IAccessible.accSelection" />.</summary>
      <returns>The selected child objects of an accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Bounds">
      <summary>Gets the location and size of the accessible object.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The bounds of control cannot be retrieved.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.DefaultAction">
      <summary>Gets a string that describes the default action of the object. Not all objects have a default action.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The default action for the control cannot be retrieved.</exception>
      <returns>A description of the default action for an object, or <see langword="null" /> if this object has no default action.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Description">
      <summary>Gets a string that describes the visual appearance of the specified object. Not all objects have a description.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The description for the control cannot be retrieved.</exception>
      <returns>A description of the object's visual appearance to the user, or <see langword="null" /> if the object does not have a description.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Help">
      <summary>Gets a description of what the object does or how the object is used.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The help string for the control cannot be retrieved.</exception>
      <returns>A <see cref="T:System.String" /> that contains the description of what the object does or how the object is used. Returns <see langword="null" /> if no help is defined.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.KeyboardShortcut">
      <summary>Gets the shortcut key or access key for the accessible object.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The shortcut for the control cannot be retrieved.</exception>
      <returns>The shortcut key or access key for the accessible object, or <see langword="null" /> if there is no shortcut key associated with the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Name">
      <summary>Gets or sets the object name.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The name of the control cannot be retrieved or set.</exception>
      <returns>The object name, or <see langword="null" /> if the property has not been set.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Parent">
      <summary>Gets the parent of an accessible object.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the parent of an accessible object, or <see langword="null" /> if there is no parent object.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values, or <see cref="F:System.Windows.Forms.AccessibleRole.None" /> if no role has been specified.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.State">
      <summary>Gets the state of this accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleStates" /> values, or <see cref="F:System.Windows.Forms.AccessibleStates.None" />, if no state has been set.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.System#Reflection#IReflect#UnderlyingSystemType">
      <summary>Gets the underlying type that represents the <see cref="T:System.Reflection.IReflect" /> object. For a description of this member, see <see cref="P:System.Reflection.IReflect.UnderlyingSystemType" />.</summary>
      <returns>The underlying type that represents the <see cref="T:System.Reflection.IReflect" /> object.</returns>
    </member>
    <member name="P:System.Windows.Forms.AccessibleObject.Value">
      <summary>Gets or sets the value of an accessible object.</summary>
      <exception cref="T:System.Runtime.InteropServices.COMException">The value cannot be set or retrieved.</exception>
      <returns>The value of an accessible object, or <see langword="null" /> if the object has no value set.</returns>
    </member>
    <member name="T:System.Windows.Forms.AccessibleRole">
      <summary>Specifies values representing possible roles for an accessible object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Alert">
      <summary>An alert or condition that you can notify a user about. Use this role only for objects that embody an alert but are not associated with another user interface element, such as a message box, graphic, text, or sound.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Animation">
      <summary>An animation control, which contains content that is changing over time, such as a control that displays a series of bitmap frames, like a filmstrip. Animation controls are usually displayed when files are being copied, or when some other time-consuming task is being performed.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Application">
      <summary>The main window for an application.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Border">
      <summary>A window border. The entire border is represented by a single object, rather than by separate objects for each side.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ButtonDropDown">
      <summary>A button that drops down a list of items.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ButtonDropDownGrid">
      <summary>A button that drops down a grid.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ButtonMenu">
      <summary>A button that drops down a menu.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Caret">
      <summary>A caret, which is a flashing line, block, or bitmap that marks the location of the insertion point in a window's client area.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Cell">
      <summary>A cell within a table.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Character">
      <summary>A cartoon-like graphic object, such as Microsoft Office Assistant, which is typically displayed to provide help to users of an application.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Chart">
      <summary>A graphical image used to represent data.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.CheckButton">
      <summary>A check box control, which is an option that can be turned on or off independent of other options.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Client">
      <summary>A window's user area.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Clock">
      <summary>A control that displays the time.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Column">
      <summary>A column of cells within a table.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ColumnHeader">
      <summary>A column header, which provides a visual label for a column in a table.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ComboBox">
      <summary>A combo box, which is an edit control with an associated list box that provides a set of predefined choices.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Cursor">
      <summary>A mouse pointer.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Default">
      <summary>A system-provided role.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Diagram">
      <summary>A graphical image used to diagram data.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Dial">
      <summary>A dial or knob. This can also be a read-only object, like a speedometer.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Dialog">
      <summary>A dialog box or message box.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Document">
      <summary>A document window, which is always contained within an application window. This role applies only to multiple-document interface (MDI) windows and refers to an object that contains the MDI title bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.DropList">
      <summary>A drop-down list box. This control shows one item and allows the user to display and select another from a list of alternative choices.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Equation">
      <summary>A mathematical equation.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Graphic">
      <summary>A picture.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Grip">
      <summary>A special mouse pointer, which allows a user to manipulate user interface elements such as a window. For example, a user can click and drag a sizing grip in the lower-right corner of a window to resize it.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Grouping">
      <summary>The objects grouped in a logical manner. There can be a parent-child relationship between the grouping object and the objects it contains.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.HelpBalloon">
      <summary>A Help display in the form of a ToolTip or Help balloon, which contains buttons and labels that users can click to open custom Help topics.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.HotkeyField">
      <summary>A hot-key field that allows the user to enter a combination or sequence of keystrokes to be used as a hot key, which enables users to perform an action quickly. A hot-key control displays the keystrokes entered by the user and ensures that the user selects a valid key combination.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Indicator">
      <summary>An indicator, such as a pointer graphic, that points to the current item.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.IpAddress">
      <summary>A control designed for entering Internet Protocol (IP) addresses.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Link">
      <summary>A link, which is a connection between a source document and a destination document. This object might look like text or a graphic, but it acts like a button.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.List">
      <summary>A list box, which allows the user to select one or more items.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ListItem">
      <summary>An item in a list box or the list portion of a combo box, drop-down list box, or drop-down combo box.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.MenuBar">
      <summary>A menu bar, usually beneath the title bar of a window, from which users can select menus.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.MenuItem">
      <summary>A menu item, which is an entry in a menu that a user can choose to carry out a command, select an option, or display another menu. Functionally, a menu item can be equivalent to a push button, radio button, check box, or menu.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.MenuPopup">
      <summary>A menu, which presents a list of options from which the user can make a selection to perform an action. All menu types must have this role, including drop-down menus that are displayed by selection from a menu bar, and shortcut menus that are displayed when the right mouse button is clicked.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.None">
      <summary>No role.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Outline">
      <summary>An outline or tree structure, such as a tree view control, which displays a hierarchical list and usually allows the user to expand and collapse branches.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.OutlineButton">
      <summary>A control that navigates like an outline item.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.OutlineItem">
      <summary>An item in an outline or tree structure.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.PageTab">
      <summary>A property page that allows a user to view the attributes for a page, such as the page's title, whether it is a home page, or whether the page has been modified. Normally, the only child of this control is a grouped object that contains the contents of the associated page.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.PageTabList">
      <summary>A container of page tab controls.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Pane">
      <summary>A separate area in a frame, a split document window, or a rectangular area of the status bar that can be used to display information. Users can navigate between panes and within the contents of the current pane, but cannot navigate between items in different panes. Thus, panes represent a level of grouping lower than frame windows or documents, but above individual controls. Typically, the user navigates between panes by pressing TAB, F6, or CTRL+TAB, depending on the context.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ProgressBar">
      <summary>A progress bar, which indicates the progress of a lengthy operation by displaying colored lines inside a horizontal rectangle. The length of the lines in relation to the length of the rectangle corresponds to the percentage of the operation that is complete. This control does not take user input.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.PropertyPage">
      <summary>A property page, which is a dialog box that controls the appearance and the behavior of an object, such as a file or resource. A property page's appearance differs according to its purpose.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.PushButton">
      <summary>A push button control, which is a small rectangular control that a user can turn on or off. A push button, also known as a command button, has a raised appearance in its default off state and a sunken appearance when it is turned on.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.RadioButton">
      <summary>An option button, also known as a radio button. All objects sharing a single parent that have this attribute are assumed to be part of a single mutually exclusive group. You can use grouped objects to divide option buttons into separate groups when necessary.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Row">
      <summary>A row of cells within a table.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.RowHeader">
      <summary>A row header, which provides a visual label for a table row.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ScrollBar">
      <summary>A vertical or horizontal scroll bar, which can be either part of the client area or used in a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Separator">
      <summary>A space divided visually into two regions, such as a separator menu item or a separator dividing split panes within a window.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Slider">
      <summary>A control, sometimes called a trackbar, that enables a user to adjust a setting in given increments between minimum and maximum values by moving a slider. The volume controls in the Windows operating system are slider controls.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Sound">
      <summary>A system sound, which is associated with various system events.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.SpinButton">
      <summary>A spin box, also known as an up-down control, which contains a pair of arrow buttons. A user clicks the arrow buttons with a mouse to increment or decrement a value. A spin button control is most often used with a companion control, called a buddy window, where the current value is displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.SplitButton">
      <summary>A toolbar button that has a drop-down list icon directly adjacent to the button.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.StaticText">
      <summary>The read-only text, such as in a label, for other controls or instructions in a dialog box. Static text cannot be modified or selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.StatusBar">
      <summary>A status bar, which is an area typically at the bottom of an application window that displays information about the current operation, state of the application, or selected object. The status bar can have multiple fields that display different kinds of information, such as an explanation of the currently selected menu command in the status bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Table">
      <summary>A table containing rows and columns of cells and, optionally, row headers and column headers.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Text">
      <summary>The selectable text that can be editable or read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.TitleBar">
      <summary>A title or caption bar for a window.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ToolBar">
      <summary>A toolbar, which is a grouping of controls that provide easy access to frequently used features.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.ToolTip">
      <summary>A tool tip, which is a small rectangular pop-up window that displays a brief description of the purpose of a button.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.WhiteSpace">
      <summary>A blank space between other objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleRole.Window">
      <summary>A window frame, which usually contains child objects such as a title bar, client, and other objects typically contained in a window.</summary>
    </member>
    <member name="T:System.Windows.Forms.AccessibleSelection">
      <summary>Specifies how an accessible object is selected or receives focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleSelection.AddSelection">
      <summary>Adds the object to the selection.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleSelection.ExtendSelection">
      <summary>Selects all objects between the anchor and the selected object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleSelection.None">
      <summary>The selection or focus of an object is unchanged.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleSelection.RemoveSelection">
      <summary>Removes the object from the selection.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleSelection.TakeFocus">
      <summary>Assigns focus to an object and makes it the anchor, which is the starting point for the selection. Can be combined with <see langword="TakeSelection" />, <see langword="ExtendSelection" />, <see langword="AddSelection" />, or <see langword="RemoveSelection" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleSelection.TakeSelection">
      <summary>Selects the object and deselects all other objects in the container.</summary>
    </member>
    <member name="T:System.Windows.Forms.AccessibleStates">
      <summary>Specifies values representing possible states for an accessible object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.AlertHigh">
      <summary>The important information that should be conveyed to the user immediately. For example, a battery-level indicator reaching a critical low level would transition to this state, in which case, a blind access utility would announce this information immediately to the user, and a screen magnification program would scroll the screen so that the battery indicator is in view. This state is also appropriate for any prompt or operation that must be completed before the user can continue.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.AlertLow">
      <summary>The low-priority information that might not be important to the user.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.AlertMedium">
      <summary>The important information that does not need to be conveyed to the user immediately. For example, when a battery-level indicator is starting to reach a low level, it could generate a medium-level alert. Blind access utilities could then generate a sound to let the user know that important information is available, without actually interrupting the user's work. Users can then query the alert information any time they choose.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Animated">
      <summary>The object that rapidly or constantly changes appearance. Graphics that are occasionally animated, but not always, should be defined as <see cref="F:System.Windows.Forms.AccessibleRole.Graphic" /><see langword="OR" /><see langword="Animated" />. This state should not be used to indicate that the object's location is changing.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Busy">
      <summary>A control that cannot accept input in its current condition.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Checked">
      <summary>An object with a selected check box.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Collapsed">
      <summary>The hidden children of the object that are items in an outline or tree structure.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Default">
      <summary>The default button or menu item.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Expanded">
      <summary>The displayed children of the object that are items in an outline or tree structure.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.ExtSelectable">
      <summary>The altered selection such that all objects between the selection anchor, which is the object with the keyboard focus, and this object take on the anchor object's selection state. If the anchor object is not selected, the objects are removed from the selection. If the anchor object is selected, the selection is extended to include this object and all objects in between. You can set the selection state by combining this with <see cref="F:System.Windows.Forms.AccessibleSelection.AddSelection" /> or <see cref="F:System.Windows.Forms.AccessibleSelection.RemoveSelection" />. This state does not change the focus or the selection anchor unless it is combined with <see cref="F:System.Windows.Forms.AccessibleSelection.TakeFocus" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Floating">
      <summary>The object that is not fixed to the boundary of its parent object and that does not move automatically along with the parent.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Focusable">
      <summary>The object on the active window that can receive keyboard focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Focused">
      <summary>An object with the keyboard focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.HasPopup">
      <summary>The object displays a pop-up menu or window when invoked.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.HotTracked">
      <summary>The object hot-tracked by the mouse, meaning its appearance is highlighted to indicate the mouse pointer is located over it.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Indeterminate">
      <summary>A three-state check box or toolbar button whose state is indeterminate. The check box is neither checked nor unchecked, and it is in the third or mixed state.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Invisible">
      <summary>An object without a visible user interface.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Linked">
      <summary>A linked object that has not been previously selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Marqueed">
      <summary>An object with scrolling or moving text or graphics.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Mixed">
      <summary>A three-state check box or toolbar button whose state is indeterminate. The check box is neither checked nor unchecked, and it is in the third or mixed state.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Moveable">
      <summary>A movable object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.MultiSelectable">
      <summary>An object that accepts multiple selected items.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.None">
      <summary>No state.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Offscreen">
      <summary>No on-screen representation. A sound or alert object would have this state, or a hidden window that is never made visible.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Pressed">
      <summary>A pressed object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Protected">
      <summary>A password-protected edit control.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.ReadOnly">
      <summary>A read-only object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Selectable">
      <summary>An object that can accept selection.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Selected">
      <summary>A selected object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.SelfVoicing">
      <summary>The object or child can use text-to-speech (TTS) to describe itself. A speech-based accessibility aid should not announce information when an object with this state has the focus, because the object automatically announces information about itself.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Sizeable">
      <summary>A sizable object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Traversed">
      <summary>A linked object that has previously been selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Unavailable">
      <summary>An unavailable object.</summary>
    </member>
    <member name="F:System.Windows.Forms.AccessibleStates.Valid">
      <summary>A valid object. This property is deprecated in .NET Framework 2.0.</summary>
    </member>
    <member name="T:System.Windows.Forms.AmbientProperties">
      <summary>Provides ambient property values to top-level controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.AmbientProperties.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AmbientProperties" /> class.</summary>
    </member>
    <member name="P:System.Windows.Forms.AmbientProperties.BackColor">
      <summary>Gets or sets the ambient background color of an object.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> value that represents the background color of an object.</returns>
    </member>
    <member name="P:System.Windows.Forms.AmbientProperties.Cursor">
      <summary>Gets or sets the ambient cursor of an object.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor of an object.</returns>
    </member>
    <member name="P:System.Windows.Forms.AmbientProperties.Font">
      <summary>Gets or sets the ambient font of an object.</summary>
      <returns>A <see cref="T:System.Drawing.Font" /> that represents the font used when displaying text within an object.</returns>
    </member>
    <member name="P:System.Windows.Forms.AmbientProperties.ForeColor">
      <summary>Gets or sets the ambient foreground color of an object.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> value that represents the foreground color of an object.</returns>
    </member>
    <member name="T:System.Windows.Forms.AnchorStyles">
      <summary>Specifies how a control anchors to the edges of its container.</summary>
    </member>
    <member name="F:System.Windows.Forms.AnchorStyles.Bottom">
      <summary>The control is anchored to the bottom edge of its container.</summary>
    </member>
    <member name="F:System.Windows.Forms.AnchorStyles.Left">
      <summary>The control is anchored to the left edge of its container.</summary>
    </member>
    <member name="F:System.Windows.Forms.AnchorStyles.None">
      <summary>The control is not anchored to any edges of its container.</summary>
    </member>
    <member name="F:System.Windows.Forms.AnchorStyles.Right">
      <summary>The control is anchored to the right edge of its container.</summary>
    </member>
    <member name="F:System.Windows.Forms.AnchorStyles.Top">
      <summary>The control is anchored to the top edge of its container.</summary>
    </member>
    <member name="T:System.Windows.Forms.Appearance">
      <summary>Specifies the appearance of a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.Appearance.Button">
      <summary>The appearance of a Windows button.</summary>
    </member>
    <member name="F:System.Windows.Forms.Appearance.Normal">
      <summary>The default appearance defined by the control class.</summary>
    </member>
    <member name="T:System.Windows.Forms.Application">
      <summary>Provides <see langword="static" /> methods and properties to manage an application, such as methods to start and stop an application, to process Windows messages, and properties to get information about an application. This class cannot be inherited.</summary>
    </member>
    <member name="E:System.Windows.Forms.Application.ApplicationExit">
      <summary>Occurs when the application is about to shut down.</summary>
    </member>
    <member name="E:System.Windows.Forms.Application.EnterThreadModal">
      <summary>Occurs when the application is about to enter a modal state.</summary>
    </member>
    <member name="E:System.Windows.Forms.Application.Idle">
      <summary>Occurs when the application finishes processing and is about to enter the idle state.</summary>
    </member>
    <member name="E:System.Windows.Forms.Application.LeaveThreadModal">
      <summary>Occurs when the application is about to leave a modal state.</summary>
    </member>
    <member name="E:System.Windows.Forms.Application.ThreadException">
      <summary>Occurs when an untrapped thread exception is thrown.</summary>
    </member>
    <member name="E:System.Windows.Forms.Application.ThreadExit">
      <summary>Occurs when a thread is about to shut down. When the main thread for an application is about to be shut down, this event is raised first, followed by an <see cref="E:System.Windows.Forms.Application.ApplicationExit" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.Application.AddMessageFilter(System.Windows.Forms.IMessageFilter)">
      <summary>Adds a message filter to monitor Windows messages as they are routed to their destinations.</summary>
      <param name="value">The implementation of the <see cref="T:System.Windows.Forms.IMessageFilter" /> interface you want to install.</param>
    </member>
    <member name="M:System.Windows.Forms.Application.DoEvents">
      <summary>Processes all Windows messages currently in the message queue.</summary>
    </member>
    <member name="M:System.Windows.Forms.Application.EnableVisualStyles">
      <summary>Enables visual styles for the application.</summary>
    </member>
    <member name="M:System.Windows.Forms.Application.Exit">
      <summary>Informs all message pumps that they must terminate, and then closes all application windows after the messages have been processed.</summary>
    </member>
    <member name="M:System.Windows.Forms.Application.Exit(System.ComponentModel.CancelEventArgs)">
      <summary>Informs all message pumps that they must terminate, and then closes all application windows after the messages have been processed.</summary>
      <param name="e">Returns whether any <see cref="T:System.Windows.Forms.Form" /> within the application cancelled the exit.</param>
    </member>
    <member name="M:System.Windows.Forms.Application.ExitThread">
      <summary>Exits the message loop on the current thread and closes all windows on the thread.</summary>
    </member>
    <member name="M:System.Windows.Forms.Application.FilterMessage(System.Windows.Forms.Message@)">
      <summary>Runs any filters against a window message, and returns a copy of the modified message.</summary>
      <param name="message">The Windows event message to filter.</param>
      <returns>
        <see langword="true" /> if the filters were processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Application.OleRequired">
      <summary>Initializes OLE on the current thread.</summary>
      <returns>One of the <see cref="T:System.Threading.ApartmentState" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Application.OnThreadException(System.Exception)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Application.ThreadException" /> event.</summary>
      <param name="t">An <see cref="T:System.Exception" /> that represents the exception that was thrown.</param>
    </member>
    <member name="M:System.Windows.Forms.Application.RaiseIdle(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Application.Idle" /> event in hosted scenarios.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> objects to pass to the <see cref="E:System.Windows.Forms.Application.Idle" /> event.</param>
    </member>
    <member name="M:System.Windows.Forms.Application.RegisterMessageLoop(System.Windows.Forms.Application.MessageLoopCallback)">
      <summary>Registers a callback for checking whether the message loop is running in hosted environments.</summary>
      <param name="callback">The method to call when Windows Forms needs to check if the hosting environment is still sending messages.</param>
    </member>
    <member name="M:System.Windows.Forms.Application.RemoveMessageFilter(System.Windows.Forms.IMessageFilter)">
      <summary>Removes a message filter from the message pump of the application.</summary>
      <param name="value">The implementation of the <see cref="T:System.Windows.Forms.IMessageFilter" /> to remove from the application.</param>
    </member>
    <member name="M:System.Windows.Forms.Application.Restart">
      <summary>Shuts down the application and starts a new instance immediately.</summary>
      <exception cref="T:System.NotSupportedException">Your code is not a Windows Forms application. You cannot call this method in this context.</exception>
    </member>
    <member name="M:System.Windows.Forms.Application.Run">
      <summary>Begins running a standard application message loop on the current thread, without a form.</summary>
      <exception cref="T:System.InvalidOperationException">A main message loop is already running on this thread.</exception>
    </member>
    <member name="M:System.Windows.Forms.Application.Run(System.Windows.Forms.ApplicationContext)">
      <summary>Begins running a standard application message loop on the current thread, with an <see cref="T:System.Windows.Forms.ApplicationContext" />.</summary>
      <param name="context">An <see cref="T:System.Windows.Forms.ApplicationContext" /> in which the application is run.</param>
      <exception cref="T:System.InvalidOperationException">A main message loop is already running on this thread.</exception>
    </member>
    <member name="M:System.Windows.Forms.Application.Run(System.Windows.Forms.Form)">
      <summary>Begins running a standard application message loop on the current thread, and makes the specified form visible.</summary>
      <param name="mainForm">A <see cref="T:System.Windows.Forms.Form" /> that represents the form to make visible.</param>
      <exception cref="T:System.InvalidOperationException">A main message loop is already running on the current thread.</exception>
    </member>
    <member name="M:System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(System.Boolean)">
      <summary>Sets the application-wide default for the <c>UseCompatibleTextRendering</c> property defined on certain controls.</summary>
      <param name="defaultValue">The default value to use for new controls. If <see langword="true" />, new controls that support <c>UseCompatibleTextRendering</c> use the GDI+ based <see cref="T:System.Drawing.Graphics" /> class for text rendering; if <see langword="false" />, new controls use the GDI based <see cref="T:System.Windows.Forms.TextRenderer" /> class.</param>
      <exception cref="T:System.InvalidOperationException">You can only call this method before the first window is created by your Windows Forms application.</exception>
    </member>
    <member name="M:System.Windows.Forms.Application.SetDefaultFont(System.Drawing.Font)">
      <summary>Sets the default <see cref="T:System.Drawing.Font" /> for the process.</summary>
      <param name="font">The font to be used as a default across the application.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="font" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">You can only call this method before the first window is created by your Windows Forms application.</exception>
    </member>
    <member name="M:System.Windows.Forms.Application.SetHighDpiMode(System.Windows.Forms.HighDpiMode)">
      <summary>Sets the high DPI mode of the process.</summary>
      <param name="highDpiMode">One of the enumeration values that specifies the high DPI mode to set.</param>
      <returns>
        <see langword="true" /> if the high DPI mode was set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Application.SetSuspendState(System.Windows.Forms.PowerState,System.Boolean,System.Boolean)">
      <summary>Suspends or hibernates the system, or requests that the system be suspended or hibernated.</summary>
      <param name="state">A <see cref="T:System.Windows.Forms.PowerState" /> indicating the power activity mode to which to transition.</param>
      <param name="force">
        <see langword="true" /> to force the suspended mode immediately; <see langword="false" /> to cause Windows to send a suspend request to every application.</param>
      <param name="disableWakeEvent">
        <see langword="true" /> to disable restoring the system's power status to active on a wake event, <see langword="false" /> to enable restoring the system's power status to active on a wake event.</param>
      <returns>
        <see langword="true" /> if the system is being suspended, otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Application.SetUnhandledExceptionMode(System.Windows.Forms.UnhandledExceptionMode)">
      <summary>Instructs the application how to respond to unhandled exceptions.</summary>
      <param name="mode">An <see cref="T:System.Windows.Forms.UnhandledExceptionMode" /> value describing how the application should behave if an exception is thrown without being caught.</param>
      <exception cref="T:System.InvalidOperationException">You cannot set the exception mode after the application has created its first window.</exception>
    </member>
    <member name="M:System.Windows.Forms.Application.SetUnhandledExceptionMode(System.Windows.Forms.UnhandledExceptionMode,System.Boolean)">
      <summary>Instructs the application how to respond to unhandled exceptions, optionally applying thread-specific behavior.</summary>
      <param name="mode">An <see cref="T:System.Windows.Forms.UnhandledExceptionMode" /> value describing how the application should behave if an exception is thrown without being caught.</param>
      <param name="threadScope">
        <see langword="true" /> to set the thread exception mode; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.InvalidOperationException">You cannot set the exception mode after the application has created its first window.</exception>
    </member>
    <member name="M:System.Windows.Forms.Application.UnregisterMessageLoop">
      <summary>Unregisters the message loop callback made with <see cref="M:System.Windows.Forms.Application.RegisterMessageLoop(System.Windows.Forms.Application.MessageLoopCallback)" />.</summary>
    </member>
    <member name="P:System.Windows.Forms.Application.AllowQuit">
      <summary>Gets a value indicating whether the caller can quit this application.</summary>
      <returns>
        <see langword="true" /> if the caller can quit this application; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.CommonAppDataPath">
      <summary>Gets the path for the application data that is shared among all users.</summary>
      <returns>The path for the application data that is shared among all users.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.CommonAppDataRegistry">
      <summary>Gets the registry key for the application data that is shared among all users.</summary>
      <returns>A <see cref="T:Microsoft.Win32.RegistryKey" /> representing the registry key of the application data that is shared among all users.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.CompanyName">
      <summary>Gets the company name associated with the application.</summary>
      <returns>The company name.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.CurrentCulture">
      <summary>Gets or sets the culture information for the current thread.</summary>
      <returns>A <see cref="T:System.Globalization.CultureInfo" /> representing the culture information for the current thread.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.CurrentInputLanguage">
      <summary>Gets or sets the current input language for the current thread.</summary>
      <returns>An <see cref="T:System.Windows.Forms.InputLanguage" /> representing the current input language for the current thread.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.ExecutablePath">
      <summary>Gets the path for the executable file that started the application, including the executable name.</summary>
      <returns>The path and executable name for the executable file that started the application.  
  
 This path will be different depending on whether the Windows Forms application is deployed using ClickOnce. ClickOnce applications are stored in a per-user application cache in the C:\Documents and Settings\username directory. For more information, see Accessing Local and Remote Data in ClickOnce Applications.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.HighDpiMode">
      <summary>Gets the current high DPI mode for the application.</summary>
      <returns>One of the enumeration values that indicates the high DPI mode.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.LocalUserAppDataPath">
      <summary>Gets the path for the application data of a local, non-roaming user.</summary>
      <returns>The path for the application data of a local, non-roaming user.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.MessageLoop">
      <summary>Gets a value indicating whether a message loop exists on this thread.</summary>
      <returns>
        <see langword="true" /> if a message loop exists; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.OpenForms">
      <summary>Gets a collection of open forms owned by the application.</summary>
      <returns>A <see cref="T:System.Windows.Forms.FormCollection" /> containing all the currently open forms owned by this application.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.ProductName">
      <summary>Gets the product name associated with this application.</summary>
      <returns>The product name.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.ProductVersion">
      <summary>Gets the product version associated with this application.</summary>
      <returns>The product version.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.RenderWithVisualStyles">
      <summary>Gets a value specifying whether the current application is drawing controls with visual styles.</summary>
      <returns>
        <see langword="true" /> if visual styles are enabled for controls in the client area of application windows; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.SafeTopLevelCaptionFormat">
      <summary>Gets or sets the format string to apply to top-level window captions when they are displayed with a warning banner.</summary>
      <returns>The format string to apply to top-level window captions.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.StartupPath">
      <summary>Gets the path for the executable file that started the application, not including the executable name.</summary>
      <returns>The path for the executable file that started the application.  
  
 This path will be different depending on whether the Windows Forms application is deployed using ClickOnce. ClickOnce applications are stored in a per-user application cache in the C:\Documents and Settings\username directory. For more information, see Accessing Local and Remote Data in ClickOnce Applications.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.UserAppDataPath">
      <summary>Gets the path for the application data of a user.</summary>
      <returns>The path for the application data of a user.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.UserAppDataRegistry">
      <summary>Gets the registry key for the application data of a user.</summary>
      <returns>A <see cref="T:Microsoft.Win32.RegistryKey" /> representing the registry key for the application data specific to the user.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.UseVisualStyles">
      <summary>Gets a value that indicates whether visual styles are enabled for the application.</summary>
      <returns>
        <see langword="true" /> if visual styles are enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.UseWaitCursor">
      <summary>Gets or sets whether the wait cursor is used for all open forms of the application.</summary>
      <returns>
        <see langword="true" /> is the wait cursor is used for all open forms; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Application.VisualStyleState">
      <summary>Gets a value that specifies how visual styles are applied to application windows.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleState" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.Application.MessageLoopCallback">
      <summary>Represents a method that will check whether the hosting environment is still sending messages.</summary>
      <returns>
        <see langword="true" /> if the hosting environment is still sending messages; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ApplicationContext">
      <summary>Specifies the contextual information about an application thread.</summary>
    </member>
    <member name="E:System.Windows.Forms.ApplicationContext.ThreadExit">
      <summary>Occurs when the message loop of the thread should be terminated, by calling <see cref="M:System.Windows.Forms.ApplicationContext.ExitThread" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ApplicationContext.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ApplicationContext" /> class with no context.</summary>
    </member>
    <member name="M:System.Windows.Forms.ApplicationContext.#ctor(System.Windows.Forms.Form)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ApplicationContext" /> class with the specified <see cref="T:System.Windows.Forms.Form" />.</summary>
      <param name="mainForm">The main <see cref="T:System.Windows.Forms.Form" /> of the application to use for context.</param>
    </member>
    <member name="M:System.Windows.Forms.ApplicationContext.Dispose">
      <summary>Releases all resources used by the <see cref="T:System.Windows.Forms.ApplicationContext" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ApplicationContext.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ApplicationContext" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ApplicationContext.ExitThread">
      <summary>Terminates the message loop of the thread.</summary>
    </member>
    <member name="M:System.Windows.Forms.ApplicationContext.ExitThreadCore">
      <summary>Terminates the message loop of the thread.</summary>
    </member>
    <member name="M:System.Windows.Forms.ApplicationContext.Finalize">
      <summary>Attempts to free resources and perform other cleanup operations before the application context is reclaimed by garbage collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ApplicationContext.OnMainFormClosed(System.Object,System.EventArgs)">
      <summary>Calls <see cref="M:System.Windows.Forms.ApplicationContext.ExitThreadCore" />, which raises the <see cref="E:System.Windows.Forms.ApplicationContext.ThreadExit" /> event.</summary>
      <param name="sender">The object that raised the event.</param>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="P:System.Windows.Forms.ApplicationContext.MainForm">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.Form" /> to use as context.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Form" /> to use as context.</returns>
    </member>
    <member name="P:System.Windows.Forms.ApplicationContext.Tag">
      <summary>Gets or sets an object that contains data about the control.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the control. The default is <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ArrangeDirection">
      <summary>Specifies the direction in which the system arranges minimized windows.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrangeDirection.Down">
      <summary>Arranged vertically, from top to bottom. Valid with the <see cref="F:System.Windows.Forms.ArrangeStartingPosition.TopLeft" /> and <see cref="F:System.Windows.Forms.ArrangeStartingPosition.TopRight" /><see cref="T:System.Windows.Forms.ArrangeStartingPosition" /> enumeration values.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrangeDirection.Left">
      <summary>Arranged horizontally, from left to right. Valid with the <see cref="F:System.Windows.Forms.ArrangeStartingPosition.BottomRight" /> and <see cref="F:System.Windows.Forms.ArrangeStartingPosition.TopRight" /><see cref="T:System.Windows.Forms.ArrangeStartingPosition" /> enumeration values.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrangeDirection.Right">
      <summary>Arranged horizontally, from right to left. Valid with the <see cref="F:System.Windows.Forms.ArrangeStartingPosition.BottomLeft" /> and <see cref="F:System.Windows.Forms.ArrangeStartingPosition.TopLeft" /><see cref="T:System.Windows.Forms.ArrangeStartingPosition" /> enumeration values.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrangeDirection.Up">
      <summary>Arranged vertically, from bottom to top. Valid with the <see cref="F:System.Windows.Forms.ArrangeStartingPosition.BottomLeft" /> and <see cref="F:System.Windows.Forms.ArrangeStartingPosition.BottomRight" /><see cref="T:System.Windows.Forms.ArrangeStartingPosition" /> enumeration values.</summary>
    </member>
    <member name="T:System.Windows.Forms.ArrangeStartingPosition">
      <summary>Specifies the starting position that the system uses to arrange minimized windows.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrangeStartingPosition.BottomLeft">
      <summary>Starts at the lower-left corner of the screen, which is the default position.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrangeStartingPosition.BottomRight">
      <summary>Starts at the lower-right corner of the screen.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrangeStartingPosition.Hide">
      <summary>Hides minimized windows by moving them off the visible area of the screen.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrangeStartingPosition.TopLeft">
      <summary>Starts at the upper-left corner of the screen.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrangeStartingPosition.TopRight">
      <summary>Starts at the upper-right corner of the screen.</summary>
    </member>
    <member name="T:System.Windows.Forms.ArrowDirection">
      <summary>Specifies the direction to move when getting items with the <see cref="M:System.Windows.Forms.ToolStrip.GetNextItem(System.Windows.Forms.ToolStripItem,System.Windows.Forms.ArrowDirection)" /> method.</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrowDirection.Down">
      <summary>The direction is down (<see cref="F:System.Windows.Forms.Orientation.Vertical" />).</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrowDirection.Left">
      <summary>The direction is left (<see cref="F:System.Windows.Forms.Orientation.Horizontal" />).</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrowDirection.Right">
      <summary>The direction is right (<see cref="F:System.Windows.Forms.Orientation.Horizontal" />).</summary>
    </member>
    <member name="F:System.Windows.Forms.ArrowDirection.Up">
      <summary>The direction is up (<see cref="F:System.Windows.Forms.Orientation.Vertical" />).</summary>
    </member>
    <member name="T:System.Windows.Forms.AutoCompleteMode">
      <summary>Specifies the mode for the automatic completion feature used in the <see cref="T:System.Windows.Forms.ComboBox" /> and <see cref="T:System.Windows.Forms.TextBox" /> controls.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteMode.Append">
      <summary>Appends the remainder of the most likely candidate string to the existing characters, highlighting the appended characters.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteMode.None">
      <summary>Disables the automatic completion feature for the <see cref="T:System.Windows.Forms.ComboBox" /> and <see cref="T:System.Windows.Forms.TextBox" /> controls.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteMode.Suggest">
      <summary>Displays the auxiliary drop-down list associated with the edit control. This drop-down is populated with one or more suggested completion strings.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteMode.SuggestAppend">
      <summary>Applies both <see langword="Suggest" /> and <see langword="Append" /> options.</summary>
    </member>
    <member name="T:System.Windows.Forms.AutoCompleteSource">
      <summary>Specifies the source for <see cref="T:System.Windows.Forms.ComboBox" /> and <see cref="T:System.Windows.Forms.TextBox" /> automatic completion functionality.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteSource.AllSystemSources">
      <summary>Specifies the equivalent of <see cref="F:System.Windows.Forms.AutoCompleteSource.FileSystem" /> and <see cref="F:System.Windows.Forms.AutoCompleteSource.AllUrl" /> as the source. This is the default value when <see cref="T:System.Windows.Forms.AutoCompleteMode" /> has been set to a value other than the default.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteSource.AllUrl">
      <summary>Specifies the equivalent of <see cref="F:System.Windows.Forms.AutoCompleteSource.HistoryList" /> and <see cref="F:System.Windows.Forms.AutoCompleteSource.RecentlyUsedList" /> as the source.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteSource.CustomSource">
      <summary>Specifies strings from a built-in <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" /> as the source.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteSource.FileSystem">
      <summary>Specifies the file system as the source.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteSource.FileSystemDirectories">
      <summary>Specifies that only directory names and not file names will be automatically completed.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteSource.HistoryList">
      <summary>Includes the Uniform Resource Locators (URLs) in the history list.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteSource.ListItems">
      <summary>Specifies that the items of the <see cref="T:System.Windows.Forms.ComboBox" /> represent the source.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteSource.None">
      <summary>Specifies that no <see cref="T:System.Windows.Forms.AutoCompleteSource" /> is currently in use. This is the default value of <see cref="T:System.Windows.Forms.AutoCompleteSource" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoCompleteSource.RecentlyUsedList">
      <summary>Includes the Uniform Resource Locators (URLs) in the list of those URLs most recently used.</summary>
    </member>
    <member name="T:System.Windows.Forms.AutoCompleteStringCollection">
      <summary>Contains a collection of strings to use for the auto-complete feature on certain Windows Forms controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.AutoCompleteStringCollection.CollectionChanged">
      <summary>Occurs when the collection changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.Add(System.String)">
      <summary>Inserts a new <see cref="T:System.String" /> into the collection.</summary>
      <param name="value">The <see cref="T:System.String" /> to add to the collection.</param>
      <returns>The position in the collection where the <see cref="T:System.String" /> was added.</returns>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.AddRange(System.String[])">
      <summary>Adds the elements of a <see cref="T:System.String" /> collection to the end.</summary>
      <param name="value">The strings to add to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.Clear">
      <summary>Removes all strings from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.Contains(System.String)">
      <summary>Indicates whether the <see cref="T:System.String" /> exists within the collection.</summary>
      <param name="value">The <see cref="T:System.String" /> for which to search.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.String" /> exists within the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.CopyTo(System.String[],System.Int32)">
      <summary>Copies an array of <see cref="T:System.String" /> objects into the collection, starting at the specified position.</summary>
      <param name="array">The <see cref="T:System.String" /> objects to add to the collection.</param>
      <param name="index">The position within the collection at which to start the insertion.</param>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.GetEnumerator">
      <summary>Returns an enumerator that iterates through the <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" />.</summary>
      <returns>An enumerator that iterates through the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.IndexOf(System.String)">
      <summary>Obtains the position of the specified string within the collection.</summary>
      <param name="value">The <see cref="T:System.String" /> for which to search.</param>
      <returns>The index for the specified item.</returns>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.Insert(System.Int32,System.String)">
      <summary>Inserts the string into a specific index in the collection.</summary>
      <param name="index">The position at which to insert the string.</param>
      <param name="value">The string to insert.</param>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AutoCompleteStringCollection.CollectionChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.Remove(System.String)">
      <summary>Removes a string from the collection.</summary>
      <param name="value">The <see cref="T:System.String" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.RemoveAt(System.Int32)">
      <summary>Removes the string at the specified index.</summary>
      <param name="index">The zero-based index of the string to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the strings of the collection to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index. For a description of this member, see <see cref="M:System.Collections.ICollection.CopyTo(System.Array,System.Int32)" />.</summary>
      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the strings copied from collection. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
      <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds a string to the collection. For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
      <param name="value">The string to be added to the collection.</param>
      <returns>The index at which the <paramref name="value" /> has been added.</returns>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines where the collection contains a specified string. For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</summary>
      <param name="value">The string to locate in the collection.</param>
      <returns>
        <see langword="true" /> if <paramref name="value" /> is found in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Determines the index of a specified string in the collection. For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</summary>
      <param name="value">The string to locate in the collection.</param>
      <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an item to the collection at the specified index. For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The string to insert into the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of a specific string from the collection. For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
      <param name="value">The string to remove from the collection.</param>
    </member>
    <member name="P:System.Windows.Forms.AutoCompleteStringCollection.Count">
      <summary>Gets the number of items in the <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" /> .</summary>
      <returns>The number of items in the <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.AutoCompleteStringCollection.IsReadOnly">
      <summary>Gets a value indicating whether the contents of the collection are read-only.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.AutoCompleteStringCollection.IsSynchronized">
      <summary>Gets a value indicating whether access to the <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" /> is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.AutoCompleteStringCollection.Item(System.Int32)">
      <summary>Gets or sets the element at the specified index.</summary>
      <param name="index">The index at which to get or set the <see cref="T:System.String" />.</param>
      <returns>The <see cref="T:System.String" /> at the specified position.</returns>
    </member>
    <member name="P:System.Windows.Forms.AutoCompleteStringCollection.SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" />.</summary>
      <returns>Returns this <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size. For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
      <returns>
        <see langword="true" /> if the collection has a fixed size; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only. For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.AutoCompleteStringCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets the element at a specified index. For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the element to get.</param>
      <returns>The element at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.AutoScaleMode">
      <summary>Specifies the different types of automatic scaling modes supported by Windows Forms.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoScaleMode.Dpi">
      <summary>Controls scale relative to the display resolution. Common resolutions are 96 and 120 DPI.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoScaleMode.Font">
      <summary>Controls scale relative to the dimensions of the font the classes are using, which is typically the system font.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoScaleMode.Inherit">
      <summary>Controls scale according to the classes' parent's scaling mode. If there is no parent, automatic scaling is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoScaleMode.None">
      <summary>Automatic scaling is disabled.</summary>
    </member>
    <member name="T:System.Windows.Forms.AutoSizeMode">
      <summary>Specifies how a control will behave when its <see cref="P:System.Windows.Forms.Control.AutoSize" /> property is enabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoSizeMode.GrowAndShrink">
      <summary>The control grows or shrinks to fit its contents. The control cannot be resized manually.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoSizeMode.GrowOnly">
      <summary>The control grows as much as necessary to fit its contents but does not shrink smaller than the value of its <see cref="P:System.Windows.Forms.Control.Size" /> property. The form can be resized, but cannot be made so small that any of its contained controls are hidden.</summary>
    </member>
    <member name="T:System.Windows.Forms.AutoValidate">
      <summary>Determines how a control validates its data when it loses user input focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoValidate.Disable">
      <summary>Implicit validation will not occur. Setting this value will not interfere with explicit calls to <see cref="M:System.Windows.Forms.ContainerControl.Validate" /> or <see cref="M:System.Windows.Forms.ContainerControl.ValidateChildren" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoValidate.EnableAllowFocusChange">
      <summary>Implicit validation occurs, but if validation fails, focus will still change to the new control. If validation fails, the <see cref="E:System.Windows.Forms.Control.Validated" /> event will not fire.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoValidate.EnablePreventFocusChange">
      <summary>Implicit validation occurs when the control loses focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.AutoValidate.Inherit">
      <summary>The control inherits its <see cref="T:System.Windows.Forms.AutoValidate" /> behavior from its container (such as a form or another control). If there is no container control, it defaults to <see cref="F:System.Windows.Forms.AutoValidate.EnablePreventFocusChange" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.AxHost">
      <summary>Wraps ActiveX controls and exposes them as fully featured Windows Forms controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.BackColorChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.BackColorChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.BackgroundImageChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.BackgroundImageChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.BackgroundImageLayoutChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.BindingContextChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.BindingContextChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.ChangeUICues">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.ChangeUICues" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.Click">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.Click" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.CursorChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.CursorChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.DoubleClick">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.DoubleClick" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.DragDrop">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.DragDrop" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.DragEnter">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.DragEnter" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.DragLeave">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.DragLeave" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.DragOver">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.DragOver" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.EnabledChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.EnabledChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.FontChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.FontChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.ForeColorChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.ForeColorChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.GiveFeedback">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.GiveFeedback" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.HelpRequested">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.HelpRequested" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.ImeModeChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.ImeModeChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.KeyDown">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.KeyDown" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.KeyPress">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.KeyPress" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.KeyUp">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.KeyUp" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.Layout">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.Layout" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.MouseClick">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.MouseDoubleClick">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.MouseDown">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.MouseDown" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.MouseEnter">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.MouseEnter" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.MouseHover">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.MouseHover" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.MouseLeave">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.MouseLeave" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.MouseMove">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.MouseMove" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.MouseUp">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.MouseUp" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.MouseWheel">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.MouseWheel" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.Paint">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.Paint" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.QueryAccessibilityHelp">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.QueryAccessibilityHelp" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.QueryContinueDrag">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.QueryContinueDrag" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.RightToLeftChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.RightToLeftChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.StyleChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.StyleChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.AxHost.TextChanged">
      <summary>The <see cref="E:System.Windows.Forms.AxHost.TextChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost" /> class, wrapping the ActiveX control indicated by the specified CLSID.</summary>
      <param name="clsid">The CLSID of the ActiveX control to wrap.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.#ctor(System.String,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost" /> class, wrapping the ActiveX control indicated by the specified CLSID, and using the shortcut-menu behavior indicated by the specified <paramref name="flags" /> value.</summary>
      <param name="clsid">The CLSID of the ActiveX control to wrap.</param>
      <param name="flags">An <see cref="T:System.Int32" /> that modifies the shortcut-menu behavior for the control.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.AttachInterfaces">
      <summary>When overridden in a derived class, attaches interfaces to the underlying ActiveX control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.BeginInit">
      <summary>Begins the initialization of the ActiveX control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.CreateHandle">
      <summary>Creates a handle for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.CreateInstanceCore(System.Guid)">
      <summary>Called by the system to create the ActiveX control.</summary>
      <param name="clsid">The CLSID of the ActiveX control.</param>
      <returns>An <see cref="T:System.Object" /> representing the ActiveX control.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.CreateSink">
      <summary>Called by the control to prepare it for listening to events.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.DestroyHandle">
      <summary>Destroys the handle associated with the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.DetachSink">
      <summary>Called by the control when it stops listening to events.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control" /> and its child controls and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.DoVerb(System.Int32)">
      <summary>Requests that an object perform an action in response to an end-user's action.</summary>
      <param name="verb">One of the actions enumerated for the object in IOleObject::EnumVerbs.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)">
      <summary>This method is not supported by this control.</summary>
      <param name="bitmap">A <see cref="T:System.Drawing.Bitmap" />.</param>
      <param name="targetBounds">A <see cref="T:System.Drawing.Rectangle" />.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.EndInit">
      <summary>Ends the initialization of an ActiveX control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetColorFromOleColor(System.UInt32)">
      <summary>Returns a <see cref="T:System.Drawing.Color" /> structure that corresponds to the specified OLE color value.</summary>
      <param name="color">The OLE color value to translate.</param>
      <returns>The <see cref="T:System.Drawing.Color" /> structure that represents the translated OLE color value.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetFontFromIFont(System.Object)">
      <summary>Returns a <see cref="T:System.Drawing.Font" /> created from the specified OLE IFont object.</summary>
      <param name="font">The IFont to create a <see cref="T:System.Drawing.Font" /> from.</param>
      <returns>The <see cref="T:System.Drawing.Font" /> created from the specified IFont, <see cref="P:System.Windows.Forms.Control.DefaultFont" /> if the font could not be created, or <see langword="null" /> if <paramref name="font" /> is <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetFontFromIFontDisp(System.Object)">
      <summary>Returns a <see cref="T:System.Drawing.Font" /> created from the specified OLE IFontDisp object.</summary>
      <param name="font">The IFontDisp to create a <see cref="T:System.Drawing.Font" /> from.</param>
      <returns>The <see cref="T:System.Drawing.Font" /> created from the specified IFontDisp, <see cref="P:System.Windows.Forms.Control.DefaultFont" /> if the font could not be created, or <see langword="null" /> if <paramref name="font" /> is <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetIFontDispFromFont(System.Drawing.Font)">
      <summary>Returns an OLE IFontDisp object created from the specified <see cref="T:System.Drawing.Font" /> object.</summary>
      <param name="font">The font to create an IFontDisp object from.</param>
      <exception cref="T:System.ArgumentException">The <see cref="P:System.Drawing.Font.Unit" /> property value is not <see cref="F:System.Drawing.GraphicsUnit.Point" />.</exception>
      <returns>The IFontDisp object created from the specified font or <see langword="null" /> if <paramref name="font" /> is <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetIFontFromFont(System.Drawing.Font)">
      <summary>Returns an OLE IFont object created from the specified <see cref="T:System.Drawing.Font" /> object.</summary>
      <param name="font">The font to create an IFont object from.</param>
      <exception cref="T:System.ArgumentException">The <see cref="P:System.Drawing.Font.Unit" /> property value is not <see cref="F:System.Drawing.GraphicsUnit.Point" />.</exception>
      <returns>The IFont object created from the specified font, or <see langword="null" /> if <paramref name="font" /> is <see langword="null" /> or the IFont could not be created.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetIPictureDispFromPicture(System.Drawing.Image)">
      <summary>Returns an OLE <see langword="IPictureDisp" /> object corresponding to the specified <see cref="T:System.Drawing.Image" />.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to convert.</param>
      <returns>An <see cref="T:System.Object" /> representing the OLE <see langword="IPictureDisp" /> object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetIPictureFromCursor(System.Windows.Forms.Cursor)">
      <summary>Returns an OLE <see langword="IPicture" /> object corresponding to the specified <see cref="T:System.Windows.Forms.Cursor" />.</summary>
      <param name="cursor">A <see cref="T:System.Windows.Forms.Cursor" />, which is an image that represents the Windows mouse pointer.</param>
      <returns>An <see cref="T:System.Object" /> representing the OLE <see langword="IPicture" /> object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetIPictureFromPicture(System.Drawing.Image)">
      <summary>Returns an OLE <see langword="IPicture" /> object corresponding to the specified <see cref="T:System.Drawing.Image" />.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to convert.</param>
      <returns>An <see cref="T:System.Object" /> representing the OLE <see langword="IPicture" /> object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetOADateFromTime(System.DateTime)">
      <summary>Returns an OLE Automation date that corresponds to the specified <see cref="T:System.DateTime" /> structure.</summary>
      <param name="time">The <see cref="T:System.DateTime" /> structure to translate.</param>
      <exception cref="T:System.OverflowException">The value of this instance cannot be represented as an OLE Automation Date.</exception>
      <returns>A double-precision floating-point number that contains an OLE Automation date equivalent to specified <paramref name="time" /> value.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetOcx">
      <summary>Retrieves a reference to the underlying ActiveX control.</summary>
      <returns>An object that represents the ActiveX control.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetOleColorFromColor(System.Drawing.Color)">
      <summary>Returns an OLE color value that corresponds to the specified <see cref="T:System.Drawing.Color" /> structure.</summary>
      <param name="color">The <see cref="T:System.Drawing.Color" /> structure to translate.</param>
      <returns>The OLE color value that represents the translated <see cref="T:System.Drawing.Color" /> structure.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetPictureFromIPicture(System.Object)">
      <summary>Returns an <see cref="T:System.Drawing.Image" /> corresponding to the specified OLE <see langword="IPicture" /> object.</summary>
      <param name="picture">The <see langword="IPicture" /> to convert.</param>
      <returns>An <see cref="T:System.Drawing.Image" /> representing the <see langword="IPicture" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetPictureFromIPictureDisp(System.Object)">
      <summary>Returns an <see cref="T:System.Drawing.Image" /> corresponding to the specified OLE <see langword="IPictureDisp" /> object.</summary>
      <param name="picture">The <see langword="IPictureDisp" /> to convert.</param>
      <returns>An <see cref="T:System.Drawing.Image" /> representing the <see langword="IPictureDisp" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Called by the system to retrieve the current bounds of the ActiveX control.</summary>
      <param name="bounds">The original bounds of the ActiveX control.</param>
      <param name="factor">A scaling factor.</param>
      <param name="specified">A <see cref="T:System.Windows.Forms.BoundsSpecified" /> value.</param>
      <returns>The unmodified <paramref name="bounds" /> value.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.GetTimeFromOADate(System.Double)">
      <summary>Returns a <see cref="T:System.DateTime" /> structure that corresponds to the specified OLE Automation date.</summary>
      <param name="date">The OLE Automate date to translate.</param>
      <exception cref="T:System.ArgumentException">The date is not a valid OLE Automation Date value.</exception>
      <returns>A <see cref="T:System.DateTime" /> that represents the same date and time as <paramref name="date" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.HasPropertyPages">
      <summary>Determines if the ActiveX control has a property page.</summary>
      <returns>
        <see langword="true" /> if the ActiveX control has a property page; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.InvokeEditMode">
      <summary>Attempts to activate the editing mode of the hosted control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.IsInputChar(System.Char)">
      <summary>Determines if a character is an input character that the ActiveX control recognizes.</summary>
      <param name="charCode">The character to test.</param>
      <returns>
        <see langword="true" /> if the character should be sent directly to the ActiveX control and not preprocessed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.MakeDirty">
      <summary>Announces to the component change service that the <see cref="T:System.Windows.Forms.AxHost" /> has changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.OnForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ForeColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.OnInPlaceActive">
      <summary>Called when the control transitions to the in-place active state.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.PreProcessMessage(System.Windows.Forms.Message@)">
      <summary>Preprocesses keyboard or input messages within the message loop before they are dispatched.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the message to process. The possible values are WM_KEYDOWN, WM_SYSKEYDOWN, WM_CHAR, and WM_SYSCHAR.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.PropsValid">
      <summary>Returns a value that indicates whether the hosted control is in a state in which its properties can be accessed.</summary>
      <returns>
        <see langword="true" /> if the properties of the hosted control can be accessed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.RaiseOnMouseDown(System.Int16,System.Int16,System.Int32,System.Int32)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseDown" /> event using the specified 32-bit signed integers.</summary>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="shift">Not used.</param>
      <param name="x">The x-coordinate of a mouse click, in pixels.</param>
      <param name="y">The y-coordinate of a mouse click, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.RaiseOnMouseDown(System.Int16,System.Int16,System.Single,System.Single)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseDown" /> event using the specified single-precision floating-point numbers.</summary>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="shift">Not used.</param>
      <param name="x">The x-coordinate of a mouse click, in pixels.</param>
      <param name="y">The y-coordinate of a mouse click, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.RaiseOnMouseDown(System.Object,System.Object,System.Object,System.Object)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseDown" /> event using the specified objects.</summary>
      <param name="o1">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="o2">Not used.</param>
      <param name="o3">The x-coordinate of a mouse click, in pixels.</param>
      <param name="o4">The y-coordinate of a mouse click, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.RaiseOnMouseMove(System.Int16,System.Int16,System.Int32,System.Int32)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseMove" /> event using the specified 32-bit signed integers.</summary>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="shift">Not used.</param>
      <param name="x">The x-coordinate of a mouse click, in pixels.</param>
      <param name="y">The y-coordinate of a mouse click, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.RaiseOnMouseMove(System.Int16,System.Int16,System.Single,System.Single)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseMove" /> event using the specified single-precision floating-point numbers.</summary>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="shift">Not used.</param>
      <param name="x">The x-coordinate of a mouse click, in pixels.</param>
      <param name="y">The y-coordinate of a mouse click, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.RaiseOnMouseMove(System.Object,System.Object,System.Object,System.Object)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseMove" /> event using the specified objects.</summary>
      <param name="o1">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="o2">Not used.</param>
      <param name="o3">The x-coordinate of a mouse click, in pixels.</param>
      <param name="o4">The y-coordinate of a mouse click, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.RaiseOnMouseUp(System.Int16,System.Int16,System.Int32,System.Int32)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseUp" /> event using the specified 32-bit signed integers.</summary>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="shift">Not used.</param>
      <param name="x">The x-coordinate of a mouse click, in pixels.</param>
      <param name="y">The y-coordinate of a mouse click, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.RaiseOnMouseUp(System.Int16,System.Int16,System.Single,System.Single)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseUp" /> event using the specified single-precision floating-point numbers.</summary>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="shift">Not used.</param>
      <param name="x">The x-coordinate of a mouse click, in pixels.</param>
      <param name="y">The y-coordinate of a mouse click, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.RaiseOnMouseUp(System.Object,System.Object,System.Object,System.Object)">
      <summary>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseUp" /> event using the specified objects.</summary>
      <param name="o1">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="o2">Not used.</param>
      <param name="o3">The x-coordinate of a mouse click, in pixels.</param>
      <param name="o4">The y-coordinate of a mouse click, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.SetAboutBoxDelegate(System.Windows.Forms.AxHost.AboutBoxDelegate)">
      <summary>Calls the <see cref="M:System.Windows.Forms.AxHost.ShowAboutBox" /> method to display the ActiveX control's About dialog box.</summary>
      <param name="d">The <see cref="T:System.Windows.Forms.AxHost.AboutBoxDelegate" /> to call.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Performs the work of setting the specified bounds of this control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.SetVisibleCore(System.Boolean)">
      <summary>Sets the control to the specified visible state.</summary>
      <param name="value">
        <see langword="true" /> to make the control visible; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.ShowAboutBox">
      <summary>Displays the ActiveX control's About dialog box.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.ShowPropertyPages">
      <summary>Displays the property pages associated with the ActiveX control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.ShowPropertyPages(System.Windows.Forms.Control)">
      <summary>Displays the property pages associated with the ActiveX control assigned to the specified parent control.</summary>
      <param name="control">The parent <see cref="T:System.Windows.Forms.Control" /> of the ActiveX control.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetAttributes">
      <summary>Returns a collection of type <see cref="T:System.Attribute" /> for the current object.</summary>
      <returns>An <see cref="T:System.ComponentModel.AttributeCollection" /> with the attributes for the current object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetClassName">
      <summary>Returns the class name of the current object.</summary>
      <returns>Returns <see langword="null" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetComponentName">
      <summary>Returns the name of the current object.</summary>
      <returns>Returns <see langword="null" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetConverter">
      <summary>Returns a type converter for the current object.</summary>
      <returns>Returns <see langword="null" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetDefaultEvent">
      <summary>Returns the default event for the current object.</summary>
      <returns>An <see cref="T:System.ComponentModel.EventDescriptor" /> that represents the default event for the current object, or <see langword="null" /> if the object does not have events.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetDefaultProperty">
      <summary>Returns the default property for the current object.</summary>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the default property for the current object, or <see langword="null" /> if the object does not have properties.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetEditor(System.Type)">
      <summary>Returns an editor of the specified type for the current object.</summary>
      <param name="editorBaseType">A <see cref="T:System.Type" /> that represents the editor for the current object.</param>
      <returns>An object of the specified type that is the editor for the current object, or <see langword="null" /> if the editor cannot be found.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetEvents">
      <summary>Returns the events for the current object.</summary>
      <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the events for the current object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetEvents(System.Attribute[])">
      <summary>Returns the events for the current object using the specified attribute array as a filter.</summary>
      <param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
      <returns>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the events for the <see cref="T:System.Windows.Forms.AxHost" /> that match the given set of attributes.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetProperties">
      <summary>Returns the properties for the current object.</summary>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the events for the current object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetProperties(System.Attribute[])">
      <summary>Returns the properties for the current object using the specified attribute array as a filter.</summary>
      <param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the events for the current <see cref="T:System.Windows.Forms.AxHost" /> that match the given set of attributes.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetPropertyOwner(System.ComponentModel.PropertyDescriptor)">
      <summary>Returns the object that owns the specified value.</summary>
      <param name="pd">Not used.</param>
      <returns>The current object.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.AxHost.BackColor">
      <summary>This member is not meaningful for this control.</summary>
      <returns>A Color that represents the background color of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.BackgroundImage">
      <summary>This property is not relevant for this class.</summary>
      <returns>The background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.BackgroundImageLayout">
      <summary>This property is not relevant for this class.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageLayout" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.ContainingControl">
      <summary>Gets or sets the control containing the ActiveX control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ContainerControl" /> that represents the control containing the ActiveX control.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.Cursor">
      <summary>This property is not relevant for this class.</summary>
      <returns>The foreground color of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.EditMode">
      <summary>Returns a value that indicates whether the hosted control is in edit mode.</summary>
      <returns>
        <see langword="true" /> if the hosted control is in edit mode; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.Enabled">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Boolean" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.Font">
      <summary>This property is not relevant for this class.</summary>
      <returns>The font of the text displayed by the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.ForeColor">
      <summary>This property is not relevant for this class.</summary>
      <returns>The foreground color of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.HasAboutBox">
      <summary>Gets a value indicating whether the ActiveX control has an About dialog box.</summary>
      <returns>
        <see langword="true" /> if the ActiveX control has an About dialog box; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.ImeMode">
      <summary>This property is not relevant for this class.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImeMode" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.OcxState">
      <summary>Gets or sets the persisted state of the ActiveX control.</summary>
      <exception cref="T:System.Exception">The ActiveX control is already loaded.</exception>
      <returns>A <see cref="T:System.Windows.Forms.AxHost.State" /> that represents the persisted state of the ActiveX control.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.RightToLeft">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Boolean" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.Site">
      <summary>Gets or sets the site of the control.</summary>
      <returns>The <see cref="T:System.ComponentModel.ISite" /> associated with the Control, if any.</returns>
    </member>
    <member name="P:System.Windows.Forms.AxHost.Text">
      <summary>This property is not relevant for this class.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="T:System.Windows.Forms.AxHost.AboutBoxDelegate">
      <summary>Represents the method that will display an ActiveX control's About dialog box.</summary>
    </member>
    <member name="T:System.Windows.Forms.AxHost.ActiveXInvokeKind">
      <summary>Specifies the type of member that referenced the ActiveX control while it was in an invalid state.</summary>
    </member>
    <member name="F:System.Windows.Forms.AxHost.ActiveXInvokeKind.MethodInvoke">
      <summary>A method referenced the ActiveX control.</summary>
    </member>
    <member name="F:System.Windows.Forms.AxHost.ActiveXInvokeKind.PropertyGet">
      <summary>The get accessor of a property referenced the ActiveX control.</summary>
    </member>
    <member name="F:System.Windows.Forms.AxHost.ActiveXInvokeKind.PropertySet">
      <summary>The set accessor of a property referenced the ActiveX control.</summary>
    </member>
    <member name="T:System.Windows.Forms.AxHost.AxComponentEditor">
      <summary>Provides an editor that uses a modal dialog box to display a property page for an ActiveX control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.AxComponentEditor.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost.AxComponentEditor" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.AxComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Windows.Forms.IWin32Window)">
      <summary>Creates an editor window that allows the user to edit the specified component.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information.</param>
      <param name="obj">The component to edit.</param>
      <param name="parent">An <see cref="T:System.Windows.Forms.IWin32Window" /> that the component belongs to.</param>
      <returns>
        <see langword="true" /> if the component was changed during editing; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.AxHost.ClsidAttribute">
      <summary>Specifies the CLSID of an ActiveX control hosted by an <see cref="T:System.Windows.Forms.AxHost" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.ClsidAttribute.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost.ClsidAttribute" /> class.</summary>
      <param name="clsid">The CLSID of the ActiveX control.</param>
    </member>
    <member name="P:System.Windows.Forms.AxHost.ClsidAttribute.Value">
      <summary>The CLSID of the ActiveX control.</summary>
      <returns>The CLSID of the ActiveX control.</returns>
    </member>
    <member name="T:System.Windows.Forms.AxHost.ConnectionPointCookie">
      <summary>Connects an ActiveX control to a client that handles the control's events.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.ConnectionPointCookie.#ctor(System.Object,System.Object,System.Type)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost.ConnectionPointCookie" /> class.</summary>
      <param name="source">A connectable object that contains connection points.</param>
      <param name="sink">The client's sink which receives outgoing calls from the connection point.</param>
      <param name="eventInterface">The outgoing interface whose connection point object is being requested.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="source" /> does not implement <paramref name="eventInterface" />.</exception>
      <exception cref="T:System.InvalidCastException">
        <paramref name="sink" /> does not implement <paramref name="eventInterface" />.  
  
 -or-  
  
 <paramref name="source" /> does not implement <see cref="T:System.Runtime.InteropServices.ComTypes.IConnectionPointContainer" />.</exception>
      <exception cref="T:System.InvalidOperationException">The connection point has already reached its limit of connections and cannot accept any more.</exception>
    </member>
    <member name="M:System.Windows.Forms.AxHost.ConnectionPointCookie.Disconnect">
      <summary>Disconnects the ActiveX control from the client.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.ConnectionPointCookie.Finalize">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.AxHost.ConnectionPointCookie" /> class.</summary>
    </member>
    <member name="T:System.Windows.Forms.AxHost.InvalidActiveXStateException">
      <summary>The exception that is thrown when the ActiveX control is referenced while in an invalid state.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.InvalidActiveXStateException.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost.InvalidActiveXStateException" /> class without specifying information about the member that referenced the ActiveX control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.InvalidActiveXStateException.#ctor(System.String,System.Windows.Forms.AxHost.ActiveXInvokeKind)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost.InvalidActiveXStateException" /> class and indicates the name of the member that referenced the ActiveX control and the kind of reference it made.</summary>
      <param name="name">The name of the member that referenced the ActiveX control while it was in an invalid state.</param>
      <param name="kind">One of the <see cref="T:System.Windows.Forms.AxHost.ActiveXInvokeKind" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.InvalidActiveXStateException.ToString">
      <summary>Creates and returns a string representation of the current exception.</summary>
      <returns>A string representation of the current exception.</returns>
    </member>
    <member name="T:System.Windows.Forms.AxHost.State">
      <summary>Encapsulates the persisted state of an ActiveX control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.State.#ctor(System.IO.Stream,System.Int32,System.Boolean,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost.State" /> class for serializing a state.</summary>
      <param name="ms">A <see cref="T:System.IO.Stream" /> in which the state is stored.</param>
      <param name="storageType">An <see cref="T:System.Int32" /> indicating the storage type.</param>
      <param name="manualUpdate">
        <see langword="true" /> for manual updates; otherwise, <see langword="false" />.</param>
      <param name="licKey">The license key of the control.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.State.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost.State" /> class for deserializing a state.</summary>
      <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> value.</param>
      <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> value.</param>
    </member>
    <member name="M:System.Windows.Forms.AxHost.State.Dispose">
      <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.State.Dispose(System.Boolean)">
      <param name="disposing" />
    </member>
    <member name="M:System.Windows.Forms.AxHost.State.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
      <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
      <param name="context">The destination for this serialization.</param>
      <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
    </member>
    <member name="T:System.Windows.Forms.AxHost.StateConverter">
      <summary>Converts <see cref="T:System.Windows.Forms.AxHost.State" /> objects from one data type to another.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.StateConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost.StateConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.StateConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns whether the <xref data-throw-if-not-resolved="true" uid="System.Windows.Forms.AxHost.StateConverter"></xref> can convert an object of the specified type to an <xref data-throw-if-not-resolved="true" uid="System.Windows.Forms.AxHost.State"></xref>, using the specified context.</summary>
      <param name="context">An <xref data-throw-if-not-resolved="true" uid="System.ComponentModel.ITypeDescriptorContext"></xref> that provides a format context.</param>
      <param name="sourceType">A <xref data-throw-if-not-resolved="true" uid="System.Type"></xref> that represents the type from which to convert.</param>
      <returns>
        <code data-dev-comment-type="langword">true</code> if the <xref data-throw-if-not-resolved="true" uid="System.Windows.Forms.AxHost.StateConverter"></xref> can perform the conversion; otherwise, <code data-dev-comment-type="langword">false</code>.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.StateConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns whether the <xref data-throw-if-not-resolved="true" uid="System.Windows.Forms.AxHost.StateConverter"></xref> can convert an object to the given destination type using the context.</summary>
      <param name="context">An <xref data-throw-if-not-resolved="true" uid="System.ComponentModel.ITypeDescriptorContext"></xref> that provides a format context.</param>
      <param name="destinationType">A <xref data-throw-if-not-resolved="true" uid="System.Type"></xref> that represents the type from which to convert.</param>
      <returns>
        <code data-dev-comment-type="langword">true</code> if the <xref data-throw-if-not-resolved="true" uid="System.Windows.Forms.AxHost.StateConverter"></xref> can perform the conversion; otherwise, <code data-dev-comment-type="langword">false</code>.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.StateConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>This member overrides <xref data-throw-if-not-resolved="true" uid="System.ComponentModel.TypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)"></xref>.</summary>
      <param name="context">An <xref data-throw-if-not-resolved="true" uid="System.ComponentModel.ITypeDescriptorContext"></xref> that provides a format context.</param>
      <param name="culture">The <xref data-throw-if-not-resolved="true" uid="System.Globalization.CultureInfo"></xref> to use as the current culture.</param>
      <param name="value">The <xref data-throw-if-not-resolved="true" uid="System.Object"></xref> to convert.</param>
      <returns>An <xref data-throw-if-not-resolved="true" uid="System.Object"></xref> that represents the converted value.</returns>
    </member>
    <member name="M:System.Windows.Forms.AxHost.StateConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>This member overrides <xref data-throw-if-not-resolved="true" uid="System.ComponentModel.TypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)"></xref>.</summary>
      <param name="context">An <xref data-throw-if-not-resolved="true" uid="System.ComponentModel.ITypeDescriptorContext"></xref> that provides a format context.</param>
      <param name="culture">A <xref data-throw-if-not-resolved="true" uid="System.Globalization.CultureInfo"></xref>. If <code data-dev-comment-type="langword">null</code> is passed, the current culture is assumed.</param>
      <param name="value">The <xref data-throw-if-not-resolved="true" uid="System.Object"></xref> to convert.</param>
      <param name="destinationType">The <xref data-throw-if-not-resolved="true" uid="System.Type"></xref> to convert the value parameter to.</param>
      <returns>An <xref data-throw-if-not-resolved="true" uid="System.Object"></xref> that represents the converted value.</returns>
    </member>
    <member name="T:System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute">
      <summary>Specifies a date and time associated with the type library of an ActiveX control hosted by an <see cref="T:System.Windows.Forms.AxHost" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute" /> class.</summary>
      <param name="timestamp">A <see cref="T:System.DateTime" /> value representing the date and time to associate with the type library.</param>
    </member>
    <member name="P:System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute.Value">
      <summary>The date and time to associate with the type library.</summary>
      <returns>A <see cref="T:System.DateTime" /> value representing the date and time to associate with the type library.</returns>
    </member>
    <member name="T:System.Windows.Forms.BaseCollection">
      <summary>Provides the base functionality for creating data-related collections in the <see cref="N:System.Windows.Forms" /> namespace.</summary>
    </member>
    <member name="M:System.Windows.Forms.BaseCollection.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BaseCollection" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.BaseCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies all the elements of the current one-dimensional <see cref="T:System.Array" /> to the specified one-dimensional <see cref="T:System.Array" /> starting at the specified destination <see cref="T:System.Array" /> index.</summary>
      <param name="ar">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the current <see langword="Array" />.</param>
      <param name="index">The zero-based relative index in <paramref name="ar" /> at which copying begins.</param>
    </member>
    <member name="M:System.Windows.Forms.BaseCollection.GetEnumerator">
      <summary>Gets the object that enables iterating through the members of the collection.</summary>
      <returns>An object that implements the <see cref="T:System.Collections.IEnumerator" /> interface.</returns>
    </member>
    <member name="P:System.Windows.Forms.BaseCollection.Count">
      <summary>Gets the total number of elements in the collection.</summary>
      <returns>The total number of elements in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.BaseCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>This property is always <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BaseCollection.IsSynchronized">
      <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection" /> is synchronized.</summary>
      <returns>This property always returns <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BaseCollection.List">
      <summary>Gets the list of elements contained in the <see cref="T:System.Windows.Forms.BaseCollection" /> instance.</summary>
      <returns>An <see cref="T:System.Collections.ArrayList" /> containing the elements of the collection. This property returns <see langword="null" /> unless overridden in a derived class.</returns>
    </member>
    <member name="P:System.Windows.Forms.BaseCollection.SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.BaseCollection" />.</summary>
      <returns>An object that can be used to synchronize the <see cref="T:System.Windows.Forms.BaseCollection" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.BatteryChargeStatus">
      <summary>Defines identifiers that indicate the current battery charge level or charging state information.</summary>
    </member>
    <member name="F:System.Windows.Forms.BatteryChargeStatus.Charging">
      <summary>Indicates a battery is charging.</summary>
    </member>
    <member name="F:System.Windows.Forms.BatteryChargeStatus.Critical">
      <summary>Indicates a critically low level of battery charge.</summary>
    </member>
    <member name="F:System.Windows.Forms.BatteryChargeStatus.High">
      <summary>Indicates a high level of battery charge.</summary>
    </member>
    <member name="F:System.Windows.Forms.BatteryChargeStatus.Low">
      <summary>Indicates a low level of battery charge.</summary>
    </member>
    <member name="F:System.Windows.Forms.BatteryChargeStatus.NoSystemBattery">
      <summary>Indicates that no battery is present.</summary>
    </member>
    <member name="F:System.Windows.Forms.BatteryChargeStatus.Unknown">
      <summary>Indicates an unknown battery condition.</summary>
    </member>
    <member name="T:System.Windows.Forms.BindableComponent">
      <summary>Base class for components that provide properties that can be data bound with the Windows Forms Designer.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindableComponent.BindingContextChanged">
      <summary>Occurs when the binding context has changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindableComponent.#ctor" />
    <member name="M:System.Windows.Forms.BindableComponent.OnBindingContextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindableComponent.BindingContextChanged" /> event.</summary>
      <param name="e" />
    </member>
    <member name="P:System.Windows.Forms.BindableComponent.BindingContext">
      <summary>Gets or sets the collection of currency managers for the <see cref="T:System.Windows.Forms.IBindableComponent" />.</summary>
      <returns>The collection of <see cref="T:System.Windows.Forms.BindingManagerBase" /> objects for this <see cref="T:System.Windows.Forms.IBindableComponent" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindableComponent.DataBindings">
      <summary>Gets the collection of data-binding objects for this <see cref="T:System.Windows.Forms.IBindableComponent" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ControlBindingsCollection" /> for this <see cref="T:System.Windows.Forms.IBindableComponent" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.Binding">
      <summary>Represents the simple binding between the property value of an object and the property value of a control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Binding.BindingComplete">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Binding.FormattingEnabled" /> property is set to <see langword="true" /> and a binding operation is complete, such as when data is pushed from the control to the data source or vice versa.</summary>
    </member>
    <member name="E:System.Windows.Forms.Binding.Format">
      <summary>Occurs when the property of a control is bound to a data value.</summary>
    </member>
    <member name="E:System.Windows.Forms.Binding.Parse">
      <summary>Occurs when the value of a data-bound control changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Binding" /> class that simple-binds the indicated control property to the specified data member of the data source.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> that represents the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <exception cref="T:System.Exception">
        <paramref name="propertyName" /> is neither a valid property of a control nor an empty string ("").</exception>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control.</exception>
    </member>
    <member name="M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Binding" /> class that binds the indicated control property to the specified data member of the data source, and optionally enables formatting to be applied.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> that represents the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control.  
  
 -or-  
  
 The property given is a read-only property.</exception>
      <exception cref="T:System.Exception">Formatting is disabled and <paramref name="propertyName" /> is neither a valid property of a control nor an empty string ("").</exception>
    </member>
    <member name="M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Binding" /> class that binds the specified control property to the specified data member of the specified data source. Optionally enables formatting and propagates values to the data source based on the specified update setting.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> representing the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <param name="dataSourceUpdateMode">One of the <see cref="T:System.Windows.Forms.DataSourceUpdateMode" /> values.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control.  
  
 -or-  
  
 The data source or data member or control property specified are associated with another binding in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Binding" /> class that binds the indicated control property to the specified data member of the specified data source. Optionally enables formatting, propagates values to the data source based on the specified update setting, and sets the property to the specified value when a <see cref="T:System.DBNull" /> is returned from the data source.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> representing the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <param name="dataSourceUpdateMode">One of the <see cref="T:System.Windows.Forms.DataSourceUpdateMode" /> values.</param>
      <param name="nullValue">The <see cref="T:System.Object" /> to be applied to the bound control property if the data source value is <see cref="T:System.DBNull" />.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control.  
  
 -or-  
  
 The data source or data member or control property specified are associated with another binding in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Binding" /> class that binds the specified control property to the specified data member of the specified data source. Optionally enables formatting with the specified format string; propagates values to the data source based on the specified update setting; and sets the property to the specified value when a <see cref="T:System.DBNull" /> is returned from the data source.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> representing the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <param name="dataSourceUpdateMode">One of the <see cref="T:System.Windows.Forms.DataSourceUpdateMode" /> values.</param>
      <param name="nullValue">The <see cref="T:System.Object" /> to be applied to the bound control property if the data source value is <see cref="T:System.DBNull" />.</param>
      <param name="formatString">One or more format specifier characters that indicate how a value is to be displayed.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control.  
  
 -or-  
  
 The data source or data member or control property specified are associated with another binding in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.Binding.#ctor(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object,System.String,System.IFormatProvider)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Binding" /> class with the specified control property to the specified data member of the specified data source. Optionally enables formatting with the specified format string; propagates values to the data source based on the specified update setting; enables formatting with the specified format string; sets the property to the specified value when a <see cref="T:System.DBNull" /> is returned from the data source; and sets the specified format provider.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> representing the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <param name="dataSourceUpdateMode">One of the <see cref="T:System.Windows.Forms.DataSourceUpdateMode" /> values.</param>
      <param name="nullValue">The <see cref="T:System.Object" /> to be applied to the bound control property if the data source value is <see cref="T:System.DBNull" />.</param>
      <param name="formatString">One or more format specifier characters that indicate how a value is to be displayed.</param>
      <param name="formatInfo">An implementation of <see cref="T:System.IFormatProvider" /> to override default formatting behavior.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control.  
  
 -or-  
  
 The data source or data member or control property specified are associated with another binding in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.Binding.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Binding.BindingComplete" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.BindingCompleteEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Binding.OnFormat(System.Windows.Forms.ConvertEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Binding.Format" /> event.</summary>
      <param name="cevent">A <see cref="T:System.Windows.Forms.ConvertEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Binding.OnParse(System.Windows.Forms.ConvertEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Binding.Parse" /> event.</summary>
      <param name="cevent">A <see cref="T:System.Windows.Forms.ConvertEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Binding.ReadValue">
      <summary>Sets the control property to the value read from the data source.</summary>
    </member>
    <member name="M:System.Windows.Forms.Binding.WriteValue">
      <summary>Reads the current value from the control property and writes it to the data source.</summary>
    </member>
    <member name="P:System.Windows.Forms.Binding.BindableComponent">
      <summary>Gets the control the <see cref="T:System.Windows.Forms.Binding" /> is associated with.</summary>
      <returns>The <see cref="T:System.Windows.Forms.IBindableComponent" /> the <see cref="T:System.Windows.Forms.Binding" /> is associated with.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.BindingManagerBase">
      <summary>Gets the <see cref="T:System.Windows.Forms.BindingManagerBase" /> for this <see cref="T:System.Windows.Forms.Binding" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.BindingManagerBase" /> that manages this <see cref="T:System.Windows.Forms.Binding" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.BindingMemberInfo">
      <summary>Gets an object that contains information about this binding based on the <paramref name="dataMember" /> parameter in the <see cref="Overload:System.Windows.Forms.Binding.#ctor" /> constructor.</summary>
      <returns>A <see cref="T:System.Windows.Forms.BindingMemberInfo" /> that contains information about this <see cref="T:System.Windows.Forms.Binding" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.Control">
      <summary>Gets the control that the binding belongs to.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that the binding belongs to.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.ControlUpdateMode">
      <summary>Gets or sets when changes to the data source are propagated to the bound control property.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ControlUpdateMode" /> values. The default is <see cref="F:System.Windows.Forms.ControlUpdateMode.OnPropertyChanged" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.DataSource">
      <summary>Gets the data source for this binding.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the data source.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.DataSourceNullValue">
      <summary>Gets or sets the value to be stored in the data source if the control value is <see langword="null" /> or empty.</summary>
      <returns>The <see cref="T:System.Object" /> to be stored in the data source when the control property is empty or <see langword="null" />. The default is <see cref="T:System.DBNull" /> for value types and <see langword="null" /> for non-value types.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.DataSourceUpdateMode">
      <summary>Gets or sets a value that indicates when changes to the bound control property are propagated to the data source.</summary>
      <returns>A value that indicates when changes are propagated. The default is <see cref="F:System.Windows.Forms.DataSourceUpdateMode.OnValidation" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.FormatInfo">
      <summary>Gets or sets the <see cref="T:System.IFormatProvider" /> that provides custom formatting behavior.</summary>
      <returns>The <see cref="T:System.IFormatProvider" /> implementation that provides custom formatting behavior.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.FormatString">
      <summary>Gets or sets the format specifier characters that indicate how a value is to be displayed.</summary>
      <returns>The string of format specifier characters that indicate how a value is to be displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.FormattingEnabled">
      <summary>Gets or sets a value indicating whether type conversion and formatting is applied to the control property data.</summary>
      <returns>
        <see langword="true" /> if type conversion and formatting of control property data is enabled; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.IsBinding">
      <summary>Gets a value indicating whether the binding is active.</summary>
      <returns>
        <see langword="true" /> if the binding is active; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.NullValue">
      <summary>Gets or sets the <see cref="T:System.Object" /> to be set as the control property when the data source contains a <see cref="T:System.DBNull" /> value.</summary>
      <returns>The <see cref="T:System.Object" /> to be set as the control property when the data source contains a <see cref="T:System.DBNull" /> value. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Binding.PropertyName">
      <summary>Gets the name of the control's data-bound property.</summary>
      <returns>The name of a control property to bind to.</returns>
    </member>
    <member name="T:System.Windows.Forms.BindingCompleteContext">
      <summary>Specifies the direction of the binding operation.</summary>
    </member>
    <member name="F:System.Windows.Forms.BindingCompleteContext.ControlUpdate">
      <summary>An indication that the control property value is being updated from the data source.</summary>
    </member>
    <member name="F:System.Windows.Forms.BindingCompleteContext.DataSourceUpdate">
      <summary>An indication that the data source value is being updated from the control property.</summary>
    </member>
    <member name="T:System.Windows.Forms.BindingCompleteEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Binding.BindingComplete" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingCompleteEventArgs.#ctor(System.Windows.Forms.Binding,System.Windows.Forms.BindingCompleteState,System.Windows.Forms.BindingCompleteContext)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingCompleteEventArgs" /> class with the specified binding, error state, and binding context.</summary>
      <param name="binding">The binding associated with this occurrence of a <see cref="E:System.Windows.Forms.Binding.BindingComplete" /> event.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.BindingCompleteState" /> values.</param>
      <param name="context">One of the <see cref="T:System.Windows.Forms.BindingCompleteContext" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingCompleteEventArgs.#ctor(System.Windows.Forms.Binding,System.Windows.Forms.BindingCompleteState,System.Windows.Forms.BindingCompleteContext,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingCompleteEventArgs" /> class with the specified binding, error state and text, and binding context.</summary>
      <param name="binding">The binding associated with this occurrence of a <see cref="E:System.Windows.Forms.Binding.BindingComplete" /> event.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.BindingCompleteState" /> values.</param>
      <param name="context">One of the <see cref="T:System.Windows.Forms.BindingCompleteContext" /> values.</param>
      <param name="errorText">The error text or exception message for errors that occurred during the binding.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingCompleteEventArgs.#ctor(System.Windows.Forms.Binding,System.Windows.Forms.BindingCompleteState,System.Windows.Forms.BindingCompleteContext,System.String,System.Exception)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingCompleteEventArgs" /> class with the specified binding, error state and text, binding context, and exception.</summary>
      <param name="binding">The binding associated with this occurrence of a <see cref="E:System.Windows.Forms.Binding.BindingComplete" /> event.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.BindingCompleteState" /> values.</param>
      <param name="context">One of the <see cref="T:System.Windows.Forms.BindingCompleteContext" /> values.</param>
      <param name="errorText">The error text or exception message for errors that occurred during the binding.</param>
      <param name="exception">The <see cref="T:System.Exception" /> that occurred during the binding.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingCompleteEventArgs.#ctor(System.Windows.Forms.Binding,System.Windows.Forms.BindingCompleteState,System.Windows.Forms.BindingCompleteContext,System.String,System.Exception,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingCompleteEventArgs" /> class with the specified binding, error state and text, binding context, exception, and whether the binding should be cancelled.</summary>
      <param name="binding">The binding associated with this occurrence of a <see cref="E:System.Windows.Forms.Binding.BindingComplete" /> event.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.BindingCompleteState" /> values.</param>
      <param name="context">One of the <see cref="T:System.Windows.Forms.BindingCompleteContext" /> values.</param>
      <param name="errorText">The error text or exception message for errors that occurred during the binding.</param>
      <param name="exception">The <see cref="T:System.Exception" /> that occurred during the binding.</param>
      <param name="cancel">
        <see langword="true" /> to cancel the binding and keep focus on the current control; <see langword="false" /> to allow focus to shift to another control.</param>
    </member>
    <member name="P:System.Windows.Forms.BindingCompleteEventArgs.Binding">
      <summary>Gets the binding associated with this occurrence of a <see cref="E:System.Windows.Forms.Binding.BindingComplete" /> event.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Binding" /> associated with this <see cref="T:System.Windows.Forms.BindingCompleteEventArgs" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteContext">
      <summary>Gets the direction of the binding operation.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.BindingCompleteContext" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteState">
      <summary>Gets the completion state of the binding operation.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.BindingCompleteState" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingCompleteEventArgs.ErrorText">
      <summary>Gets the text description of the error that occurred during the binding operation.</summary>
      <returns>The text description of the error that occurred during the binding operation.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingCompleteEventArgs.Exception">
      <summary>Gets the exception that occurred during the binding operation.</summary>
      <returns>The <see cref="T:System.Exception" /> that occurred during the binding operation.</returns>
    </member>
    <member name="T:System.Windows.Forms.BindingCompleteEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Binding.BindingComplete" /> event in data-binding scenarios.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.BindingCompleteEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.BindingCompleteState">
      <summary>Indicates the result of a completed binding operation.</summary>
    </member>
    <member name="F:System.Windows.Forms.BindingCompleteState.DataError">
      <summary>An indication that the binding operation failed with a data error.</summary>
    </member>
    <member name="F:System.Windows.Forms.BindingCompleteState.Exception">
      <summary>An indication that the binding operation failed with an exception.</summary>
    </member>
    <member name="F:System.Windows.Forms.BindingCompleteState.Success">
      <summary>An indication that the binding operation completed successfully.</summary>
    </member>
    <member name="T:System.Windows.Forms.BindingContext">
      <summary>Manages the collection of <see cref="T:System.Windows.Forms.BindingManagerBase" /> objects for any object that inherits from the <see cref="T:System.Windows.Forms.Control" /> class.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingContext.CollectionChanged">
      <summary>Always raises a <see cref="T:System.NotImplementedException" /> when handled.</summary>
      <exception cref="T:System.NotImplementedException">Occurs in all cases.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingContext" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.Add(System.Object,System.Windows.Forms.BindingManagerBase)">
      <summary>Adds the <see cref="T:System.Windows.Forms.BindingManagerBase" /> associated with a specific data source to the collection.</summary>
      <param name="dataSource">The <see cref="T:System.Object" /> associated with the <see cref="T:System.Windows.Forms.BindingManagerBase" />.</param>
      <param name="listManager">The <see cref="T:System.Windows.Forms.BindingManagerBase" /> to add.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.AddCore(System.Object,System.Windows.Forms.BindingManagerBase)">
      <summary>Adds the <see cref="T:System.Windows.Forms.BindingManagerBase" /> associated with a specific data source to the collection.</summary>
      <param name="dataSource">The object associated with the <see cref="T:System.Windows.Forms.BindingManagerBase" />.</param>
      <param name="listManager">The <see cref="T:System.Windows.Forms.BindingManagerBase" /> to add.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataSource" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="listManager" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.Clear">
      <summary>Clears the collection of any <see cref="T:System.Windows.Forms.BindingManagerBase" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.ClearCore">
      <summary>Clears the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.Contains(System.Object)">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.BindingContext" /> contains the <see cref="T:System.Windows.Forms.BindingManagerBase" /> associated with the specified data source.</summary>
      <param name="dataSource">An <see cref="T:System.Object" /> that represents the data source.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.BindingContext" /> contains the specified <see cref="T:System.Windows.Forms.BindingManagerBase" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.Contains(System.Object,System.String)">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.BindingContext" /> contains the <see cref="T:System.Windows.Forms.BindingManagerBase" /> associated with the specified data source and data member.</summary>
      <param name="dataSource">An <see cref="T:System.Object" /> that represents the data source.</param>
      <param name="dataMember">The information needed to resolve to a specific <see cref="T:System.Windows.Forms.BindingManagerBase" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.BindingContext" /> contains the specified <see cref="T:System.Windows.Forms.BindingManagerBase" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingContext.CollectionChanged" /> event.</summary>
      <param name="ccevent">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.Remove(System.Object)">
      <summary>Deletes the <see cref="T:System.Windows.Forms.BindingManagerBase" /> associated with the specified data source.</summary>
      <param name="dataSource">The data source associated with the <see cref="T:System.Windows.Forms.BindingManagerBase" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.RemoveCore(System.Object)">
      <summary>Removes the <see cref="T:System.Windows.Forms.BindingManagerBase" /> associated with the specified data source.</summary>
      <param name="dataSource">The data source associated with the <see cref="T:System.Windows.Forms.BindingManagerBase" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection into a specified array, starting at the collection index.</summary>
      <param name="ar">An <see cref="T:System.Array" /> to copy into.</param>
      <param name="index">The collection index to begin copying from.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.System#Collections#IEnumerable#GetEnumerator">
      <summary>Gets an enumerator for the collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> for the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingContext.UpdateBinding(System.Windows.Forms.BindingContext,System.Windows.Forms.Binding)">
      <summary>Associates a <see cref="T:System.Windows.Forms.Binding" /> with a new <see cref="T:System.Windows.Forms.BindingContext" />.</summary>
      <param name="newBindingContext">The new <see cref="T:System.Windows.Forms.BindingContext" /> to associate with the <see cref="T:System.Windows.Forms.Binding" />.</param>
      <param name="binding">The <see cref="T:System.Windows.Forms.Binding" /> to associate with the new <see cref="T:System.Windows.Forms.BindingContext" />.</param>
    </member>
    <member name="P:System.Windows.Forms.BindingContext.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingContext.Item(System.Object)">
      <summary>Gets the <see cref="T:System.Windows.Forms.BindingManagerBase" /> that is associated with the specified data source.</summary>
      <param name="dataSource">The data source associated with a particular <see cref="T:System.Windows.Forms.BindingManagerBase" />.</param>
      <returns>A <see cref="T:System.Windows.Forms.BindingManagerBase" /> for the specified data source.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingContext.Item(System.Object,System.String)">
      <summary>Gets a <see cref="T:System.Windows.Forms.BindingManagerBase" /> that is associated with the specified data source and data member.</summary>
      <param name="dataSource">The data source associated with a particular <see cref="T:System.Windows.Forms.BindingManagerBase" />.</param>
      <param name="dataMember">A navigation path containing the information that resolves to a specific <see cref="T:System.Windows.Forms.BindingManagerBase" />.</param>
      <exception cref="T:System.Exception">The specified <paramref name="dataMember" /> does not exist within the data source.</exception>
      <returns>The <see cref="T:System.Windows.Forms.BindingManagerBase" /> for the specified data source and data member.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingContext.System#Collections#ICollection#Count">
      <summary>Gets the total number of <see cref="T:System.Windows.Forms.CurrencyManager" /> objects managed by the <see cref="T:System.Windows.Forms.BindingContext" />.</summary>
      <returns>The number of data sources managed by the <see cref="T:System.Windows.Forms.BindingContext" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingContext.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether the collection is synchronized.</summary>
      <returns>
        <see langword="true" /> if the collection is thread safe; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingContext.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object to use for synchronization (thread safety).</summary>
      <returns>This property is derived from <see cref="T:System.Collections.ICollection" />, and is overridden to always return <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.BindingManagerBase">
      <summary>Manages all <see cref="T:System.Windows.Forms.Binding" /> objects that are bound to the same data source and data member. This class is abstract.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingManagerBase.BindingComplete">
      <summary>Occurs at the completion of a data-binding operation.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingManagerBase.CurrentChanged">
      <summary>Occurs when the currently bound item changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingManagerBase.CurrentItemChanged">
      <summary>Occurs when the state of the currently bound item changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingManagerBase.DataError">
      <summary>Occurs when an <see cref="T:System.Exception" /> is silently handled by the <see cref="T:System.Windows.Forms.BindingManagerBase" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingManagerBase.PositionChanged">
      <summary>Occurs after the value of the <see cref="P:System.Windows.Forms.BindingManagerBase.Position" /> property has changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.BindingManagerBase.onCurrentChangedHandler">
      <summary>Specifies the event handler for the <see cref="E:System.Windows.Forms.BindingManagerBase.CurrentChanged" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.BindingManagerBase.onPositionChangedHandler">
      <summary>Specifies the event handler for the <see cref="E:System.Windows.Forms.BindingManagerBase.PositionChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingManagerBase" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.AddNew">
      <summary>When overridden in a derived class, adds a new item to the underlying list.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.CancelCurrentEdit">
      <summary>When overridden in a derived class, cancels the current edit.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.EndCurrentEdit">
      <summary>When overridden in a derived class, ends the current edit.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.GetItemProperties">
      <summary>When overridden in a derived class, gets the collection of property descriptors for the binding.</summary>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the property descriptors for the binding.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.GetItemProperties(System.Collections.ArrayList,System.Collections.ArrayList)">
      <summary>Gets the collection of property descriptors for the binding using the specified <see cref="T:System.Collections.ArrayList" />.</summary>
      <param name="dataSources">An <see cref="T:System.Collections.ArrayList" /> containing the data sources.</param>
      <param name="listAccessors">An <see cref="T:System.Collections.ArrayList" /> containing the table's bound properties.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the property descriptors for the binding.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.GetItemProperties(System.Type,System.Int32,System.Collections.ArrayList,System.Collections.ArrayList)">
      <summary>Gets the list of properties of the items managed by this <see cref="T:System.Windows.Forms.BindingManagerBase" />.</summary>
      <param name="listType">The <see cref="T:System.Type" /> of the bound list.</param>
      <param name="offset">A counter used to recursively call the method.</param>
      <param name="dataSources">An <see cref="T:System.Collections.ArrayList" /> containing the data sources.</param>
      <param name="listAccessors">An <see cref="T:System.Collections.ArrayList" /> containing the table's bound properties.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the property descriptors for the binding.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.GetListName(System.Collections.ArrayList)">
      <summary>When overridden in a derived class, gets the name of the list supplying the data for the binding.</summary>
      <param name="listAccessors">An <see cref="T:System.Collections.ArrayList" /> containing the table's bound properties.</param>
      <returns>The name of the list supplying the data for the binding.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingManagerBase.BindingComplete" /> event.</summary>
      <param name="args">A <see cref="T:System.Windows.Forms.BindingCompleteEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.OnCurrentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingManagerBase.CurrentChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.OnCurrentItemChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingManagerBase.CurrentItemChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.OnDataError(System.Exception)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingManagerBase.DataError" /> event.</summary>
      <param name="e">An <see cref="T:System.Exception" /> that caused the <see cref="E:System.Windows.Forms.BindingManagerBase.DataError" /> event to occur.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.PullData">
      <summary>Pulls data from the data-bound control into the data source, returning no information.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.PushData">
      <summary>Pushes data from the data source into the data-bound control, returning no information.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.RemoveAt(System.Int32)">
      <summary>When overridden in a derived class, deletes the row at the specified index from the underlying list.</summary>
      <param name="index">The index of the row to delete.</param>
      <exception cref="T:System.IndexOutOfRangeException">There is no row at the specified <paramref name="index" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.ResumeBinding">
      <summary>When overridden in a derived class, resumes data binding.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.SuspendBinding">
      <summary>When overridden in a derived class, suspends data binding.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerBase.UpdateIsBinding">
      <summary>When overridden in a derived class, updates the binding.</summary>
    </member>
    <member name="P:System.Windows.Forms.BindingManagerBase.Bindings">
      <summary>Gets the collection of bindings being managed.</summary>
      <returns>A <see cref="T:System.Windows.Forms.BindingsCollection" /> that contains the <see cref="T:System.Windows.Forms.Binding" /> objects managed by this <see cref="T:System.Windows.Forms.BindingManagerBase" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingManagerBase.Count">
      <summary>When overridden in a derived class, gets the number of rows managed by the <see cref="T:System.Windows.Forms.BindingManagerBase" />.</summary>
      <returns>The number of rows managed by the <see cref="T:System.Windows.Forms.BindingManagerBase" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingManagerBase.Current">
      <summary>When overridden in a derived class, gets the current object.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingManagerBase.IsBindingSuspended">
      <summary>Gets a value indicating whether binding is suspended.</summary>
      <returns>
        <see langword="true" /> if binding is suspended; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingManagerBase.Position">
      <summary>When overridden in a derived class, gets or sets the position in the underlying list that controls bound to this data source point to.</summary>
      <returns>A zero-based index that specifies a position in the underlying list.</returns>
    </member>
    <member name="T:System.Windows.Forms.BindingManagerDataErrorEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.BindingManagerBase.DataError" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingManagerDataErrorEventArgs.#ctor(System.Exception)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingManagerDataErrorEventArgs" /> class.</summary>
      <param name="exception">The <see cref="T:System.Exception" /> that occurred in the binding process that caused the <see cref="E:System.Windows.Forms.BindingManagerBase.DataError" /> event to be raised.</param>
    </member>
    <member name="P:System.Windows.Forms.BindingManagerDataErrorEventArgs.Exception">
      <summary>Gets the <see cref="T:System.Exception" /> caught in the binding process that caused the <see cref="E:System.Windows.Forms.BindingManagerBase.DataError" /> event to be raised.</summary>
      <returns>The <see cref="T:System.Exception" /> that caused the <see cref="E:System.Windows.Forms.BindingManagerBase.DataError" /> event to be raised.</returns>
    </member>
    <member name="T:System.Windows.Forms.BindingManagerDataErrorEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.BindingManagerBase.DataError" /> event of a <see cref="T:System.Windows.Forms.BindingManagerBase" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.BindingManagerDataErrorEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.BindingMemberInfo">
      <summary>Contains information that enables a <see cref="T:System.Windows.Forms.Binding" /> to resolve a data binding to either the property of an object or the property of the current object in a list of objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingMemberInfo.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingMemberInfo" /> class.</summary>
      <param name="dataMember">A navigation path that resolves to either the property of an object or the property of the current object in a list of objects.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingMemberInfo.Equals(System.Object)">
      <summary>Determines whether the specified object is equal to this <see cref="T:System.Windows.Forms.BindingMemberInfo" />.</summary>
      <param name="otherObject">The object to compare for equality.</param>
      <returns>
        <see langword="true" /> if <paramref name="otherObject" /> is a <see cref="T:System.Windows.Forms.BindingMemberInfo" /> and both <see cref="P:System.Windows.Forms.BindingMemberInfo.BindingMember" /> strings are equal; otherwise <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingMemberInfo.Equals(System.Windows.Forms.BindingMemberInfo)">
      <summary>Indicates whether the current object is equal to another object of the same type.</summary>
      <param name="other">An object to compare with this object.</param>
      <returns>
        <see langword="true" /> if the current object is equal to the <paramref name="other" /> parameter; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingMemberInfo.GetHashCode">
      <summary>Returns the hash code for this <see cref="T:System.Windows.Forms.BindingMemberInfo" />.</summary>
      <returns>The hash code for this <see cref="T:System.Windows.Forms.BindingMemberInfo" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingMemberInfo.op_Equality(System.Windows.Forms.BindingMemberInfo,System.Windows.Forms.BindingMemberInfo)">
      <summary>Determines whether two <see cref="T:System.Windows.Forms.BindingMemberInfo" /> objects are equal.</summary>
      <param name="a">The first <see cref="T:System.Windows.Forms.BindingMemberInfo" /> to compare for equality.</param>
      <param name="b">The second <see cref="T:System.Windows.Forms.BindingMemberInfo" /> to compare for equality.</param>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.BindingMemberInfo.BindingMember" /> strings for <paramref name="a" /> and <paramref name="b" /> are equal; otherwise <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingMemberInfo.op_Inequality(System.Windows.Forms.BindingMemberInfo,System.Windows.Forms.BindingMemberInfo)">
      <summary>Determines whether two <see cref="T:System.Windows.Forms.BindingMemberInfo" /> objects are not equal.</summary>
      <param name="a">The first <see cref="T:System.Windows.Forms.BindingMemberInfo" /> to compare for inequality.</param>
      <param name="b">The second <see cref="T:System.Windows.Forms.BindingMemberInfo" /> to compare for inequality.</param>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.BindingMemberInfo.BindingMember" /> strings for <paramref name="a" /> and <paramref name="b" /> are not equal; otherwise <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingMemberInfo.BindingField">
      <summary>Gets the property name of the data-bound object.</summary>
      <returns>The property name of the data-bound object. This can be an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingMemberInfo.BindingMember">
      <summary>Gets the information that is used to specify the property name of the data-bound object.</summary>
      <returns>An empty string (""), a single property name, or a hierarchy of period-delimited property names that resolves to the property name of the final data-bound object.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingMemberInfo.BindingPath">
      <summary>Gets the property name, or the period-delimited hierarchy of property names, that comes before the property name of the data-bound object.</summary>
      <returns>The property name, or the period-delimited hierarchy of property names, that comes before the data-bound object property name.</returns>
    </member>
    <member name="T:System.Windows.Forms.BindingNavigator">
      <summary>Represents the navigation and manipulation user interface (UI) for controls on a form that are bound to data.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingNavigator.RefreshItems">
      <summary>Occurs when the state of the navigational user interface (UI) needs to be refreshed to reflect the current state of the underlying data.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingNavigator" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.#ctor(System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingNavigator" /> class, indicating whether to display the standard navigation user interface (UI).</summary>
      <param name="addStandardItems">
        <see langword="true" /> to show the standard navigational UI; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.#ctor(System.ComponentModel.IContainer)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingNavigator" /> class and adds this new instance to the specified container.</summary>
      <param name="container">The <see cref="T:System.ComponentModel.IContainer" /> to add the new <see cref="T:System.Windows.Forms.BindingNavigator" /> control to.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.#ctor(System.Windows.Forms.BindingSource)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingNavigator" /> class with the specified <see cref="T:System.Windows.Forms.BindingSource" /> as the data source.</summary>
      <param name="bindingSource">The <see cref="T:System.Windows.Forms.BindingSource" /> used as a data source.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.AddStandardItems">
      <summary>Adds the standard set of navigation items to the <see cref="T:System.Windows.Forms.BindingNavigator" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.BeginInit">
      <summary>Disables updates to the <see cref="T:System.Windows.Forms.ToolStripItem" /> controls of the <see cref="T:System.Windows.Forms.BindingNavigator" /> during the component's initialization.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.BindingNavigator" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.EndInit">
      <summary>Enables updates to the <see cref="T:System.Windows.Forms.ToolStripItem" /> controls of the <see cref="T:System.Windows.Forms.BindingNavigator" /> after the component's initialization has concluded.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.OnRefreshItems">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingNavigator.RefreshItems" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.RefreshItemsCore">
      <summary>Refreshes the state of the standard items to reflect the current state of the data.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingNavigator.Validate">
      <summary>Causes form validation to occur and returns whether validation was successful.</summary>
      <returns>
        <see langword="true" /> if validation was successful and focus can shift to the <see cref="T:System.Windows.Forms.BindingNavigator" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.AddNewItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that represents the Add New button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> that represents the Add New button for the <see cref="T:System.Windows.Forms.BindingSource" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.BindingSource">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.BindingSource" /> component that is the source of data.</summary>
      <returns>The <see cref="T:System.Windows.Forms.BindingSource" /> component associated with this <see cref="T:System.Windows.Forms.BindingNavigator" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.CountItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that displays the total number of items in the associated <see cref="T:System.Windows.Forms.BindingSource" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> that displays the total number of items in the associated <see cref="T:System.Windows.Forms.BindingSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.CountItemFormat">
      <summary>Gets or sets a string used to format the information displayed in the <see cref="P:System.Windows.Forms.BindingNavigator.CountItem" /> control.</summary>
      <returns>The format <see cref="T:System.String" /> used to format the item count. The default is the string "of {0}".</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.DeleteItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that is associated with the Delete functionality.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> that represents the Delete button for the <see cref="T:System.Windows.Forms.BindingSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.MoveFirstItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that is associated with the Move First functionality.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> that represents the Move First button for the <see cref="T:System.Windows.Forms.BindingSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.MoveLastItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that is associated with the Move Last functionality.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> that represents the Move Last button for the <see cref="T:System.Windows.Forms.BindingSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.MoveNextItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that is associated with the Move Next functionality.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> that represents the Move Next button for the <see cref="T:System.Windows.Forms.BindingSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.MovePreviousItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that is associated with the Move Previous functionality.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> that represents the Move Previous button for the <see cref="T:System.Windows.Forms.BindingSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingNavigator.PositionItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that displays the current position within the <see cref="T:System.Windows.Forms.BindingSource" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> that displays the current position.</returns>
    </member>
    <member name="T:System.Windows.Forms.BindingsCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.Binding" /> objects for a control.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingsCollection.CollectionChanged">
      <summary>Occurs when the collection has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingsCollection.CollectionChanging">
      <summary>Occurs when the collection is about to change.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.Add(System.Windows.Forms.Binding)">
      <summary>Adds the specified binding to the collection.</summary>
      <param name="binding">The <see cref="T:System.Windows.Forms.Binding" /> to add to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.AddCore(System.Windows.Forms.Binding)">
      <summary>Adds a <see cref="T:System.Windows.Forms.Binding" /> to the collection.</summary>
      <param name="dataBinding">The <see cref="T:System.Windows.Forms.Binding" /> to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="dataBinding" /> argument was <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.Clear">
      <summary>Clears the collection of binding objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.ClearCore">
      <summary>Clears the collection of any members.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingsCollection.CollectionChanged" /> event.</summary>
      <param name="ccevent">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingsCollection.CollectionChanging" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.Remove(System.Windows.Forms.Binding)">
      <summary>Deletes the specified binding from the collection.</summary>
      <param name="binding">The Binding to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.RemoveAt(System.Int32)">
      <summary>Deletes the binding from the collection at the specified index.</summary>
      <param name="index">The index of the <see cref="T:System.Windows.Forms.Binding" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.RemoveCore(System.Windows.Forms.Binding)">
      <summary>Removes the specified <see cref="T:System.Windows.Forms.Binding" /> from the collection.</summary>
      <param name="dataBinding">The <see cref="T:System.Windows.Forms.Binding" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingsCollection.ShouldSerializeMyAll">
      <summary>Gets a value that indicates whether the collection should be serialized.</summary>
      <returns>
        <see langword="true" /> if the collection count is greater than zero; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingsCollection.Count">
      <summary>Gets the total number of bindings in the collection.</summary>
      <returns>The total number of bindings in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingsCollection.Item(System.Int32)">
      <summary>Gets the <see cref="T:System.Windows.Forms.Binding" /> at the specified index.</summary>
      <param name="index">The index of the <see cref="T:System.Windows.Forms.Binding" /> to find.</param>
      <exception cref="T:System.IndexOutOfRangeException">The collection doesn't contain an item at the specified index.</exception>
      <returns>The <see cref="T:System.Windows.Forms.Binding" /> at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingsCollection.List">
      <summary>Gets the bindings in the collection as an object.</summary>
      <returns>An <see cref="T:System.Collections.ArrayList" /> containing all of the collection members.</returns>
    </member>
    <member name="T:System.Windows.Forms.BindingSource">
      <summary>Encapsulates the data source for a form.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.AddingNew">
      <summary>Occurs before an item is added to the underlying list.</summary>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.ComponentModel.AddingNewEventArgs.NewObject" /> is not the same type as the type contained in the list.</exception>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.BindingComplete">
      <summary>Occurs when all the clients have been bound to this <see cref="T:System.Windows.Forms.BindingSource" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.CurrentChanged">
      <summary>Occurs when the currently bound item changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.CurrentItemChanged">
      <summary>Occurs when a property value of the <see cref="P:System.Windows.Forms.BindingSource.Current" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.DataError">
      <summary>Occurs when a currency-related exception is silently handled by the <see cref="T:System.Windows.Forms.BindingSource" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.DataMemberChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.BindingSource.DataMember" /> property value has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.DataSourceChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.BindingSource.DataSource" /> property value has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.ListChanged">
      <summary>Occurs when the underlying list changes or an item in the list changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.PositionChanged">
      <summary>Occurs after the value of the <see cref="P:System.Windows.Forms.BindingSource.Position" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitializeNotification#Initialized">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.BindingSource" /> is initialized.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingSource" /> class to the default property values.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.#ctor(System.ComponentModel.IContainer)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingSource" /> class and adds the <see cref="T:System.Windows.Forms.BindingSource" /> to the specified container.</summary>
      <param name="container">The <see cref="T:System.ComponentModel.IContainer" /> to add the current <see cref="T:System.Windows.Forms.BindingSource" /> to.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.#ctor(System.Object,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.BindingSource" /> class with the specified data source and data member.</summary>
      <param name="dataSource">The data source for the <see cref="T:System.Windows.Forms.BindingSource" />.</param>
      <param name="dataMember">The specific column or list name within the data source to bind to.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.Add(System.Object)">
      <summary>Adds an existing item to the internal list.</summary>
      <param name="value">An <see cref="T:System.Object" /> to be added to the internal list.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="value" /> differs in type from the existing items in the underlying list.</exception>
      <returns>The zero-based index at which <paramref name="value" /> was added to the underlying list represented by the <see cref="P:System.Windows.Forms.BindingSource.List" /> property.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.AddNew">
      <summary>Adds a new item to the underlying list.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.BindingSource.AllowNew" /> property is set to <see langword="false" />.  
  
 -or-  
  
 A public parameterless constructor could not be found for the current item type.</exception>
      <returns>The <see cref="T:System.Object" /> that was created and added to the list.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.ApplySort(System.ComponentModel.ListSortDescriptionCollection)">
      <summary>Sorts the data source with the specified sort descriptions.</summary>
      <param name="sorts">A <see cref="T:System.ComponentModel.ListSortDescriptionCollection" /> containing the sort descriptions to apply to the data source.</param>
      <exception cref="T:System.NotSupportedException">The data source is not an <see cref="T:System.ComponentModel.IBindingListView" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
      <summary>Sorts the data source using the specified property descriptor and sort direction.</summary>
      <param name="property">A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that describes the property by which to sort the data source.</param>
      <param name="sort">A <see cref="T:System.ComponentModel.ListSortDirection" /> indicating how the list should be sorted.</param>
      <exception cref="T:System.NotSupportedException">The data source is not an <see cref="T:System.ComponentModel.IBindingList" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.CancelEdit">
      <summary>Cancels the current edit operation.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.Clear">
      <summary>Removes all elements from the list.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.Contains(System.Object)">
      <summary>Determines whether an object is an item in the list.</summary>
      <param name="value">The <see cref="T:System.Object" /> to locate in the underlying list represented by the <see cref="P:System.Windows.Forms.BindingSource.List" /> property. The value can be <see langword="null" />.</param>
      <returns>
        <see langword="true" /> if the <paramref name="value" /> parameter is found in the <see cref="P:System.Windows.Forms.BindingSource.List" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.CopyTo(System.Array,System.Int32)">
      <summary>Copies the contents of the <see cref="P:System.Windows.Forms.BindingSource.List" /> to the specified array, starting at the specified index value.</summary>
      <param name="arr">The destination array.</param>
      <param name="index">The index in the destination array at which to start the copy operation.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.BindingSource" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.EndEdit">
      <summary>Applies pending changes to the underlying data source.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.Find(System.ComponentModel.PropertyDescriptor,System.Object)">
      <summary>Searches for the index of the item that has the given property descriptor.</summary>
      <param name="prop">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to search for.</param>
      <param name="key">The value of <paramref name="prop" /> to match.</param>
      <exception cref="T:System.NotSupportedException">The underlying list is not of type <see cref="T:System.ComponentModel.IBindingList" />.</exception>
      <returns>The zero-based index of the item that has the given value for <see cref="T:System.ComponentModel.PropertyDescriptor" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.Find(System.String,System.Object)">
      <summary>Returns the index of the item in the list with the specified property name and value.</summary>
      <param name="propertyName">The name of the property to search for.</param>
      <param name="key">The value of the item with the specified <paramref name="propertyName" /> to find.</param>
      <exception cref="T:System.InvalidOperationException">The underlying list is not a <see cref="T:System.ComponentModel.IBindingList" /> with searching functionality implemented.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="propertyName" /> does not match a property in the list.</exception>
      <returns>The zero-based index of the item with the specified property name and value.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.GetEnumerator">
      <summary>Retrieves an enumerator for the <see cref="P:System.Windows.Forms.BindingSource.List" />.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="P:System.Windows.Forms.BindingSource.List" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
      <summary>Retrieves an array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects representing the bindable properties of the data source list type.</summary>
      <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects to find in the list as bindable.</param>
      <returns>An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects that represents the properties on this list type used to bind data.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.GetListName(System.ComponentModel.PropertyDescriptor[])">
      <summary>Gets the name of the list supplying data for the binding.</summary>
      <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects to find in the list as bindable.</param>
      <returns>The name of the list supplying the data for binding.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.GetRelatedCurrencyManager(System.String)">
      <summary>Gets the related currency manager for the specified data member.</summary>
      <param name="dataMember">The name of column or list, within the data source to retrieve the currency manager for.</param>
      <returns>The related <see cref="T:System.Windows.Forms.CurrencyManager" /> for the specified data member.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.IndexOf(System.Object)">
      <summary>Searches for the specified object and returns the index of the first occurrence within the entire list.</summary>
      <param name="value">The <see cref="T:System.Object" /> to locate in the underlying list represented by the <see cref="P:System.Windows.Forms.BindingSource.List" /> property. The value can be <see langword="null" />.</param>
      <returns>The zero-based index of the first occurrence of the <paramref name="value" /> parameter; otherwise, -1 if <paramref name="value" /> is not in the list.</returns>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the list at the specified index.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The <see cref="T:System.Object" /> to insert. The value can be <see langword="null" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero or greater than <see cref="P:System.Windows.Forms.BindingSource.Count" />.</exception>
      <exception cref="T:System.NotSupportedException">The list is read-only or has a fixed size.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.MoveFirst">
      <summary>Moves to the first item in the list.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.MoveLast">
      <summary>Moves to the last item in the list.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.MoveNext">
      <summary>Moves to the next item in the list.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.MovePrevious">
      <summary>Moves to the previous item in the list.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.OnAddingNew(System.ComponentModel.AddingNewEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingSource.AddingNew" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingSource.BindingComplete" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.BindingCompleteEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.OnCurrentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingSource.CurrentChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.OnCurrentItemChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingSource.CurrentItemChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.OnDataError(System.Windows.Forms.BindingManagerDataErrorEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingSource.DataError" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.BindingManagerDataErrorEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.OnDataMemberChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingSource.DataMemberChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.OnDataSourceChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingSource.DataSourceChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingSource.ListChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.OnPositionChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingSource.PositionChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.ListChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.Remove(System.Object)">
      <summary>Removes the specified item from the list.</summary>
      <param name="value">The item to remove from the underlying list represented by the <see cref="P:System.Windows.Forms.BindingSource.List" /> property.</param>
      <exception cref="T:System.NotSupportedException">The underlying list has a fixed size or is read-only.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.RemoveAt(System.Int32)">
      <summary>Removes the item at the specified index in the list.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero or greater than the value of the <see cref="P:System.Windows.Forms.BindingSource.Count" /> property.</exception>
      <exception cref="T:System.NotSupportedException">The underlying list represented by the <see cref="P:System.Windows.Forms.BindingSource.List" /> property is read-only or has a fixed size.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.RemoveCurrent">
      <summary>Removes the current item from the list.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.BindingSource.AllowRemove" /> property is <see langword="false" />.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.BindingSource.Position" /> is less than zero or greater than <see cref="P:System.Windows.Forms.BindingSource.Count" />.</exception>
      <exception cref="T:System.NotSupportedException">The underlying list represented by the <see cref="P:System.Windows.Forms.BindingSource.List" /> property is read-only or has a fixed size.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.RemoveFilter">
      <summary>Removes the filter associated with the <see cref="T:System.Windows.Forms.BindingSource" />.</summary>
      <exception cref="T:System.NotSupportedException">The underlying list does not support filtering.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.RemoveSort">
      <summary>Removes the sort associated with the <see cref="T:System.Windows.Forms.BindingSource" />.</summary>
      <exception cref="T:System.NotSupportedException">The underlying list does not support sorting.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.ResetAllowNew">
      <summary>Reinitializes the <see cref="P:System.Windows.Forms.BindingSource.AllowNew" /> property.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.ResetBindings(System.Boolean)">
      <summary>Causes a control bound to the <see cref="T:System.Windows.Forms.BindingSource" /> to reread all the items in the list and refresh their displayed values.</summary>
      <param name="metadataChanged">
        <see langword="true" /> if the data schema has changed; <see langword="false" /> if only values have changed.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.ResetCurrentItem">
      <summary>Causes a control bound to the <see cref="T:System.Windows.Forms.BindingSource" /> to reread the currently selected item and refresh its displayed value.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.ResetItem(System.Int32)">
      <summary>Causes a control bound to the <see cref="T:System.Windows.Forms.BindingSource" /> to reread the item at the specified index, and refresh its displayed value.</summary>
      <param name="itemIndex">The zero-based index of the item that has changed.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.ResumeBinding">
      <summary>Resumes data binding.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.SuspendBinding">
      <summary>Suspends data binding to prevent changes from updating the bound data source.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.System#ComponentModel#IBindingList#AddIndex(System.ComponentModel.PropertyDescriptor)">
      <summary>Adds the <see cref="T:System.ComponentModel.PropertyDescriptor" /> to the indexes used for searching.</summary>
      <param name="property">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to add to the indexes used for searching.</param>
      <exception cref="T:System.NotSupportedException">The underlying list is not an <see cref="T:System.ComponentModel.IBindingList" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.System#ComponentModel#IBindingList#RemoveIndex(System.ComponentModel.PropertyDescriptor)">
      <summary>Removes the <see cref="T:System.ComponentModel.PropertyDescriptor" /> from the indexes used for searching.</summary>
      <param name="prop">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> to remove from the indexes used for searching.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.System#ComponentModel#ICancelAddNew#CancelNew(System.Int32)">
      <summary>Discards a pending new item from the collection.</summary>
      <param name="position">The index of the item that was added to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.System#ComponentModel#ICancelAddNew#EndNew(System.Int32)">
      <summary>Commits a pending new item to the collection.</summary>
      <param name="position">The index of the item that was added to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitialize#BeginInit">
      <summary>Signals the <see cref="T:System.Windows.Forms.BindingSource" /> that initialization is starting.</summary>
    </member>
    <member name="M:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitialize#EndInit">
      <summary>Signals the <see cref="T:System.Windows.Forms.BindingSource" /> that initialization is complete.</summary>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.AllowEdit">
      <summary>Gets a value indicating whether items in the underlying list can be edited.</summary>
      <returns>
        <see langword="true" /> to indicate list items can be edited; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.AllowNew">
      <summary>Gets or sets a value indicating whether the <see cref="M:System.Windows.Forms.BindingSource.AddNew" /> method can be used to add items to the list.</summary>
      <exception cref="T:System.InvalidOperationException">This property is set to <see langword="true" /> when the underlying list represented by the <see cref="P:System.Windows.Forms.BindingSource.List" /> property has a fixed size or is read-only.</exception>
      <exception cref="T:System.MissingMethodException">The property is set to <see langword="true" /> and the <see cref="E:System.Windows.Forms.BindingSource.AddingNew" /> event is not handled when the underlying list type does not have a parameterless constructor.</exception>
      <returns>
        <see langword="true" /> if <see cref="M:System.Windows.Forms.BindingSource.AddNew" /> can be used to add items to the list; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.AllowRemove">
      <summary>Gets a value indicating whether items can be removed from the underlying list.</summary>
      <returns>
        <see langword="true" /> to indicate list items can be removed from the list; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.Count">
      <summary>Gets the total number of items in the underlying list, taking the current <see cref="P:System.Windows.Forms.BindingSource.Filter" /> value into consideration.</summary>
      <returns>The total number of filtered items in the underlying list.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.CurrencyManager">
      <summary>Gets the currency manager associated with this <see cref="T:System.Windows.Forms.BindingSource" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.CurrencyManager" /> associated with this <see cref="T:System.Windows.Forms.BindingSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.Current">
      <summary>Gets the current item in the list.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the current item in the underlying list represented by the <see cref="P:System.Windows.Forms.BindingSource.List" /> property, or <see langword="null" /> if the list has no items.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.DataMember">
      <summary>Gets or sets the specific list in the data source to which the connector currently binds to.</summary>
      <returns>The name of a list (or row) in the <see cref="P:System.Windows.Forms.BindingSource.DataSource" />. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.DataSource">
      <summary>Gets or sets the data source that the connector binds to.</summary>
      <returns>An <see cref="T:System.Object" /> that acts as a data source. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.Filter">
      <summary>Gets or sets the expression used to filter which rows are viewed.</summary>
      <returns>A string that specifies how rows are to be filtered. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.IsBindingSuspended">
      <summary>Gets a value indicating whether the list binding is suspended.</summary>
      <returns>
        <see langword="true" /> to indicate the binding is suspended; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.IsFixedSize">
      <summary>Gets a value indicating whether the underlying list has a fixed size.</summary>
      <returns>
        <see langword="true" /> if the underlying list has a fixed size; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.IsReadOnly">
      <summary>Gets a value indicating whether the underlying list is read-only.</summary>
      <returns>
        <see langword="true" /> if the list is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.IsSorted">
      <summary>Gets a value indicating whether the items in the underlying list are sorted.</summary>
      <returns>
        <see langword="true" /> if the list is an <see cref="T:System.ComponentModel.IBindingList" /> and is sorted; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="true" /> to indicate the list is synchronized; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.Item(System.Int32)">
      <summary>Gets or sets the list element at the specified index.</summary>
      <param name="index">The zero-based index of the element to retrieve.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero or is equal to or greater than <see cref="P:System.Windows.Forms.BindingSource.Count" />.</exception>
      <returns>The element at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.List">
      <summary>Gets the list that the connector is bound to.</summary>
      <returns>An <see cref="T:System.Collections.IList" /> that represents the list, or <see langword="null" /> if there is no underlying list associated with this <see cref="T:System.Windows.Forms.BindingSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.Position">
      <summary>Gets or sets the index of the current item in the underlying list.</summary>
      <returns>A zero-based index that specifies the position of the current item in the underlying list.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.RaiseListChangedEvents">
      <summary>Gets or sets a value indicating whether <see cref="E:System.Windows.Forms.BindingSource.ListChanged" /> events should be raised.</summary>
      <returns>
        <see langword="true" /> if <see cref="E:System.Windows.Forms.BindingSource.ListChanged" /> events should be raised; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.Sort">
      <summary>Gets or sets the column names used for sorting, and the sort order for viewing the rows in the data source.</summary>
      <returns>A case-sensitive string containing the column name followed by "ASC" (for ascending) or "DESC" (for descending). The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.SortDescriptions">
      <summary>Gets the collection of sort descriptions applied to the data source.</summary>
      <returns>If the data source is an <see cref="T:System.ComponentModel.IBindingListView" />, a <see cref="T:System.ComponentModel.ListSortDescriptionCollection" /> that contains the sort descriptions applied to the list; otherwise, <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.SortDirection">
      <summary>Gets the direction the items in the list are sorted.</summary>
      <returns>One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values indicating the direction the list is sorted.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.SortProperty">
      <summary>Gets the <see cref="T:System.ComponentModel.PropertyDescriptor" /> that is being used for sorting the list.</summary>
      <returns>If the list is an <see cref="T:System.ComponentModel.IBindingList" />, the <see cref="T:System.ComponentModel.PropertyDescriptor" /> that is being used for sorting; otherwise, <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.SupportsAdvancedSorting">
      <summary>Gets a value indicating whether the data source supports multi-column sorting.</summary>
      <returns>
        <see langword="true" /> if the list is an <see cref="T:System.ComponentModel.IBindingListView" /> and supports multi-column sorting; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.SupportsChangeNotification">
      <summary>Gets a value indicating whether the data source supports change notification.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.SupportsFiltering">
      <summary>Gets a value indicating whether the data source supports filtering.</summary>
      <returns>
        <see langword="true" /> if the list is an <see cref="T:System.ComponentModel.IBindingListView" /> and supports filtering; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.SupportsSearching">
      <summary>Gets a value indicating whether the data source supports searching with the <see cref="M:System.Windows.Forms.BindingSource.Find(System.ComponentModel.PropertyDescriptor,System.Object)" /> method.</summary>
      <returns>
        <see langword="true" /> if the list is a <see cref="T:System.ComponentModel.IBindingList" /> and supports the searching with the <see cref="Overload:System.Windows.Forms.BindingSource.Find" /> method; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.SupportsSorting">
      <summary>Gets a value indicating whether the data source supports sorting.</summary>
      <returns>
        <see langword="true" /> if the data source is an <see cref="T:System.ComponentModel.IBindingList" /> and supports sorting; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the underlying list.</summary>
      <returns>An object that can be used to synchronize access to the underlying list.</returns>
    </member>
    <member name="P:System.Windows.Forms.BindingSource.System#ComponentModel#ISupportInitializeNotification#IsInitialized">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.BindingSource" /> is initialized.</summary>
      <returns>
        <see langword="true" /> to indicate the <see cref="T:System.Windows.Forms.BindingSource" /> is initialized; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.BootMode">
      <summary>Specifies the boot mode in which the system was started.</summary>
    </member>
    <member name="F:System.Windows.Forms.BootMode.FailSafe">
      <summary>The computer was started in safe mode without network support. This mode uses a limited drivers and settings profile.</summary>
    </member>
    <member name="F:System.Windows.Forms.BootMode.FailSafeWithNetwork">
      <summary>The computer was started in safe mode with network support. This mode uses a limited drivers and settings profile, and loads the services needed to start networking.</summary>
    </member>
    <member name="F:System.Windows.Forms.BootMode.Normal">
      <summary>The computer was started in the standard boot mode. This mode uses the normal drivers and settings for the system.</summary>
    </member>
    <member name="T:System.Windows.Forms.Border3DSide">
      <summary>Specifies the sides of a rectangle to apply a three-dimensional border to.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DSide.All">
      <summary>A three-dimensional border on all four sides of the rectangle. The middle of the rectangle is filled with the color defined for three-dimensional controls.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DSide.Bottom">
      <summary>A three-dimensional border on the bottom side of the rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DSide.Left">
      <summary>A three-dimensional border on the left edge of the rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DSide.Middle">
      <summary>The interior of the rectangle is filled with the color defined for three-dimensional controls instead of the background color for the form.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DSide.Right">
      <summary>A three-dimensional border on the right side of the rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DSide.Top">
      <summary>A three-dimensional border on the top edge of the rectangle.</summary>
    </member>
    <member name="T:System.Windows.Forms.Border3DStyle">
      <summary>Specifies the style of a three-dimensional border.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.Adjust">
      <summary>The border is drawn outside the specified rectangle, preserving the dimensions of the rectangle for drawing.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.Bump">
      <summary>The inner and outer edges of the border have a raised appearance.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.Etched">
      <summary>The inner and outer edges of the border have an etched appearance.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.Flat">
      <summary>The border has no three-dimensional effects.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.Raised">
      <summary>The border has raised inner and outer edges.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.RaisedInner">
      <summary>The border has a raised inner edge and no outer edge.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.RaisedOuter">
      <summary>The border has a raised outer edge and no inner edge.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.Sunken">
      <summary>The border has sunken inner and outer edges.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.SunkenInner">
      <summary>The border has a sunken inner edge and no outer edge.</summary>
    </member>
    <member name="F:System.Windows.Forms.Border3DStyle.SunkenOuter">
      <summary>The border has a sunken outer edge and no inner edge.</summary>
    </member>
    <member name="T:System.Windows.Forms.BorderStyle">
      <summary>Specifies the border style for a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.BorderStyle.Fixed3D">
      <summary>A three-dimensional border.</summary>
    </member>
    <member name="F:System.Windows.Forms.BorderStyle.FixedSingle">
      <summary>A single-line border.</summary>
    </member>
    <member name="F:System.Windows.Forms.BorderStyle.None">
      <summary>No border.</summary>
    </member>
    <member name="T:System.Windows.Forms.BoundsSpecified">
      <summary>Specifies the bounds of the control to use when defining a control's size and position.</summary>
    </member>
    <member name="F:System.Windows.Forms.BoundsSpecified.All">
      <summary>Specifies that both the <see cref="P:System.Windows.Forms.Control.Location" /> and <see cref="P:System.Windows.Forms.Control.Size" /> property values are defined.</summary>
    </member>
    <member name="F:System.Windows.Forms.BoundsSpecified.Height">
      <summary>Specifies that the height of the control is defined.</summary>
    </member>
    <member name="F:System.Windows.Forms.BoundsSpecified.Location">
      <summary>Specifies that both the <see cref="F:System.Windows.Forms.BoundsSpecified.X" /> and <see cref="F:System.Windows.Forms.BoundsSpecified.Y" /> coordinates of the control are defined.</summary>
    </member>
    <member name="F:System.Windows.Forms.BoundsSpecified.None">
      <summary>No bounds are specified.</summary>
    </member>
    <member name="F:System.Windows.Forms.BoundsSpecified.Size">
      <summary>Specifies that both the <see cref="P:System.Windows.Forms.Control.Width" /> and <see cref="P:System.Windows.Forms.Control.Height" /> property values of the control are defined.</summary>
    </member>
    <member name="F:System.Windows.Forms.BoundsSpecified.Width">
      <summary>Specifies that the width of the control is defined.</summary>
    </member>
    <member name="F:System.Windows.Forms.BoundsSpecified.X">
      <summary>Specifies that the left edge of the control is defined.</summary>
    </member>
    <member name="F:System.Windows.Forms.BoundsSpecified.Y">
      <summary>Specifies that the top edge of the control is defined.</summary>
    </member>
    <member name="T:System.Windows.Forms.Button">
      <summary>Represents a Windows button control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Button.DoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.Button" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Button.MouseDoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.Button" /> control with the mouse.</summary>
    </member>
    <member name="M:System.Windows.Forms.Button.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Button" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Button.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.Button.NotifyDefault(System.Boolean)">
      <summary>Notifies the <see cref="T:System.Windows.Forms.Button" /> whether it is the default button so that it can adjust its appearance accordingly.</summary>
      <param name="value">
        <see langword="true" /> if the button is to have the appearance of the default button; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Button.OnClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Button.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Button.OnMouseEnter(System.EventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseEnter(System.EventArgs)" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Button.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseLeave(System.EventArgs)" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Button.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.ButtonBase.OnMouseUp(System.Windows.Forms.MouseEventArgs)" /> event.</summary>
      <param name="mevent">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Button.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Button.PerformClick">
      <summary>Generates a <see cref="E:System.Windows.Forms.Control.Click" /> event for a button.</summary>
    </member>
    <member name="M:System.Windows.Forms.Button.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The mnemonic character entered.</param>
      <returns>
        <see langword="true" /> if the mnemonic was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Button.RescaleConstantsForDpi(System.Int32,System.Int32)">
      <summary>Provides constants for rescaling the <see cref="T:System.Windows.Forms.Button" /> control when a DPI change occurs.</summary>
      <param name="deviceDpiOld">The DPI value prior to the change.</param>
      <param name="deviceDpiNew">The DPI value after the change.</param>
    </member>
    <member name="M:System.Windows.Forms.Button.ToString">
      <summary>Returns a <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any. This method should not be overridden.</summary>
      <returns>A <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any, or <see langword="null" /> if the <see cref="T:System.ComponentModel.Component" /> is unnamed.</returns>
    </member>
    <member name="M:System.Windows.Forms.Button.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.Button.AutoSizeMode">
      <summary>Gets or sets the mode by which the <see cref="T:System.Windows.Forms.Button" /> automatically resizes itself.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AutoSizeMode" /> values. The default value is <see cref="F:System.Windows.Forms.AutoSizeMode.GrowOnly" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Button.CreateParams">
      <summary>Gets a <see cref="T:System.Windows.Forms.CreateParams" /> on the base class when creating a window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> object on the base class when creating a window.</returns>
    </member>
    <member name="P:System.Windows.Forms.Button.DialogResult">
      <summary>Gets or sets a value that is returned to the parent form when the button is clicked.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values. The default value is <see langword="None" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ButtonBase">
      <summary>Implements the basic functionality common to button controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.ButtonBase.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ButtonBase.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ButtonBase.CommandCanExecuteChanged">
      <summary>Occurs when the <see cref="M:System.Windows.Input.ICommand.CanExecute(System.Object)" /> status of the <see cref="T:System.Windows.Input.ICommand" /> that's assigned to the <see cref="P:System.Windows.Forms.ButtonBase.Command" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ButtonBase.CommandChanged">
      <summary>Occurs when the assigned <see cref="T:System.Windows.Input.ICommand" /> of the <see cref="P:System.Windows.Forms.ButtonBase.Command" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ButtonBase.CommandParameterChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ButtonBase.CommandParameter" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ButtonBase.ImeModeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ButtonBase.ImeMode" /> property is changed. This event is not relevant for this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ButtonBase" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ButtonBase" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a control can be fitted.</summary>
      <param name="proposedSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnClick(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnCommandCanExecuteChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ButtonBase.CommandCanExecuteChanged" /> event.</summary>
      <param name="e">An empty <see cref="T:System.EventArgs" /> instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnCommandChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ButtonBase.CommandChanged" /> event.</summary>
      <param name="e">An empty <see cref="T:System.EventArgs" /> instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnCommandParameterChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ButtonBase.CommandParameterChanged" /> event.</summary>
      <param name="e">An empty <see cref="T:System.EventArgs" /> instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.ButtonBase.OnKeyUp(System.Windows.Forms.KeyEventArgs)" /> event.</summary>
      <param name="kevent">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.ButtonBase.OnKeyUp(System.Windows.Forms.KeyEventArgs)" /> event.</summary>
      <param name="kevent">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.ButtonBase.OnLostFocus(System.EventArgs)" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseDown(System.Windows.Forms.MouseEventArgs)" /> event.</summary>
      <param name="mevent">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnMouseEnter(System.EventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseEnter(System.EventArgs)" /> event.</summary>
      <param name="eventargs">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseLeave(System.EventArgs)" /> event.</summary>
      <param name="eventargs">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseMove(System.Windows.Forms.MouseEventArgs)" /> event.</summary>
      <param name="mevent">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.ButtonBase.OnMouseUp(System.Windows.Forms.MouseEventArgs)" /> event.</summary>
      <param name="mevent">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.ButtonBase.OnPaint(System.Windows.Forms.PaintEventArgs)" /> event.</summary>
      <param name="pevent">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnParentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnRequestCommandExecute(System.EventArgs)">
      <summary>Called in the context of <see cref="M:System.Windows.Forms.ButtonBase.OnClick(System.EventArgs)" /> to invoke <see cref="M:System.Windows.Input.ICommand.Execute(System.Object)" /> if the context allows.</summary>
      <param name="e">An empty <see cref="T:System.EventArgs" /> instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.ResetFlagsandPaint">
      <summary>Resets the <see cref="T:System.Windows.Forms.Button" /> control to the state before it is pressed and redraws it.</summary>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.AutoEllipsis">
      <summary>Gets or sets a value indicating whether the ellipsis character (...) appears at the right edge of the control, denoting that the control text extends beyond the specified length of the control.</summary>
      <returns>
        <see langword="true" /> if the additional label text is to be indicated by an ellipsis; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.AutoSize">
      <summary>Gets or sets a value that indicates whether the control resizes based on its contents.</summary>
      <returns>
        <see langword="true" /> if the control automatically resizes based on its contents; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.BackColor">
      <summary>Gets or sets the background color of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> value representing the background color.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.Command">
      <summary>Gets or sets the <see cref="T:System.Windows.Input.ICommand" /> whose <see cref="M:System.Windows.Input.ICommand.Execute(System.Object)" /> method will be called when the <see cref="E:System.Windows.Forms.Control.Click" /> event is invoked.</summary>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.CommandParameter">
      <summary>Gets or sets the parameter that is passed to the <see cref="T:System.Windows.Input.ICommand" /> that's assigned to the <see cref="P:System.Windows.Forms.ButtonBase.Command" /> property.</summary>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.DefaultImeMode">
      <summary>Gets the default Input Method Editor (IME) mode supported by this control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.FlatAppearance">
      <summary>Gets the appearance of the border and the colors used to indicate check state and mouse state.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.FlatButtonAppearance" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.FlatStyle">
      <summary>Gets or sets the flat style appearance of the button control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.FlatStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.FlatStyle" /> values. The default value is <see langword="Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.Image">
      <summary>Gets or sets the image that is displayed on a button control.</summary>
      <returns>The <see cref="T:System.Drawing.Image" /> displayed on the button control. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.ImageAlign">
      <summary>Gets or sets the alignment of the image on the button control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Drawing.ContentAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default value is <see langword="MiddleCenter" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.ImageIndex">
      <summary>Gets or sets the image list index value of the image displayed on the button control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than -1.</exception>
      <returns>A zero-based index, which represents the image position in an <see cref="T:System.Windows.Forms.ImageList" />. The default is -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.ImageKey">
      <summary>Gets or sets the key accessor for the image in the <see cref="P:System.Windows.Forms.ButtonBase.ImageList" />.</summary>
      <returns>A string representing the key of the image.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.ImageList">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ImageList" /> that contains the <see cref="T:System.Drawing.Image" /> displayed on a button control.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageList" />. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.ImeMode">
      <summary>Gets or sets the Input Method Editor (IME) mode supported by this control. This property is not relevant for this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.IsDefault">
      <summary>Gets or sets a value indicating whether the button control is the default button.</summary>
      <returns>
        <see langword="true" /> if the button control is the default button; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.TextAlign">
      <summary>Gets or sets the alignment of the text on the button control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Drawing.ContentAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default is <see langword="MiddleCenter" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.TextImageRelation">
      <summary>Gets or sets the position of text and image relative to each other.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value is not one of the <see cref="T:System.Windows.Forms.TextImageRelation" /> values.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.TextImageRelation" />. The default is <see cref="F:System.Windows.Forms.TextImageRelation.Overlay" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.UseCompatibleTextRendering">
      <summary>Gets or sets a value that determines whether to use the <see cref="T:System.Drawing.Graphics" /> class (GDI+) or the <see cref="T:System.Windows.Forms.TextRenderer" /> class (GDI) to render text.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Drawing.Graphics" /> class should be used to perform text rendering for compatibility with versions 1.0 and 1.1. of the .NET Framework; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.UseMnemonic">
      <summary>Gets or sets a value indicating whether the first character that is preceded by an ampersand (&amp;) is used as the mnemonic key of the control.</summary>
      <returns>
        <see langword="true" /> if the first character that is preceded by an ampersand (&amp;) is used as the mnemonic key of the control; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.UseVisualStyleBackColor">
      <summary>Gets or sets a value that determines if the background is drawn using visual styles, if supported.</summary>
      <returns>
        <see langword="true" /> if the background is drawn using visual styles; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject">
      <summary>Provides information that accessibility applications use to adjust an application's user interface for users with disabilities.</summary>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.#ctor(System.Windows.Forms.Control)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject" /> class.</summary>
      <param name="owner">The owner of this <see cref="T:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.DoDefaultAction">
      <summary>Performs the default action associated with this accessible object.</summary>
    </member>
    <member name="P:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.KeyboardShortcut" />
    <member name="P:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.Name" />
    <member name="P:System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.State">
      <summary>Gets the state of this accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleStates" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.ButtonBorderStyle">
      <summary>Specifies the border style for a button control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonBorderStyle.Dashed">
      <summary>A dashed border.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonBorderStyle.Dotted">
      <summary>A dotted-line border.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonBorderStyle.Inset">
      <summary>A sunken border.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonBorderStyle.None">
      <summary>No border.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonBorderStyle.Outset">
      <summary>A raised border.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonBorderStyle.Solid">
      <summary>A solid border.</summary>
    </member>
    <member name="T:System.Windows.Forms.ButtonRenderer">
      <summary>Provides methods used to render a button control with or without visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)">
      <summary>Draws a button control in the specified state and bounds, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle on the button; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)">
      <summary>Draws a button control in the specified state and bounds, with the specified image, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw on the button.</param>
      <param name="imageBounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of <paramref name="image" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle on the button; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)">
      <summary>Draws a button control in the specified state and bounds, with the specified text, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
      <param name="buttonText">The <see cref="T:System.String" /> to draw on the button.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="buttonText" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle on the button; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)">
      <summary>Draws a button control in the specified state and bounds, with the specified text and image, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
      <param name="buttonText">The <see cref="T:System.String" /> to draw on the button.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="buttonText" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw on the button.</param>
      <param name="imageBounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of <paramref name="image" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle on the button; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)">
      <summary>Draws a button control in the specified state and bounds, with the specified text and text formatting, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
      <param name="buttonText">The <see cref="T:System.String" /> to draw on the button.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="buttonText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values to apply to <paramref name="buttonText" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle on the button; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.PushButtonState)">
      <summary>Draws a button control in the specified state and bounds; with the specified text, text formatting, and image; and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
      <param name="buttonText">The <see cref="T:System.String" /> to draw on the button.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="buttonText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values to apply to <paramref name="buttonText" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw on the button.</param>
      <param name="imageBounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of <paramref name="image" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle on the button; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.PushButtonState)">
      <summary>Draws a button control in the specified state and bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonRenderer.DrawParentBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Control)">
      <summary>Draws the background of a control's parent in the specified area.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the background of the parent of <paramref name="childControl" />.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> in which to draw the parent control's background. This rectangle should be inside the child control's bounds.</param>
      <param name="childControl">The control whose parent's background will be drawn.</param>
    </member>
    <member name="M:System.Windows.Forms.ButtonRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.PushButtonState)">
      <summary>Indicates whether the background of the button has semitransparent or alpha-blended pieces.</summary>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
      <returns>
        <see langword="true" /> if the background of the button has semitransparent or alpha-blended pieces; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ButtonRenderer.RenderMatchingApplicationState">
      <summary>Gets or sets a value indicating whether the renderer uses the application state to determine rendering style.</summary>
      <returns>
        <see langword="true" /> if the application state is used to determine rendering style; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ButtonState">
      <summary>Specifies the appearance of a button.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonState.All">
      <summary>All flags except <see langword="Normal" /> are set.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonState.Checked">
      <summary>The button has a checked or latched appearance. Use this appearance to show that a toggle button has been pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonState.Flat">
      <summary>The button has a flat, two-dimensional appearance.</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonState.Inactive">
      <summary>The button is inactive (grayed).</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonState.Normal">
      <summary>The button has its normal appearance (three-dimensional).</summary>
    </member>
    <member name="F:System.Windows.Forms.ButtonState.Pushed">
      <summary>The button appears pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.CacheVirtualItemsEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.CacheVirtualItems" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.CacheVirtualItemsEventArgs.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.CacheVirtualItemsEventArgs" /> class with the specified starting and ending indices.</summary>
      <param name="startIndex">The starting index of a range of items needed by the <see cref="T:System.Windows.Forms.ListView" /> for the next <see cref="E:System.Windows.Forms.ListView.RetrieveVirtualItem" /> event that occurs.</param>
      <param name="endIndex">The ending index of a range of items needed by the <see cref="T:System.Windows.Forms.ListView" /> for the next <see cref="E:System.Windows.Forms.ListView.RetrieveVirtualItem" /> event that occurs.</param>
    </member>
    <member name="P:System.Windows.Forms.CacheVirtualItemsEventArgs.EndIndex">
      <summary>Gets the ending index for the range of values needed by a <see cref="T:System.Windows.Forms.ListView" /> control in virtual mode.</summary>
      <returns>The index at the end of the range of values needed by the <see cref="T:System.Windows.Forms.ListView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.CacheVirtualItemsEventArgs.StartIndex">
      <summary>Gets the starting index for a range of values needed by a <see cref="T:System.Windows.Forms.ListView" /> control in virtual mode.</summary>
      <returns>The index at the start of the range of values needed by the <see cref="T:System.Windows.Forms.ListView" /> control.</returns>
    </member>
    <member name="T:System.Windows.Forms.CacheVirtualItemsEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.CacheVirtualItems" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.CacheVirtualItemsEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.CaptionButton">
      <summary>Specifies the type of caption button to display.</summary>
    </member>
    <member name="F:System.Windows.Forms.CaptionButton.Close">
      <summary>A Close button.</summary>
    </member>
    <member name="F:System.Windows.Forms.CaptionButton.Help">
      <summary>A Help button.</summary>
    </member>
    <member name="F:System.Windows.Forms.CaptionButton.Maximize">
      <summary>A Maximize button.</summary>
    </member>
    <member name="F:System.Windows.Forms.CaptionButton.Minimize">
      <summary>A Minimize button.</summary>
    </member>
    <member name="F:System.Windows.Forms.CaptionButton.Restore">
      <summary>A Restore button.</summary>
    </member>
    <member name="T:System.Windows.Forms.CharacterCasing">
      <summary>Specifies the case of characters in a <see cref="T:System.Windows.Forms.TextBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.CharacterCasing.Lower">
      <summary>Converts all characters to lowercase.</summary>
    </member>
    <member name="F:System.Windows.Forms.CharacterCasing.Normal">
      <summary>The case of characters is left unchanged.</summary>
    </member>
    <member name="F:System.Windows.Forms.CharacterCasing.Upper">
      <summary>Converts all characters to uppercase.</summary>
    </member>
    <member name="T:System.Windows.Forms.CheckBox">
      <summary>Represents a Windows <see cref="T:System.Windows.Forms.CheckBox" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckBox.AppearanceChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.CheckBox.Appearance" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckBox.CheckedChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.CheckBox.Checked" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckBox.CheckStateChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.CheckBox.CheckState" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckBox.DoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.CheckBox" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckBox.MouseDoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.CheckBox" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.CheckBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.CheckBox" /> control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.OnAppearanceChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CheckBox.AppearanceChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.OnCheckedChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CheckBox.CheckedChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.OnCheckStateChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CheckBox.CheckStateChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.OnClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the OnMouseUp event.</summary>
      <param name="mevent">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.RescaleConstantsForDpi(System.Int32,System.Int32)">
      <summary>Provides constants for rescaling the <see cref="T:System.Windows.Forms.CheckBox" /> control when a DPI change occurs.</summary>
      <param name="deviceDpiOld">The DPI value prior to the change.</param>
      <param name="deviceDpiNew">The DPI value after the change.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.CheckBox" /> control.</summary>
      <returns>A string that states the control type and the state of the <see cref="P:System.Windows.Forms.CheckBox.CheckState" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.Appearance">
      <summary>Gets or sets the value that determines the appearance of a <see cref="T:System.Windows.Forms.CheckBox" /> control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.Appearance" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.Appearance" /> values. The default value is <see cref="F:System.Windows.Forms.Appearance.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.AutoCheck">
      <summary>Gets or set a value indicating whether the <see cref="P:System.Windows.Forms.CheckBox.Checked" /> or <see cref="P:System.Windows.Forms.CheckBox.CheckState" /> values and the <see cref="T:System.Windows.Forms.CheckBox" />'s appearance are automatically changed when the <see cref="T:System.Windows.Forms.CheckBox" /> is clicked.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.CheckBox.Checked" /> value or <see cref="P:System.Windows.Forms.CheckBox.CheckState" /> value and the appearance of the control are automatically changed on the <see cref="E:System.Windows.Forms.Control.Click" /> event; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.CheckAlign">
      <summary>Gets or sets the horizontal and vertical alignment of the check mark on a <see cref="T:System.Windows.Forms.CheckBox" /> control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Drawing.ContentAlignment" /> enumeration values.</exception>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default value is <see langword="MiddleLeft" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.Checked">
      <summary>Gets or set a value indicating whether the <see cref="T:System.Windows.Forms.CheckBox" /> is in the checked state.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.CheckBox" /> is in the checked state; otherwise, <see langword="false" />. The default value is <see langword="false" />.  
  
Note: If the <see cref="P:System.Windows.Forms.CheckBox.ThreeState" /> property is set to <see langword="true" />, the <see cref="P:System.Windows.Forms.CheckBox.Checked" /> property will return <see langword="true" /> for either a <see langword="Checked" /> or <see langword="Indeterminate" /><see cref="P:System.Windows.Forms.CheckBox.CheckState" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.CheckState">
      <summary>Gets or sets the state of the <see cref="T:System.Windows.Forms.CheckBox" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.CheckState" /> enumeration values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.CheckState" /> enumeration values. The default value is <see langword="Unchecked" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default size.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.TextAlign">
      <summary>Gets or sets the alignment of the text on the <see cref="T:System.Windows.Forms.CheckBox" /> control.</summary>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default is <see cref="F:System.Drawing.ContentAlignment.MiddleLeft" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.ThreeState">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.CheckBox" /> will allow three check states rather than two.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.CheckBox" /> is able to display three check states; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject">
      <summary>Provides information about the <see cref="T:System.Windows.Forms.CheckBox" /> control to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.#ctor(System.Windows.Forms.Control)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.CheckBox" /> that owns the <see cref="T:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.DoDefaultAction">
      <summary>Performs the default action associated with this accessible object.</summary>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.DefaultAction">
      <summary>Gets a string that describes the default action of the <see cref="T:System.Windows.Forms.CheckBox" /> control.</summary>
      <returns>The description of the default action of the <see cref="T:System.Windows.Forms.CheckBox" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.CheckButton" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.State">
      <summary>Gets the state of the <see cref="T:System.Windows.Forms.CheckBox" /> control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleStates" /> values. If the <see cref="P:System.Windows.Forms.CheckBox.CheckState" /> property is set to <see cref="F:System.Windows.Forms.CheckState.Checked" />, this property returns <see cref="F:System.Windows.Forms.AccessibleStates.Checked" />. If <see cref="P:System.Windows.Forms.CheckBox.CheckState" /> is set to <see cref="F:System.Windows.Forms.CheckState.Indeterminate" />, this property returns <see cref="F:System.Windows.Forms.AccessibleStates.Indeterminate" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.CheckBoxRenderer">
      <summary>Provides methods used to render a check box control with or without visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Boolean,System.Windows.Forms.VisualStyles.CheckBoxState)">
      <summary>Draws a check box control in the specified state and location, with the specified text, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the check box.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the check box glyph at.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="checkBoxText" /> in.</param>
      <param name="checkBoxText">The <see cref="T:System.String" /> to draw with the check box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="checkBoxText" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.CheckBoxState" /> values that specifies the visual state of the check box.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.CheckBoxState)">
      <summary>Draws a check box control in the specified state and location, with the specified text and image, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the check box.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the check box glyph at.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="checkBoxText" /> in.</param>
      <param name="checkBoxText">The <see cref="T:System.String" /> to draw with the check box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="checkBoxText" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw with the check box.</param>
      <param name="imageBounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of <paramref name="image" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.CheckBoxState" /> values that specifies the visual state of the check box.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Boolean,System.Windows.Forms.VisualStyles.CheckBoxState)">
      <summary>Draws a check box control in the specified state and location, with the specified text and text formatting, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the check box.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the check box glyph at.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="checkBoxText" /> in.</param>
      <param name="checkBoxText">The <see cref="T:System.String" /> to draw with the check box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="checkBoxText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.CheckBoxState" /> values that specifies the visual state of the check box.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.CheckBoxState)">
      <summary>Draws a check box control in the specified state and location; with the specified text, text formatting, and image; and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the check box.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the check box glyph at.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="checkBoxText" /> in.</param>
      <param name="checkBoxText">The <see cref="T:System.String" /> to draw with the check box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="checkBoxText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw with the check box.</param>
      <param name="imageBounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of <paramref name="image" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.CheckBoxState" /> values that specifies the visual state of the check box.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Point,System.Windows.Forms.VisualStyles.CheckBoxState)">
      <summary>Draws a check box control in the specified state and location.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the check box.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the check box glyph at.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.CheckBoxState" /> values that specifies the visual state of the check box.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBoxRenderer.DrawParentBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Control)">
      <summary>Draws the background of a control's parent in the specified area.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the background of the parent of <paramref name="childControl" />.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> in which to draw the parent control's background. This rectangle should be inside the child control's bounds.</param>
      <param name="childControl">The control whose parent's background will be drawn.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckBoxRenderer.GetGlyphSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.CheckBoxState)">
      <summary>Returns the size of the check box glyph.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> this operation will use.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.CheckBoxState" /> values that specifies the visual state of the check box.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the size of the check box glyph.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckBoxRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.CheckBoxState)">
      <summary>Indicates whether the background of the check box has semitransparent or alpha-blended pieces.</summary>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.CheckBoxState" /> values that specifies the visual state of the check box.</param>
      <returns>
        <see langword="true" /> if the background of the check box has semitransparent or alpha-blended pieces; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckBoxRenderer.RenderMatchingApplicationState">
      <summary>Gets or sets a value indicating whether the renderer uses the application state to determine rendering style.</summary>
      <returns>
        <see langword="true" /> if the application state is used to determine rendering style; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.CheckedListBox">
      <summary>Displays a <see cref="T:System.Windows.Forms.ListBox" /> in which a check box is displayed to the left of each item.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckedListBox.Click">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.CheckedListBox" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckedListBox.DataSourceChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.CheckedListBox.DataSource" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckedListBox.DisplayMemberChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.CheckedListBox.DisplayMember" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckedListBox.DrawItem">
      <summary>Occurs when a visual aspect of an owner-drawn <see cref="T:System.Windows.Forms.CheckedListBox" /> changes. This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckedListBox.ItemCheck">
      <summary>Occurs when the checked state of an item changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckedListBox.MeasureItem">
      <summary>Occurs when an owner-drawn <see cref="T:System.Windows.Forms.ListBox" /> is created and the sizes of the list items are determined. This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckedListBox.MouseClick">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.CheckedListBox" /> control with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.CheckedListBox.ValueMemberChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.CheckedListBox.ValueMember" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.CheckedListBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.CheckedListBox" /> control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CreateItemCollection">
      <summary>Creates a new instance of the item collection.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> that represents the new item collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.GetItemChecked(System.Int32)">
      <summary>Returns a value indicating whether the specified item is checked.</summary>
      <param name="index">The index of the item.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="index" /> specified is less than zero.  
  
 -or-  
  
 The <paramref name="index" /> specified is greater than or equal to the count of items in the list.</exception>
      <returns>
        <see langword="true" /> if the item is checked; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.GetItemCheckState(System.Int32)">
      <summary>Returns a value indicating the check state of the current item.</summary>
      <param name="index">The index of the item to get the checked value of.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> specified is less than zero.  
  
 -or-  
  
 The <paramref name="index" /> specified is greater than or equal to the count of items in the list.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.CheckState" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.OnClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CheckedListBox.Click" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CheckedListBox.DrawItem" /> event.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.DrawItemEventArgs" /> object with the details.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.OnItemCheck(System.Windows.Forms.ItemCheckEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CheckedListBox.ItemCheck" /> event.</summary>
      <param name="ice">An <see cref="T:System.Windows.Forms.ItemCheckEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that was raised.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CheckedListBox.MeasureItem" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MeasureItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.OnSelectedIndexChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListBox.SelectedIndexChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.RefreshItems">
      <summary>Parses all <see cref="T:System.Windows.Forms.CheckedListBox" /> items again and gets new text strings for the items.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.SetItemChecked(System.Int32,System.Boolean)">
      <summary>Sets <see cref="T:System.Windows.Forms.CheckState" /> for the item at the specified index to <see langword="Checked" />.</summary>
      <param name="index">The index of the item to set the check state for.</param>
      <param name="value">
        <see langword="true" /> to set the item as checked; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentException">The index specified is less than zero.  
  
 -or-  
  
 The index is greater than the count of items in the list.</exception>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.SetItemCheckState(System.Int32,System.Windows.Forms.CheckState)">
      <summary>Sets the check state of the item at the specified index.</summary>
      <param name="index">The index of the item to set the state for.</param>
      <param name="value">One of the <see cref="T:System.Windows.Forms.CheckState" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> specified is less than zero.  
  
 -or-  
  
 The <paramref name="index" /> is greater than or equal to the count of items in the list.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The <paramref name="value" /> is not one of the <see cref="T:System.Windows.Forms.CheckState" /> values.</exception>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.WmReflectCommand(System.Windows.Forms.Message@)">
      <summary>Processes the command message the <see cref="T:System.Windows.Forms.CheckedListBox" /> control receives from the top-level window.</summary>
      <param name="m">The <see cref="T:System.Windows.Forms.Message" /> the top-level window sent to the <see cref="T:System.Windows.Forms.CheckedListBox" /> control.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedIndices">
      <summary>Collection of checked indexes in this <see cref="T:System.Windows.Forms.CheckedListBox" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" /> collection for the <see cref="T:System.Windows.Forms.CheckedListBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedItems">
      <summary>Collection of checked items in this <see cref="T:System.Windows.Forms.CheckedListBox" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.CheckedListBox.CheckedItemCollection" /> collection for the <see cref="T:System.Windows.Forms.CheckedListBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckOnClick">
      <summary>Gets or sets a value indicating whether the check box should be toggled when an item is selected.</summary>
      <returns>
        <see langword="true" /> if the check mark is applied immediately; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required parameters.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.DataSource">
      <summary>Gets or sets the data source for the control.</summary>
      <returns>An object representing the source of the data.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.DisplayMember">
      <summary>Gets or sets a string that specifies a property of the objects contained in the list box whose contents you want to display.</summary>
      <returns>A string that specifies the name of a property of the objects contained in the list box. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.DrawMode">
      <summary>Gets a value indicating the mode for drawing elements of the <see cref="T:System.Windows.Forms.CheckedListBox" />. This property is not relevant to this class.</summary>
      <returns>Always a <see cref="T:System.Windows.Forms.DrawMode" /> of <see langword="Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.ItemHeight">
      <summary>Gets the height of the item area.</summary>
      <returns>The height, in pixels, of the item area.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.Items">
      <summary>Gets the collection of items in this <see cref="T:System.Windows.Forms.CheckedListBox" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.CheckedListBox.ObjectCollection" /> collection representing the items in the <see cref="T:System.Windows.Forms.CheckedListBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.Padding">
      <summary>Gets or sets padding within the <see cref="T:System.Windows.Forms.CheckedListBox" />. This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the control's internal spacing characteristics.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.SelectionMode">
      <summary>Gets or sets a value specifying the selection mode.</summary>
      <exception cref="T:System.ArgumentException">An attempt was made to assign a value that is not a <see cref="T:System.Windows.Forms.SelectionMode" /> value of <see langword="One" /> or <see langword="None" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">An attempt was made to assign the <see langword="MultiExtended" /> value of <see cref="T:System.Windows.Forms.SelectionMode" /> to the control.</exception>
      <returns>Either the <see langword="One" /> or <see langword="None" /> value of <see cref="T:System.Windows.Forms.SelectionMode" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.ThreeDCheckBoxes">
      <summary>Gets or sets a value indicating whether the check boxes have a <see cref="T:System.Windows.Forms.ButtonState" /> of <see langword="Flat" /> or <see langword="Normal" />.</summary>
      <returns>
        <see langword="true" /> if the check box has a flat appearance; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.UseCompatibleTextRendering">
      <summary>Gets or sets a value that determines whether to use the <see cref="T:System.Drawing.Graphics" /> class (GDI+) or the <see cref="T:System.Windows.Forms.TextRenderer" /> class (GDI) to render text.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Drawing.Graphics" /> class should be used to perform text rendering for compatibility with versions 1.0 and 1.1. of the .NET Framework; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.ValueMember">
      <summary>Gets or sets a string that specifies the property of the data source from which to draw the value.</summary>
      <exception cref="T:System.ArgumentException">The specified property cannot be found on the object specified by the <see cref="P:System.Windows.Forms.CheckedListBox.DataSource" /> property.</exception>
      <returns>A string that specifies the property of the data source from which to draw the value.</returns>
    </member>
    <member name="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection">
      <summary>Encapsulates the collection of indexes of checked items (including items in an indeterminate state) in a <see cref="T:System.Windows.Forms.CheckedListBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Contains(System.Int32)">
      <summary>Determines whether the specified index is located in the collection.</summary>
      <param name="index">The index to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified index from the <see cref="T:System.Windows.Forms.CheckedListBox.ObjectCollection" /> is an item in this collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire collection into an existing array at a specified location within the array.</summary>
      <param name="dest">The destination array.</param>
      <param name="index">The zero-based relative index in <paramref name="dest" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.RankException">
        <paramref name="array" /> is multidimensional.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Array" /> is greater than the available space from index to the end of the destination <see cref="T:System.Array" />.</exception>
      <exception cref="T:System.ArrayTypeMismatchException">The type of the source <see cref="T:System.Array" /> cannot be cast automatically to the type of the destination <see cref="T:System.Array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the <see cref="P:System.Windows.Forms.CheckedListBox.CheckedIndices" /> collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> for navigating through the list.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IndexOf(System.Int32)">
      <summary>Returns an index into the collection of checked indexes.</summary>
      <param name="index">The index of the checked item.</param>
      <returns>The index that specifies the index of the checked item or -1 if the <paramref name="index" /> parameter is not in the checked indexes collection. For more information, see the examples in the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" /> class overview.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an item to the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" />. For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
      <param name="value">The object to be added to the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
      <returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Clear">
      <summary>Removes all items from the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" />. For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified index is located within the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" />. For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</summary>
      <param name="index">The index to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified index from the <see cref="T:System.Windows.Forms.CheckedListBox.ObjectCollection" /> for the <see cref="T:System.Windows.Forms.CheckedListBox" /> is an item in this collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</summary>
      <param name="index">The zero-based index from the <see cref="T:System.Windows.Forms.CheckedListBox.ObjectCollection" /> to locate in this collection.</param>
      <returns>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" /> instance is cast to an <see cref="T:System.Collections.IList" /> interface.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
      <param name="index">The index at which value should be inserted.</param>
      <param name="value">The object to be added to the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Remove(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
      <param name="value">The object to be removed from the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>or a description of this member, see <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Count">
      <summary>Gets the number of checked items.</summary>
      <returns>The number of indexes in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Item(System.Int32)">
      <summary>Gets the index of a checked item in the <see cref="T:System.Windows.Forms.CheckedListBox" /> control.</summary>
      <param name="index">An index into the checked indexes collection. This index specifies the index of the checked item you want to retrieve.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="index" /> is less than zero.  
  
 -or-  
  
 The <paramref name="index" /> is not in the collection.</exception>
      <returns>The index of the checked item. For more information, see the examples in the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" /> class overview.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedIndexCollection" /> is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection of controls. For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
      <returns>The <see cref="T:System.Object" /> used to synchronize to the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedIndexCollection.System#Collections#IList#Item(System.Int32)">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the item to get.</param>
      <returns>The index value from the <see cref="T:System.Windows.Forms.CheckedListBox.ObjectCollection" /> that is stored at the specified location.</returns>
    </member>
    <member name="T:System.Windows.Forms.CheckedListBox.CheckedItemCollection">
      <summary>Encapsulates the collection of checked items, including items in an indeterminate state, in a <see cref="T:System.Windows.Forms.CheckedListBox" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.Contains(System.Object)">
      <summary>Determines whether the specified item is located in the collection.</summary>
      <param name="item">An object from the items collection.</param>
      <returns>
        <see langword="true" /> if item is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire collection into an existing array at a specified location within the array.</summary>
      <param name="dest">The destination array.</param>
      <param name="index">The zero-based relative index in <paramref name="dest" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.RankException">
        <paramref name="array" /> is multidimensional.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Array" /> is greater than the available space from index to the end of the destination <see cref="T:System.Array" />.</exception>
      <exception cref="T:System.ArrayTypeMismatchException">The type of the source <see cref="T:System.Array" /> cannot be cast automatically to the type of the destination <see cref="T:System.Array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the <see cref="P:System.Windows.Forms.CheckedListBox.CheckedItems" /> collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> for navigating through the list.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.IndexOf(System.Object)">
      <summary>Returns an index into the collection of checked items.</summary>
      <param name="item">The object whose index you want to retrieve. This object must belong to the checked items collection.</param>
      <returns>The index of the object in the checked item collection or -1 if the object is not in the collection. For more information, see the examples in the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedItemCollection" /> class overview.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#Add(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
      <param name="value">The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />.</param>
      <returns>The zero-based index of the item to add.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#Clear">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The item to insert into the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedItemCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#Remove(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
      <param name="value">The item to remove from the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedItemCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.IsReadOnly">
      <summary>Gets a value indicating if the collection is read-only.</summary>
      <returns>Always <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.Item(System.Int32)">
      <summary>Gets an object in the checked items collection.</summary>
      <param name="index">An index into the collection of checked items. This collection index corresponds to the index of the checked item.</param>
      <exception cref="T:System.NotSupportedException">The object cannot be set.</exception>
      <returns>The object at the specified index. For more information, see the examples in the <see cref="T:System.Windows.Forms.CheckedListBox.CheckedItemCollection" /> class overview.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
      <returns>The <see cref="T:System.Object" /> used to synchronize to the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.CheckedListBox.CheckedItemCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="T:System.Windows.Forms.CheckedListBox.ObjectCollection">
      <summary>Represents the collection of items in a <see cref="T:System.Windows.Forms.CheckedListBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.ObjectCollection.#ctor(System.Windows.Forms.CheckedListBox)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.CheckedListBox.ObjectCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.CheckedListBox" /> that owns the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.ObjectCollection.Add(System.Object,System.Boolean)">
      <summary>Adds an item to the list of items for a <see cref="T:System.Windows.Forms.CheckedListBox" />, specifying the object to add and whether it is checked.</summary>
      <param name="item">An object representing the item to add to the collection.</param>
      <param name="isChecked">
        <see langword="true" /> to check the item; otherwise, <see langword="false" />.</param>
      <returns>The index of the newly added item.</returns>
    </member>
    <member name="M:System.Windows.Forms.CheckedListBox.ObjectCollection.Add(System.Object,System.Windows.Forms.CheckState)">
      <summary>Adds an item to the list of items for a <see cref="T:System.Windows.Forms.CheckedListBox" />, specifying the object to add and the initial checked value.</summary>
      <param name="item">An object representing the item to add to the collection.</param>
      <param name="check">The initial <see cref="T:System.Windows.Forms.CheckState" /> for the checked portion of the item.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The <paramref name="check" /> parameter is not one of the valid <see cref="T:System.Windows.Forms.CheckState" /> values.</exception>
      <returns>The index of the newly added item.</returns>
    </member>
    <member name="T:System.Windows.Forms.CheckState">
      <summary>Specifies the state of a control, such as a check box, that can be checked, unchecked, or set to an indeterminate state.</summary>
    </member>
    <member name="F:System.Windows.Forms.CheckState.Checked">
      <summary>The control is checked.</summary>
    </member>
    <member name="F:System.Windows.Forms.CheckState.Indeterminate">
      <summary>The control is indeterminate. An indeterminate control generally has a shaded appearance.</summary>
    </member>
    <member name="F:System.Windows.Forms.CheckState.Unchecked">
      <summary>The control is unchecked.</summary>
    </member>
    <member name="T:System.Windows.Forms.Clipboard">
      <summary>Provides methods to place data on and retrieve data from the system Clipboard. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.Clear">
      <summary>Removes all data from the Clipboard.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.ContainsAudio">
      <summary>Indicates whether there is data on the Clipboard in the <see cref="F:System.Windows.Forms.DataFormats.WaveAudio" /> format.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>
        <see langword="true" /> if there is audio data on the Clipboard; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.ContainsData(System.String)">
      <summary>Indicates whether there is data on the Clipboard that is in the specified format or can be converted to that format.</summary>
      <param name="format">The format of the data to look for. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>
        <see langword="true" /> if there is data on the Clipboard that is in the specified <paramref name="format" /> or can be converted to that format; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.ContainsFileDropList">
      <summary>Indicates whether there is data on the Clipboard that is in the <see cref="F:System.Windows.Forms.DataFormats.FileDrop" /> format or can be converted to that format.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>
        <see langword="true" /> if there is a file drop list on the Clipboard; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.ContainsImage">
      <summary>Indicates whether there is data on the Clipboard that is in the <see cref="F:System.Windows.Forms.DataFormats.Bitmap" /> format or can be converted to that format.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>
        <see langword="true" /> if there is image data on the Clipboard; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.ContainsText">
      <summary>Indicates whether there is data on the Clipboard in the <see cref="F:System.Windows.Forms.TextDataFormat.Text" /> or <see cref="F:System.Windows.Forms.TextDataFormat.UnicodeText" /> format, depending on the operating system.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>
        <see langword="true" /> if there is text data on the Clipboard; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.ContainsText(System.Windows.Forms.TextDataFormat)">
      <summary>Indicates whether there is text data on the Clipboard in the format indicated by the specified <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</summary>
      <param name="format">One of the <see cref="T:System.Windows.Forms.TextDataFormat" /> values.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="format" /> is not a valid <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</exception>
      <returns>
        <see langword="true" /> if there is text data on the Clipboard in the value specified for <paramref name="format" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.GetAudioStream">
      <summary>Retrieves an audio stream from the Clipboard.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>A <see cref="T:System.IO.Stream" /> containing audio data or <see langword="null" /> if the Clipboard does not contain any data in the <see cref="F:System.Windows.Forms.DataFormats.WaveAudio" /> format.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.GetData(System.String)">
      <summary>Retrieves data from the Clipboard in the specified format.</summary>
      <param name="format">The format of the data to retrieve. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>An <see cref="T:System.Object" /> representing the Clipboard data or <see langword="null" /> if the Clipboard does not contain any data that is in the specified <paramref name="format" /> or can be converted to that format.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.GetDataObject">
      <summary>Retrieves the data that is currently on the system Clipboard.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">Data could not be retrieved from the Clipboard. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode and the <see cref="P:System.Windows.Forms.Application.MessageLoop" /> property value is <see langword="true" />. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>An <see cref="T:System.Windows.Forms.IDataObject" /> that represents the data currently on the Clipboard, or <see langword="null" /> if there is no data on the Clipboard.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.GetFileDropList">
      <summary>Retrieves a collection of file names from the Clipboard.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>A <see cref="T:System.Collections.Specialized.StringCollection" /> containing file names or <see langword="null" /> if the Clipboard does not contain any data that is in the <see cref="F:System.Windows.Forms.DataFormats.FileDrop" /> format or can be converted to that format.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.GetImage">
      <summary>Retrieves an image from the Clipboard.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>An <see cref="T:System.Drawing.Image" /> representing the Clipboard image data or <see langword="null" /> if the Clipboard does not contain any data that is in the <see cref="F:System.Windows.Forms.DataFormats.Bitmap" /> format or can be converted to that format.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.GetText">
      <summary>Retrieves text data from the Clipboard in the <see cref="F:System.Windows.Forms.TextDataFormat.Text" /> or <see cref="F:System.Windows.Forms.TextDataFormat.UnicodeText" /> format, depending on the operating system.</summary>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <returns>The Clipboard text data or <see cref="F:System.String.Empty" /> if the Clipboard does not contain data in the <see cref="F:System.Windows.Forms.TextDataFormat.Text" /> or <see cref="F:System.Windows.Forms.TextDataFormat.UnicodeText" /> format, depending on the operating system.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.GetText(System.Windows.Forms.TextDataFormat)">
      <summary>Retrieves text data from the Clipboard in the format indicated by the specified <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</summary>
      <param name="format">One of the <see cref="T:System.Windows.Forms.TextDataFormat" /> values.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="format" /> is not a valid <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</exception>
      <returns>The Clipboard text data or <see cref="F:System.String.Empty" /> if the Clipboard does not contain data in the specified format.</returns>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetAudio(System.Byte[])">
      <summary>Clears the Clipboard and then adds a <see cref="T:System.Byte" /> array in the <see cref="F:System.Windows.Forms.DataFormats.WaveAudio" /> format after converting it to a <see cref="T:System.IO.Stream" />.</summary>
      <param name="audioBytes">A <see cref="T:System.Byte" /> array containing the audio data.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="audioBytes" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetAudio(System.IO.Stream)">
      <summary>Clears the Clipboard and then adds a <see cref="T:System.IO.Stream" /> in the <see cref="F:System.Windows.Forms.DataFormats.WaveAudio" /> format.</summary>
      <param name="audioStream">A <see cref="T:System.IO.Stream" /> containing the audio data.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="audioStream" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetData(System.String,System.Object)">
      <summary>Clears the Clipboard and then adds data in the specified format.</summary>
      <param name="format">The format of the data to set. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="data">An <see cref="T:System.Object" /> representing the data to add.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="data" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetDataObject(System.Object)">
      <summary>Clears the Clipboard and then places nonpersistent data on it.</summary>
      <param name="data">The data to place on the Clipboard.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">Data could not be placed on the Clipboard. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">The value of <paramref name="data" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetDataObject(System.Object,System.Boolean)">
      <summary>Clears the Clipboard and then places data on it and specifies whether the data should remain after the application exits.</summary>
      <param name="data">The data to place on the Clipboard.</param>
      <param name="copy">
        <see langword="true" /> if you want data to remain on the Clipboard after this application exits; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">Data could not be placed on the Clipboard. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">The value of <paramref name="data" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetDataObject(System.Object,System.Boolean,System.Int32,System.Int32)">
      <summary>Clears the Clipboard and then attempts to place data on it the specified number of times and with the specified delay between attempts, optionally leaving the data on the Clipboard after the application exits.</summary>
      <param name="data">The data to place on the Clipboard.</param>
      <param name="copy">
        <see langword="true" /> if you want data to remain on the Clipboard after this application exits; otherwise, <see langword="false" />.</param>
      <param name="retryTimes">The number of times to attempt placing the data on the Clipboard.</param>
      <param name="retryDelay">The number of milliseconds to pause between attempts.</param>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="data" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="retryTimes" /> is less than zero.  
  
 -or-  
  
 <paramref name="retryDelay" /> is less than zero.</exception>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">Data could not be placed on the Clipboard. This typically occurs when the Clipboard is being used by another process.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetFileDropList(System.Collections.Specialized.StringCollection)">
      <summary>Clears the Clipboard and then adds a collection of file names in the <see cref="F:System.Windows.Forms.DataFormats.FileDrop" /> format.</summary>
      <param name="filePaths">A <see cref="T:System.Collections.Specialized.StringCollection" /> containing the file names.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="filePaths" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="filePaths" /> does not contain any strings.  
  
 -or-  
  
 At least one of the strings in <paramref name="filePaths" /> is <see cref="F:System.String.Empty" />, contains only white space, contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />, is <see langword="null" />, contains a colon (:), or exceeds the system-defined maximum length.  
  
 See the <see cref="P:System.Exception.InnerException" /> property of the <see cref="T:System.ArgumentException" /> for more information.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetImage(System.Drawing.Image)">
      <summary>Clears the Clipboard and then adds an <see cref="T:System.Drawing.Image" /> in the <see cref="F:System.Windows.Forms.DataFormats.Bitmap" /> format.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to add to the Clipboard.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="image" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetText(System.String)">
      <summary>Clears the Clipboard and then adds text data in the <see cref="F:System.Windows.Forms.TextDataFormat.Text" /> or <see cref="F:System.Windows.Forms.TextDataFormat.UnicodeText" /> format, depending on the operating system.</summary>
      <param name="text">The text to add to the Clipboard.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="text" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Clipboard.SetText(System.String,System.Windows.Forms.TextDataFormat)">
      <summary>Clears the Clipboard and then adds text data in the format indicated by the specified <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</summary>
      <param name="text">The text to add to the Clipboard.</param>
      <param name="format">One of the <see cref="T:System.Windows.Forms.TextDataFormat" /> values.</param>
      <exception cref="T:System.Runtime.InteropServices.ExternalException">The Clipboard could not be cleared. This typically occurs when the Clipboard is being used by another process.</exception>
      <exception cref="T:System.Threading.ThreadStateException">The current thread is not in single-threaded apartment (STA) mode. Add the <see cref="T:System.STAThreadAttribute" /> to your application's <see langword="Main" /> method.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="text" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="format" /> is not a valid <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</exception>
    </member>
    <member name="T:System.Windows.Forms.CloseReason">
      <summary>Specifies the reason that a form was closed.</summary>
    </member>
    <member name="F:System.Windows.Forms.CloseReason.ApplicationExitCall">
      <summary>The <see cref="M:System.Windows.Forms.Application.Exit" /> method of the <see cref="T:System.Windows.Forms.Application" /> class was invoked.</summary>
    </member>
    <member name="F:System.Windows.Forms.CloseReason.FormOwnerClosing">
      <summary>The owner form is closing.</summary>
    </member>
    <member name="F:System.Windows.Forms.CloseReason.MdiFormClosing">
      <summary>The parent form of this multiple document interface (MDI) form is closing.</summary>
    </member>
    <member name="F:System.Windows.Forms.CloseReason.None">
      <summary>The cause of the closure was not defined or could not be determined.</summary>
    </member>
    <member name="F:System.Windows.Forms.CloseReason.TaskManagerClosing">
      <summary>
        <para>The Microsoft Windows Task Manager is closing the application.</para>
        <para>In Windows 8.1 and later versions, this member is not used, because Task Manager issues the <c>WM_SYSCOMMAND</c> message with <c>SC_CLOSE</c>. In Windows 7 and earlier versions, the <c>WM_CLOSE</c> message was issued. This action is now indistinguishable from and misclassified as  <c>CloseReason.UserClosing</c>.</para>
      </summary>
    </member>
    <member name="F:System.Windows.Forms.CloseReason.UserClosing">
      <summary>The form is closing either programmatically or through a user action in the user interface (for example, by clicking the Close button on the form window, selecting Close from the window's control menu, or pressing ALT+F4).</summary>
    </member>
    <member name="F:System.Windows.Forms.CloseReason.WindowsShutDown">
      <summary>The operating system is closing all applications before shutting down.</summary>
    </member>
    <member name="T:System.Windows.Forms.ColorDepth">
      <summary>Specifies the number of colors used to display an image in an <see cref="T:System.Windows.Forms.ImageList" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColorDepth.Depth16Bit">
      <summary>A 16-bit image.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColorDepth.Depth24Bit">
      <summary>A 24-bit image.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColorDepth.Depth32Bit">
      <summary>A 32-bit image.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColorDepth.Depth4Bit">
      <summary>A 4-bit image.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColorDepth.Depth8Bit">
      <summary>An 8-bit image.</summary>
    </member>
    <member name="T:System.Windows.Forms.ColorDialog">
      <summary>Represents a common dialog box that displays available colors along with controls that enable the user to define custom colors.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColorDialog.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColorDialog" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColorDialog.Reset">
      <summary>Resets all options to their default values, the last selected color to black, and the custom colors to their default values.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColorDialog.RunDialog(System.IntPtr)">
      <summary>When overridden in a derived class, specifies a common dialog box.</summary>
      <param name="hwndOwner">A value that represents the window handle of the owner window for the common dialog box.</param>
      <returns>
        <see langword="true" /> if the dialog box was successfully run; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ColorDialog.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.ColorDialog" />.</summary>
      <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Windows.Forms.ColorDialog" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColorDialog.AllowFullOpen">
      <summary>Gets or sets a value indicating whether the user can use the dialog box to define custom colors.</summary>
      <returns>
        <see langword="true" /> if the user can define custom colors; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColorDialog.AnyColor">
      <summary>Gets or sets a value indicating whether the dialog box displays all available colors in the set of basic colors.</summary>
      <returns>
        <see langword="true" /> if the dialog box displays all available colors in the set of basic colors; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColorDialog.Color">
      <summary>Gets or sets the color selected by the user.</summary>
      <returns>The color selected by the user. If a color is not selected, the default value is black.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColorDialog.CustomColors">
      <summary>Gets or sets the set of custom colors shown in the dialog box.</summary>
      <returns>A set of custom colors shown by the dialog box. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColorDialog.FullOpen">
      <summary>Gets or sets a value indicating whether the controls used to create custom colors are visible when the dialog box is opened.</summary>
      <returns>
        <see langword="true" /> if the custom color controls are available when the dialog box is opened; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColorDialog.Instance">
      <summary>Gets the underlying window instance handle (HINSTANCE).</summary>
      <returns>An <see cref="T:System.IntPtr" /> that contains the HINSTANCE value of the window handle.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColorDialog.Options">
      <summary>Gets values to initialize the <see cref="T:System.Windows.Forms.ColorDialog" />.</summary>
      <returns>A bitwise combination of internal values that initializes the <see cref="T:System.Windows.Forms.ColorDialog" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColorDialog.ShowHelp">
      <summary>Gets or sets a value indicating whether a Help button appears in the color dialog box.</summary>
      <returns>
        <see langword="true" /> if the Help button is shown in the dialog box; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColorDialog.SolidColorOnly">
      <summary>Gets or sets a value indicating whether the dialog box will restrict users to selecting solid colors only.</summary>
      <returns>
        <see langword="true" /> if users can select only solid colors; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ColumnClickEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.ColumnClick" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnClickEventArgs.#ctor(System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnClickEventArgs" /> class.</summary>
      <param name="column">The zero-based index of the column that is clicked.</param>
    </member>
    <member name="P:System.Windows.Forms.ColumnClickEventArgs.Column">
      <summary>Gets the zero-based index of the column that is clicked.</summary>
      <returns>The zero-based index within the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" /> of the column that is clicked.</returns>
    </member>
    <member name="T:System.Windows.Forms.ColumnClickEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.ColumnClick" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ColumnClickEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ColumnHeader">
      <summary>Displays a single column header in a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeader.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnHeader" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeader.#ctor(System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnHeader" /> class with the image specified.</summary>
      <param name="imageIndex">The index of the image to display in the <see cref="T:System.Windows.Forms.ColumnHeader" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeader.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnHeader" /> class with the image specified.</summary>
      <param name="imageKey">The key of the image to display in the <see cref="T:System.Windows.Forms.ColumnHeader" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeader.AutoResize(System.Windows.Forms.ColumnHeaderAutoResizeStyle)">
      <summary>Resizes the width of the column as indicated by the resize style.</summary>
      <param name="headerAutoResize">One of the <see cref="T:System.Windows.Forms.ColumnHeaderAutoResizeStyle" /> values.</param>
      <exception cref="T:System.InvalidOperationException">A value other than <see cref="F:System.Windows.Forms.ColumnHeaderAutoResizeStyle.None" /> is passed to the <see cref="M:System.Windows.Forms.ColumnHeader.AutoResize(System.Windows.Forms.ColumnHeaderAutoResizeStyle)" /> method when the <see cref="P:System.Windows.Forms.ListView.View" /> property is a value other than <see cref="F:System.Windows.Forms.View.Details" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeader.Clone">
      <summary>Creates an identical copy of the current <see cref="T:System.Windows.Forms.ColumnHeader" /> that is not attached to any list view control.</summary>
      <returns>An object representing a copy of this <see cref="T:System.Windows.Forms.ColumnHeader" /> object.</returns>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeader.Dispose(System.Boolean)">
      <summary>Disposes of the resources (other than memory) used by the <see cref="T:System.Windows.Forms.ColumnHeader" />.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeader.ToString">
      <summary>Returns a <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any. This method should not be overridden.</summary>
      <returns>A <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any, or <see langword="null" /> if the <see cref="T:System.ComponentModel.Component" /> is unnamed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.DisplayIndex">
      <summary>Gets or sets the display order of the column relative to the currently displayed columns.</summary>
      <returns>The display order of the column, relative to the currently displayed columns.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.ImageIndex">
      <summary>Gets or sets the index of the image displayed in the <see cref="T:System.Windows.Forms.ColumnHeader" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than -1.</exception>
      <returns>The index of the image displayed in the <see cref="T:System.Windows.Forms.ColumnHeader" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.ImageKey">
      <summary>Gets or sets the key of the image displayed in the column.</summary>
      <returns>The key of the image displayed in the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.ImageList">
      <summary>Gets the image list associated with the <see cref="T:System.Windows.Forms.ColumnHeader" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ImageList" /> associated with the <see cref="T:System.Windows.Forms.ColumnHeader" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.Index">
      <summary>Gets the location with the <see cref="T:System.Windows.Forms.ListView" /> control's <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" /> of this column.</summary>
      <returns>The zero-based index of the column header within the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" /> of the <see cref="T:System.Windows.Forms.ListView" /> control it is contained in.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.ListView">
      <summary>Gets the <see cref="T:System.Windows.Forms.ListView" /> control the <see cref="T:System.Windows.Forms.ColumnHeader" /> is located in.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListView" /> control that represents the control that contains the <see cref="T:System.Windows.Forms.ColumnHeader" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.Name">
      <summary>Gets or sets the name of the <see cref="T:System.Windows.Forms.ColumnHeader" />.</summary>
      <returns>The name of the <see cref="T:System.Windows.Forms.ColumnHeader" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.Tag">
      <summary>Gets or sets an object that contains data to associate with the <see cref="T:System.Windows.Forms.ColumnHeader" />.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data to associate with the <see cref="T:System.Windows.Forms.ColumnHeader" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.Text">
      <summary>Gets or sets the text displayed in the column header.</summary>
      <returns>The text displayed in the column header.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.TextAlign">
      <summary>Gets or sets the horizontal alignment of the text displayed in the <see cref="T:System.Windows.Forms.ColumnHeader" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values. The default is <see cref="F:System.Windows.Forms.HorizontalAlignment.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnHeader.Width">
      <summary>Gets or sets the width of the column.</summary>
      <returns>The width of the column, in pixels.</returns>
    </member>
    <member name="T:System.Windows.Forms.ColumnHeaderAutoResizeStyle">
      <summary>Specifies how a column contained in a <see cref="T:System.Windows.Forms.ListView" /> should be resized.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColumnHeaderAutoResizeStyle.ColumnContent">
      <summary>Specifies the column should be resized based on the length of the column content.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColumnHeaderAutoResizeStyle.HeaderSize">
      <summary>Specifies the column should be resized based on the length of the column header content.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColumnHeaderAutoResizeStyle.None">
      <summary>Specifies no resizing should occur.</summary>
    </member>
    <member name="T:System.Windows.Forms.ColumnHeaderConverter">
      <summary>Provides a type converter to convert <see cref="T:System.Windows.Forms.ColumnHeader" /> objects from one type to another.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeaderConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnHeaderConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeaderConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns a value indicating whether the <see cref="T:System.Windows.Forms.ColumnHeaderConverter" /> can convert a <see cref="T:System.Windows.Forms.ColumnHeader" /> to the specified type, using the specified context.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">A type representing the type to convert to.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ColumnHeaderConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the specified object to the specified type, using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that represents information about a culture, such as language and calendar system. Can be <see langword="null" />.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <param name="destinationType">The <see cref="T:System.Type" /> to convert to.</param>
      <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
      <returns>The <see cref="T:System.Object" /> that is the result of the conversion.</returns>
    </member>
    <member name="T:System.Windows.Forms.ColumnHeaderStyle">
      <summary>Specifies the styles of the column headers in a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColumnHeaderStyle.Clickable">
      <summary>The column headers function like buttons and can carry out an action, such as sorting, when clicked.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColumnHeaderStyle.Nonclickable">
      <summary>The column headers do not respond to the click of a mouse.</summary>
    </member>
    <member name="F:System.Windows.Forms.ColumnHeaderStyle.None">
      <summary>The column header is not displayed in report view.</summary>
    </member>
    <member name="T:System.Windows.Forms.ColumnReorderedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.ColumnReordered" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnReorderedEventArgs.#ctor(System.Int32,System.Int32,System.Windows.Forms.ColumnHeader)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnReorderedEventArgs" /> class.</summary>
      <param name="oldDisplayIndex">The previous display position of the <see cref="T:System.Windows.Forms.ColumnHeader" />.</param>
      <param name="newDisplayIndex">The new display position for the <see cref="T:System.Windows.Forms.ColumnHeader" />.</param>
      <param name="header">The <see cref="T:System.Windows.Forms.ColumnHeader" /> that is being reordered.</param>
    </member>
    <member name="P:System.Windows.Forms.ColumnReorderedEventArgs.Header">
      <summary>Gets the <see cref="T:System.Windows.Forms.ColumnHeader" /> that is being reordered.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> that is being reordered.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnReorderedEventArgs.NewDisplayIndex">
      <summary>Gets the new display position of the <see cref="T:System.Windows.Forms.ColumnHeader" />.</summary>
      <returns>The new display position of the <see cref="T:System.Windows.Forms.ColumnHeader" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnReorderedEventArgs.OldDisplayIndex">
      <summary>Gets the previous display position of the <see cref="T:System.Windows.Forms.ColumnHeader" />.</summary>
      <returns>The previous display position of the <see cref="T:System.Windows.Forms.ColumnHeader" /></returns>
    </member>
    <member name="T:System.Windows.Forms.ColumnReorderedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.ColumnReordered" /> event of the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ColumnReorderedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ColumnStyle">
      <summary>Represents the look and feel of a column in a table layout.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnStyle.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnStyle" /> class to its default state.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnStyle.#ctor(System.Windows.Forms.SizeType)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnStyle" /> class using the supplied <see cref="T:System.Windows.Forms.SizeType" /> value.</summary>
      <param name="sizeType">A <see cref="P:System.Windows.Forms.TableLayoutStyle.SizeType" /> indicating how the column should be should be sized relative to its containing table.</param>
    </member>
    <member name="M:System.Windows.Forms.ColumnStyle.#ctor(System.Windows.Forms.SizeType,System.Single)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnStyle" /> class using the supplied <see cref="T:System.Windows.Forms.SizeType" /> and width values.</summary>
      <param name="sizeType">A <see cref="P:System.Windows.Forms.TableLayoutStyle.SizeType" /> indicating how the column should be should be sized relative to its containing table.</param>
      <param name="width">The preferred width, in pixels or percentage, depending on the <paramref name="sizeType" /> parameter.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="width" /> is less than 0.</exception>
    </member>
    <member name="P:System.Windows.Forms.ColumnStyle.Width">
      <summary>Gets or sets the width value for a column.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 0 when setting this property.</exception>
      <returns>The preferred width, in pixels or percentage, depending on the <see cref="P:System.Windows.Forms.TableLayoutStyle.SizeType" /> property.</returns>
    </member>
    <member name="T:System.Windows.Forms.ColumnWidthChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.ColumnWidthChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnWidthChangedEventArgs.#ctor(System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnWidthChangedEventArgs" /> class.</summary>
      <param name="columnIndex">The index of the column whose width is being changed.</param>
    </member>
    <member name="P:System.Windows.Forms.ColumnWidthChangedEventArgs.ColumnIndex">
      <summary>Gets the column index for the column whose width is being changed.</summary>
      <returns>The index of the column whose width is being changed.</returns>
    </member>
    <member name="T:System.Windows.Forms.ColumnWidthChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.ColumnWidthChanged" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ColumnWidthChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ColumnWidthChangingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.ColumnWidthChanging" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ColumnWidthChangingEventArgs.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnWidthChangingEventArgs" /> class with the specified column index and width.</summary>
      <param name="columnIndex">The index of the column whose width is changing.</param>
      <param name="newWidth">The new width for the column.</param>
    </member>
    <member name="M:System.Windows.Forms.ColumnWidthChangingEventArgs.#ctor(System.Int32,System.Int32,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ColumnWidthChangingEventArgs" /> class, specifying the column index and width and whether to cancel the event.</summary>
      <param name="columnIndex">The index of the column whose width is changing.</param>
      <param name="newWidth">The new width of the column.</param>
      <param name="cancel">
        <see langword="true" /> to cancel the width change; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ColumnWidthChangingEventArgs.ColumnIndex">
      <summary>Gets the index of the column whose width is changing.</summary>
      <returns>The index of the column whose width is changing.</returns>
    </member>
    <member name="P:System.Windows.Forms.ColumnWidthChangingEventArgs.NewWidth">
      <summary>Gets or sets the new width for the column.</summary>
      <returns>The new width for the column.</returns>
    </member>
    <member name="T:System.Windows.Forms.ColumnWidthChangingEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.ColumnWidthChanging" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ColumnWidthChangingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ComboBox">
      <summary>Represents a Windows combo box control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ComboBox.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ComboBox.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.DoubleClick">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.DrawItem">
      <summary>Occurs when a visual aspect of an owner-drawn <see cref="T:System.Windows.Forms.ComboBox" /> changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.DropDown">
      <summary>Occurs when the drop-down portion of a <see cref="T:System.Windows.Forms.ComboBox" /> is shown.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.DropDownClosed">
      <summary>Occurs when the drop-down portion of the <see cref="T:System.Windows.Forms.ComboBox" /> is no longer visible.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.DropDownStyleChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ComboBox.DropDownStyle" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.MeasureItem">
      <summary>Occurs each time an owner-drawn <see cref="T:System.Windows.Forms.ComboBox" /> item needs to be drawn and when the sizes of the list items are determined.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.PaddingChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.Paint">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ComboBox" /> control is redrawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.SelectedIndexChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ComboBox.SelectedIndex" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.SelectionChangeCommitted">
      <summary>Occurs when the user changes the selected item and that change is displayed in the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComboBox.TextUpdate">
      <summary>Occurs when the control has formatted the text, but before the text is displayed.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ComboBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.AddItemsCore(System.Object[])">
      <summary>Adds the specified items to the combo box.</summary>
      <param name="value">The items to add.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.BeginUpdate">
      <summary>Maintains performance when items are added to the <see cref="T:System.Windows.Forms.ComboBox" /> one at a time.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the control.</summary>
      <returns>A new accessibility object for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.CreateHandle">
      <summary>Creates a handle for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ComboBox" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.EndUpdate">
      <summary>Resumes painting the <see cref="T:System.Windows.Forms.ComboBox" /> control after painting is suspended by the <see cref="M:System.Windows.Forms.ComboBox.BeginUpdate" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.FindString(System.String)">
      <summary>Returns the index of the first item in the <see cref="T:System.Windows.Forms.ComboBox" /> that starts with the specified string.</summary>
      <param name="s">The <see cref="T:System.String" /> to search for.</param>
      <returns>The zero-based index of the first item found; returns -1 if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.FindString(System.String,System.Int32)">
      <summary>Returns the index of the first item in the <see cref="T:System.Windows.Forms.ComboBox" /> beyond the specified index that contains the specified string. The search is not case sensitive.</summary>
      <param name="s">The <see cref="T:System.String" /> to search for.</param>
      <param name="startIndex">The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="startIndex" /> is less than -1.  
  
 -or-  
  
 The <paramref name="startIndex" /> is greater than the last index in the collection.</exception>
      <returns>The zero-based index of the first item found; returns -1 if no match is found, or 0 if the <paramref name="s" /> parameter specifies <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.FindStringExact(System.String)">
      <summary>Finds the first item in the combo box that matches the specified string.</summary>
      <param name="s">The <see cref="T:System.String" /> to search for.</param>
      <returns>The zero-based index of the first item found; returns -1 if no match is found, or 0 if the <paramref name="s" /> parameter specifies <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.FindStringExact(System.String,System.Int32)">
      <summary>Finds the first item after the specified index that matches the specified string.</summary>
      <param name="s">The <see cref="T:System.String" /> to search for.</param>
      <param name="startIndex">The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="startIndex" /> is less than -1.  
  
 -or-  
  
 The <paramref name="startIndex" /> is equal to the last index in the collection.</exception>
      <returns>The zero-based index of the first item found; returns -1 if no match is found, or 0 if the <paramref name="s" /> parameter specifies <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.GetItemHeight(System.Int32)">
      <summary>Returns the height of an item in the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <param name="index">The index of the item to return the height of.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> is less than zero.  
  
 -or-  
  
 The <paramref name="index" /> is greater than count of items in the list.</exception>
      <returns>The height, in pixels, of the item at the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnDataSourceChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.DataSourceChanged" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnDisplayMemberChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.DisplayMemberChanged" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.DrawItem" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnDropDown(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.DropDown" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnDropDownClosed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.DropDownClosed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnDropDownStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.DropDownStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ForeColorChanged" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.MeasureItem" /> event.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.MeasureItemEventArgs" /> that was raised.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnMouseEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseEnter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnParentBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnSelectedIndexChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.SelectedIndexChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnSelectedItemChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DomainUpDown.SelectedItemChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnSelectedValueChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.SelectedValueChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnSelectionChangeCommitted(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.SelectionChangeCommitted" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnTextUpdate(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.TextUpdate" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.OnValidating(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Validating" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="msg">The window message to process, passed by reference.</param>
      <param name="keyData">One of the enumeration values that represent the key to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ProcessKeyEventArgs(System.Windows.Forms.Message@)">
      <summary>Processes a key message and generates the appropriate control events.</summary>
      <param name="m">A message object, passed by reference, that represents the window message to process.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.RefreshItem(System.Int32)">
      <summary>Refreshes the item contained at the specified location.</summary>
      <param name="index">The location of the item to refresh.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.RefreshItems">
      <summary>Refreshes all <see cref="T:System.Windows.Forms.ComboBox" /> items.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ResetText">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.Text" /> property to its default value (<see cref="F:System.String.Empty" />).</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Scales a control's location, size, padding, and margin.</summary>
      <param name="factor">The factor by which the height and width of the control will be scaled.</param>
      <param name="specified">A value that specifies the bounds of the control to use when defining its size and position.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.Select(System.Int32,System.Int32)">
      <summary>Selects a range of text in the editable portion of the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <param name="start">The position of the first character in the current text selection within the text box.</param>
      <param name="length">The number of characters to select.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="start" /> is less than zero.  
  
 -or-  
  
 <paramref name="start" /> plus <paramref name="length" /> is less than zero.</exception>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.SelectAll">
      <summary>Selects all the text in the editable portion of the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Sets the size and location of the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <param name="x">The horizontal location in pixels of the control.</param>
      <param name="y">The vertical location in pixels of the control.</param>
      <param name="width">The width in pixels of the control.</param>
      <param name="height">The height in pixels of the control.</param>
      <param name="specified">One of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.SetItemCore(System.Int32,System.Object)">
      <summary>When overridden in a derived class, sets the object with the specified index in the derived class.</summary>
      <param name="index">The array index of the object.</param>
      <param name="value">The object.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.SetItemsCore(System.Collections.IList)">
      <summary>When overridden in a derived class, sets the specified array of objects in a collection in the derived class.</summary>
      <param name="value">An array of items.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.ComboBox" /> control.</summary>
      <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Windows.Forms.ComboBox" />. The string includes the type and the number of items in the <see cref="T:System.Windows.Forms.ComboBox" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.AutoCompleteCustomSource">
      <summary>Gets or sets a custom <see cref="T:System.Collections.Specialized.StringCollection" /> to use when the <see cref="P:System.Windows.Forms.ComboBox.AutoCompleteSource" /> property is set to <see langword="CustomSource" />.</summary>
      <returns>A <see cref="T:System.Collections.Specialized.StringCollection" /> to use with <see cref="P:System.Windows.Forms.ComboBox.AutoCompleteSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.AutoCompleteMode">
      <summary>Gets or sets an option that controls how automatic completion works for the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the values of <see cref="T:System.Windows.Forms.AutoCompleteMode" />.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.AutoCompleteMode" />. The values are <see cref="F:System.Windows.Forms.AutoCompleteMode.Append" />, <see cref="F:System.Windows.Forms.AutoCompleteMode.None" />, <see cref="F:System.Windows.Forms.AutoCompleteMode.Suggest" />, and <see cref="F:System.Windows.Forms.AutoCompleteMode.SuggestAppend" />. The default is <see cref="F:System.Windows.Forms.AutoCompleteMode.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.AutoCompleteSource">
      <summary>Gets or sets a value specifying the source of complete strings used for automatic completion.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the values of <see cref="T:System.Windows.Forms.AutoCompleteSource" />.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.AutoCompleteSource" />. The options are <see langword="AllSystemSources" />, <see langword="AllUrl" />, <see langword="FileSystem" />, <see langword="HistoryList" />, <see langword="RecentlyUsedList" />, <see langword="CustomSource" />, and <see langword="None" />. The default is <see langword="None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A color object that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.BackgroundImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>The background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.BackgroundImageLayout">
      <summary>Gets or sets the background image layout as defined in the <see cref="T:System.Windows.Forms.ImageLayout" /> enumeration.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the values of <see cref="T:System.Windows.Forms.ImageLayout" />.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.ImageLayout" /> (<see langword="Center" />, <see langword="None" />, <see langword="Stretch" />, <see langword="Tile" />, or <see langword="Zoom" />).</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.DataSource">
      <summary>Gets or sets the data source for this <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <returns>An object that implements the <see cref="T:System.Collections.IList" /> interface or an <see cref="T:System.Array" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default size of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.DrawMode">
      <summary>Gets or sets a value indicating whether your code or the operating system will handle drawing of elements in the list.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value is not a valid <see cref="T:System.Windows.Forms.DrawMode" /> enumeration value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DrawMode" /> enumeration values. The default is <see cref="F:System.Windows.Forms.DrawMode.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.DropDownHeight">
      <summary>Gets or sets the height in pixels of the drop-down portion of the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <exception cref="T:System.ArgumentException">The specified value is less than one.</exception>
      <returns>The height, in pixels, of the drop-down box.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.DropDownStyle">
      <summary>Gets or sets a value specifying the style of the combo box.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.ComboBoxStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ComboBoxStyle" /> values. The default is <see langword="DropDown" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.DropDownWidth">
      <summary>Gets or sets the width of the of the drop-down portion of a combo box.</summary>
      <exception cref="T:System.ArgumentException">The specified value is less than one.</exception>
      <returns>The width, in pixels, of the drop-down box.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.DroppedDown">
      <summary>Gets or sets a value indicating whether the combo box is displaying its drop-down portion.</summary>
      <returns>
        <see langword="true" /> if the drop-down portion is displayed; otherwise, <see langword="false" />. The default is false.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.FlatStyle">
      <summary>Gets or sets the appearance of the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the values of <see cref="T:System.Windows.Forms.FlatStyle" />.</exception>
      <returns>One of the enumeration values that specifies the appearance of the control. The options are <see langword="Flat" />, <see langword="Popup" />, <see langword="Standard" />, and <see langword="System" />. The default is <see langword="Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.Focused">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ComboBox" /> has focus.</summary>
      <returns>
        <see langword="true" /> if this control has focus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.ForeColor">
      <summary>Gets or sets the foreground color of the control.</summary>
      <returns>The foreground color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.IntegralHeight">
      <summary>Gets or sets a value indicating whether the control should resize to avoid showing partial items.</summary>
      <returns>
        <see langword="true" /> if the list portion can contain only complete items; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.ItemHeight">
      <summary>Gets or sets the height of an item in the combo box.</summary>
      <exception cref="T:System.ArgumentException">The item height value is less than zero.</exception>
      <returns>The height, in pixels, of an item in the combo box.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.Items">
      <summary>Gets an object representing the collection of the items contained in this <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ComboBox.ObjectCollection" /> representing the items in the <see cref="T:System.Windows.Forms.ComboBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.MaxDropDownItems">
      <summary>Gets or sets the maximum number of items to be shown in the drop-down portion of the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <exception cref="T:System.ArgumentException">The maximum number is set less than one or greater than 100.</exception>
      <returns>The maximum number of items of in the drop-down portion. The minimum for this property is 1 and the maximum is 100.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.MaximumSize">
      <summary>Gets or sets the size that is the upper limit that the <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> method can specify.</summary>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.MaxLength">
      <summary>Gets or sets the number of characters a user can type into the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <returns>The maximum number of characters a user can enter. Values of less than zero are reset to zero, which is the default value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.MinimumSize">
      <summary>Gets or sets the size that is the lower limit that the <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> method can specify.</summary>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.Padding">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.PreferredHeight">
      <summary>Gets the preferred height of the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <returns>The preferred height, in pixels, of the item area of the combo box.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.SelectedIndex">
      <summary>Gets or sets the index specifying the currently selected item.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified index is less than or equal to -2.  
  
 -or-  
  
 The specified index is greater than or equal to the number of items in the combo box.</exception>
      <returns>A zero-based index of the currently selected item. A value of negative one (-1) is returned if no item is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.SelectedItem">
      <summary>Gets or sets currently selected item in the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <returns>The object that is the currently selected item or <see langword="null" /> if there is no currently selected item.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.SelectedText">
      <summary>Gets or sets the text that is selected in the editable portion of a <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <returns>A string that represents the currently selected text in the combo box. If <see cref="P:System.Windows.Forms.ComboBox.DropDownStyle" /> is set to <see cref="F:System.Windows.Forms.ComboBoxStyle.DropDownList" />, the return value is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.SelectionLength">
      <summary>Gets or sets the number of characters selected in the editable portion of the combo box.</summary>
      <exception cref="T:System.ArgumentException">The value was less than zero.</exception>
      <returns>The number of characters selected in the combo box.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.SelectionStart">
      <summary>Gets or sets the starting index of text selected in the combo box.</summary>
      <exception cref="T:System.ArgumentException">The value is less than zero.</exception>
      <returns>The zero-based index of the first character in the string of the current text selection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.Sorted">
      <summary>Gets or sets a value indicating whether the items in the combo box are sorted.</summary>
      <exception cref="T:System.ArgumentException">An attempt was made to sort a <see cref="T:System.Windows.Forms.ComboBox" /> that is attached to a data source.</exception>
      <returns>
        <see langword="true" /> if the combo box is sorted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="T:System.Windows.Forms.ComboBox.ChildAccessibleObject">
      <summary>Provides information about the <see cref="T:System.Windows.Forms.ComboBox" /> control to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ChildAccessibleObject.#ctor(System.Windows.Forms.ComboBox,System.IntPtr)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ComboBox.ChildAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ComboBox" /> control that owns the <see cref="T:System.Windows.Forms.ComboBox.ChildAccessibleObject" />.</param>
      <param name="handle">A handle to part of the <see cref="T:System.Windows.Forms.ComboBox" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="owner" /> is null.</exception>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.ChildAccessibleObject.Name">
      <summary>Gets the name of the object.</summary>
      <returns>The value of the <see cref="P:System.Windows.Forms.ComboBox.ChildAccessibleObject.Name" /> property is the same as the <see cref="P:System.Windows.Forms.AccessibleObject.Name" /> property for the <see cref="T:System.Windows.Forms.AccessibleObject" /> of the <see cref="T:System.Windows.Forms.ComboBox" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ComboBox.ObjectCollection">
      <summary>Represents the collection of items in a <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.#ctor(System.Windows.Forms.ComboBox)">
      <summary>Initializes a new instance of <see cref="T:System.Windows.Forms.ComboBox.ObjectCollection" />.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ComboBox" /> that owns this object collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.Add(System.Object)">
      <summary>Adds an item to the list of items for a <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <param name="item">An object representing the item to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="item" /> parameter was <see langword="null" />.</exception>
      <returns>The zero-based index of the item in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.AddRange(System.Object[])">
      <summary>Adds an array of items to the list of items for a <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <param name="items">An array of objects to add to the list.</param>
      <exception cref="T:System.ArgumentNullException">An item in the <paramref name="items" /> parameter was <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.Clear">
      <summary>Removes all items from the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.Contains(System.Object)">
      <summary>Determines if the specified item is located within the collection.</summary>
      <param name="value">An object representing the item to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the item is located within the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.CopyTo(System.Object[],System.Int32)">
      <summary>Copies the entire collection into an existing array of objects at a specified location within the array.</summary>
      <param name="destination">The object array to copy the collection to.</param>
      <param name="arrayIndex">The location in the destination array to copy the collection to.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the item collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the item collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.IndexOf(System.Object)">
      <summary>Retrieves the index within the collection of the specified item.</summary>
      <param name="value">An object representing the item to locate in the collection.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter was <see langword="null" />.</exception>
      <returns>The zero-based index where the item is located within the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="item">An object representing the item to insert.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="item" /> was <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> was less than zero.  
  
 -or-  
  
 The <paramref name="index" /> was greater than the count of items in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.Remove(System.Object)">
      <summary>Removes the specified item from the <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
      <param name="value">The <see cref="T:System.Object" /> to remove from the list.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.RemoveAt(System.Int32)">
      <summary>Removes an item from the <see cref="T:System.Windows.Forms.ComboBox" /> at the specified index.</summary>
      <param name="index">The index of the item to remove.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="value" /> parameter was less than zero.  
  
 -or-  
  
 The <paramref name="value" /> parameter was greater than or equal to the count of items in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#Generic#IComparer{System#Windows#Forms#ComboBox+ObjectCollection+Entry}#Compare(System.Windows.Forms.ComboBox.ObjectCollection.Entry,System.Windows.Forms.ComboBox.ObjectCollection.Entry)">
      <summary>Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.</summary>
      <param name="entry1"> The entry to be compared</param>
      <param name="entry2"> The entry to compare with.</param>
      <returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />, as shown in the following table.   
 <list type="table"><listheader><term> Value</term><description> Meaning</description></listheader><item><term> Less than zero</term><description><paramref name="x" /> is less than <paramref name="y" />.</description></item><item><term> Zero</term><description><paramref name="x" /> equals <paramref name="y" />.</description></item><item><term> Greater than zero</term><description><paramref name="x" /> is greater than <paramref name="y" />.</description></item></list></returns>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>For a description of this member, see <see cref="M:System.Collections.ICollection.CopyTo(System.Array,System.Int32)" />.</summary>
      <param name="destination">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
    </member>
    <member name="M:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#IList#Add(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
      <param name="item">An object that represents the item to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="item" /> parameter is <see langword="null" />.</exception>
      <exception cref="T:System.SystemException">There is insufficient space available to store the new item.</exception>
      <returns>The zero-based index of the item in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.ObjectCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.ObjectCollection.IsReadOnly">
      <summary>Gets a value indicating whether this collection can be modified.</summary>
      <returns>Always <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.ObjectCollection.Item(System.Int32)">
      <summary>Retrieves the item at the specified index within the collection.</summary>
      <param name="index">The index of the item in the collection to retrieve.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index was less than zero.  
  
 -or-  
  
 The <paramref name="index" /> was greater of equal to the count of items in the collection.</exception>
      <returns>An object representing the item located at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.ComboBox.ObjectCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ComboBox.ObjectCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="T:System.Windows.Forms.ComboBoxRenderer">
      <summary>Provides methods used to render a combo box control with visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComboBoxRenderer.DrawDropDownButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ComboBoxState)">
      <summary>Draws a drop-down arrow with the current visual style of the operating system.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the drop-down arrow.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the drop-down arrow.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ComboBoxState" /> values that specifies the visual state of the drop-down arrow.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.ComboBoxState)">
      <summary>Draws a text box in the specified state and bounds, with the specified text, text formatting, and text bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="comboBoxText">The <see cref="T:System.String" /> to draw in the text box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="comboBoxText" />.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds in which to draw <paramref name="comboBoxText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ComboBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ComboBoxState)">
      <summary>Draws a text box in the specified state and bounds, with the specified text and text bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="comboBoxText">The <see cref="T:System.String" /> to draw in the text box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="comboBoxText" />.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds in which to draw <paramref name="comboBoxText" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ComboBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.ComboBoxState)">
      <summary>Draws a text box in the specified state and bounds, with the specified text and text formatting.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="comboBoxText">The <see cref="T:System.String" /> to draw in the text box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="comboBoxText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ComboBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.VisualStyles.ComboBoxState)">
      <summary>Draws a text box in the specified state and bounds, with the specified text.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="comboBoxText">The <see cref="T:System.String" /> to draw in the text box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="comboBoxText" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ComboBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ComboBoxState)">
      <summary>Draws a text box in the specified state and bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ComboBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="P:System.Windows.Forms.ComboBoxRenderer.IsSupported">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ComboBoxRenderer" /> class can be used to draw a combo box with visual styles.</summary>
      <returns>
        <see langword="true" /> if the user has enabled visual styles in the operating system and visual styles are applied to the client area of application windows; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ComboBoxStyle">
      <summary>Specifies the <see cref="T:System.Windows.Forms.ComboBox" /> style.</summary>
    </member>
    <member name="F:System.Windows.Forms.ComboBoxStyle.DropDown">
      <summary>Specifies that the list is displayed by clicking the down arrow and that the text portion is editable. This means that the user can enter a new value and is not limited to selecting an existing value in the list. When using this setting, the <see cref="F:System.Windows.Forms.AutoCompleteMode.Append" /> value of <see cref="P:System.Windows.Forms.ComboBox.AutoCompleteMode" /> works the same as the <see cref="F:System.Windows.Forms.AutoCompleteMode.SuggestAppend" /> value. This is the default style.</summary>
    </member>
    <member name="F:System.Windows.Forms.ComboBoxStyle.DropDownList">
      <summary>Specifies that the list is displayed by clicking the down arrow and that the text portion is not editable. This means that the user cannot enter a new value. Only values already in the list can be selected. The list displays only if <see cref="P:System.Windows.Forms.ComboBox.AutoCompleteMode" /> is <see cref="F:System.Windows.Forms.AutoCompleteMode.Suggest" /> or <see cref="F:System.Windows.Forms.AutoCompleteMode.SuggestAppend" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ComboBoxStyle.Simple">
      <summary>Specifies that the list is always visible and that the text portion is editable. This means that the user can enter a new value and is not limited to selecting an existing value in the list.</summary>
    </member>
    <member name="T:System.Windows.Forms.CommonDialog">
      <summary>Specifies the base class used for displaying dialog boxes on the screen.</summary>
    </member>
    <member name="E:System.Windows.Forms.CommonDialog.HelpRequest">
      <summary>Occurs when the user clicks the Help button on a common dialog box.</summary>
    </member>
    <member name="M:System.Windows.Forms.CommonDialog.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.CommonDialog" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.CommonDialog.HookProc(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)">
      <summary>Defines the common dialog box hook procedure that is overridden to add specific functionality to a common dialog box.</summary>
      <param name="hWnd">The handle to the dialog box window.</param>
      <param name="msg">The message being received.</param>
      <param name="wparam">Additional information about the message.</param>
      <param name="lparam">Additional information about the message.</param>
      <returns>A zero value if the default dialog box procedure processes the message; a nonzero value if the default dialog box procedure ignores the message.</returns>
    </member>
    <member name="M:System.Windows.Forms.CommonDialog.OnHelpRequest(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CommonDialog.HelpRequest" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.HelpEventArgs" /> that provides the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CommonDialog.OwnerWndProc(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)">
      <summary>Defines the owner window procedure that is overridden to add specific functionality to a common dialog box.</summary>
      <param name="hWnd">The window handle of the message to send.</param>
      <param name="msg">The Win32 message to send.</param>
      <param name="wparam">The <paramref name="wparam" /> to send with the message.</param>
      <param name="lparam">The <paramref name="lparam" /> to send with the message.</param>
      <returns>The result of the message processing, which is dependent on the message sent.</returns>
    </member>
    <member name="M:System.Windows.Forms.CommonDialog.Reset">
      <summary>When overridden in a derived class, resets the properties of a common dialog box to their default values.</summary>
    </member>
    <member name="M:System.Windows.Forms.CommonDialog.RunDialog(System.IntPtr)">
      <summary>When overridden in a derived class, specifies a common dialog box.</summary>
      <param name="hwndOwner">A value that represents the window handle of the owner window for the common dialog box.</param>
      <returns>
        <see langword="true" /> if the dialog box was successfully run; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.CommonDialog.ShowDialog">
      <summary>Runs a common dialog box with a default owner.</summary>
      <returns>
        <see cref="F:System.Windows.Forms.DialogResult.OK" /> if the user clicks OK in the dialog box; otherwise, <see cref="F:System.Windows.Forms.DialogResult.Cancel" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.CommonDialog.ShowDialog(System.Windows.Forms.IWin32Window)">
      <summary>Runs a common dialog box with the specified owner.</summary>
      <param name="owner">Any object that implements <see cref="T:System.Windows.Forms.IWin32Window" /> that represents the top-level window that will own the modal dialog box.</param>
      <returns>
        <see cref="F:System.Windows.Forms.DialogResult.OK" /> if the user clicks OK in the dialog box; otherwise, <see cref="F:System.Windows.Forms.DialogResult.Cancel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CommonDialog.Tag">
      <summary>Gets or sets an object that contains data about the control.</summary>
      <returns>The object that contains data about the <see cref="T:System.Windows.Forms.CommonDialog" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant">
      <summary>Facilitates proper recognition of a variant type.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant" /> class.</summary>
    </member>
    <member name="T:System.Windows.Forms.ComponentModel.Com2Interop.ICom2PropertyPageDisplayService">
      <summary>Defines a method that shows the property page for an ActiveX control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComponentModel.Com2Interop.ICom2PropertyPageDisplayService.ShowPropertyPage(System.String,System.Object,System.Int32,System.Guid,System.IntPtr)">
      <summary>Shows a property page for the specified object.</summary>
      <param name="title">A string that is the title of the property page.</param>
      <param name="component">The object for which the property page is created.</param>
      <param name="dispid">The DispID of the property that is highlighted when the property page is created.</param>
      <param name="pageGuid">The GUID for the property page.</param>
      <param name="parentHandle">A IntPtr that is the handle of the parent control of the property page.</param>
    </member>
    <member name="T:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser">
      <summary>Allows Visual Studio to communicate internally with the <see cref="T:System.Windows.Forms.PropertyGrid" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.ComComponentNameChanged">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.PropertyGrid" /> control is browsing a COM object and the user renames the object.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.DropDownDone">
      <summary>Closes any open drop-down controls on the <see cref="T:System.Windows.Forms.PropertyGrid" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.EnsurePendingChangesCommitted">
      <summary>Commits all pending changes to the <see cref="T:System.Windows.Forms.PropertyGrid" /> control.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.PropertyGrid" /> successfully commits changes; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.HandleF4">
      <summary>Activates the <see cref="T:System.Windows.Forms.PropertyGrid" /> control when the user chooses Properties for a control in Design view.</summary>
    </member>
    <member name="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.LoadState(Microsoft.Win32.RegistryKey)">
      <summary>Loads user states from the registry into the <see cref="T:System.Windows.Forms.PropertyGrid" /> control.</summary>
      <param name="key">The registry key that contains the user states.</param>
    </member>
    <member name="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.SaveState(Microsoft.Win32.RegistryKey)">
      <summary>Saves user states from the <see cref="T:System.Windows.Forms.PropertyGrid" /> control to the registry.</summary>
      <param name="key">The registry key that contains the user states.</param>
    </member>
    <member name="P:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.InPropertySet">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.PropertyGrid" /> control is currently setting one of the properties of its selected object.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.PropertyGrid" /> control is currently setting one of the properties of its selected object; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ContainerControl">
      <summary>Provides focus-management functionality for controls that can function as a container for other controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.ContainerControl.AutoValidateChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ContainerControl.AutoValidate" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ContainerControl" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.AdjustFormScrollbars(System.Boolean)">
      <summary>Adjusts the scroll bars on the container based on the current control positions and the control currently selected.</summary>
      <param name="displayScrollbars">
        <see langword="true" /> to show the scroll bars; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control" /> and its child controls and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.OnAutoValidateChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ContainerControl.AutoValidateChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.OnCreateControl">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.CreateControl" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.OnMove(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.OnParentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.OnResize(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.PerformAutoScale">
      <summary>Performs scaling of the container control and its children.</summary>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.ProcessDialogChar(System.Char)">
      <summary>Processes a dialog character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.ProcessTabKey(System.Boolean)">
      <summary>Selects the next available control and makes it the active control.</summary>
      <param name="forward">
        <see langword="true" /> to cycle forward through the controls in the <see cref="T:System.Windows.Forms.ContainerControl" />; otherwise, <see langword="false" />.</param>
      <returns>
        <see langword="true" /> if a control is selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.RescaleConstantsForDpi(System.Int32,System.Int32)">
      <param name="deviceDpiOld" />
      <param name="deviceDpiNew" />
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.ScaleMinMaxSize(System.Single,System.Single,System.Boolean)">
      <summary>Scales the size of the container's <see langword="Min" /> and <see langword="Max" /> properties with the scale factor provided.</summary>
      <param name="xScaleFactor">The scale factor to be applied on the width of the property being scaled.</param>
      <param name="yScaleFactor">The scale factor to be applied on the height of the property being scaled.</param>
      <param name="updateContainerSize">
        <see langword="true" /> to resize the container control along with properties being scaled; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.Select(System.Boolean,System.Boolean)">
      <summary>Activates a child control. Optionally specifies the direction in the tab order to select the control from.</summary>
      <param name="directed">
        <see langword="true" /> to specify the direction of the control to select; otherwise, <see langword="false" />.</param>
      <param name="forward">
        <see langword="true" /> to move forward in the tab order; <see langword="false" /> to move backward in the tab order.</param>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.System#Windows#Forms#IContainerControl#ActivateControl(System.Windows.Forms.Control)">
      <summary>Activates the specified control.</summary>
      <param name="control">The <see cref="T:System.Windows.Forms.Control" /> to activate.</param>
      <returns>
        <see langword="true" /> if the control is successfully activated; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.UpdateDefaultButton">
      <summary>When overridden by a derived class, updates which button is the default button.</summary>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.Validate">
      <summary>Verifies the value of the control losing focus by causing the <see cref="E:System.Windows.Forms.Control.Validating" /> and <see cref="E:System.Windows.Forms.Control.Validated" /> events to occur, in that order.</summary>
      <returns>
        <see langword="true" /> if validation is successful; otherwise, <see langword="false" />. If called from the <see cref="E:System.Windows.Forms.Control.Validating" /> or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers, this method will always return <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.Validate(System.Boolean)">
      <summary>Verifies the value of the control that is losing focus; conditionally dependent on whether automatic validation is turned on.</summary>
      <param name="checkAutoValidate">If <see langword="true" />, the value of the <see cref="P:System.Windows.Forms.ContainerControl.AutoValidate" /> property is used to determine if validation should be performed; if <see langword="false" />, validation is unconditionally performed.</param>
      <returns>
        <see langword="true" /> if validation is successful; otherwise, <see langword="false" />. If called from the <see cref="E:System.Windows.Forms.Control.Validating" /> or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers, this method will always return <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.ValidateChildren">
      <summary>Causes all of the child controls within a control that support validation to validate their data.</summary>
      <returns>
        <see langword="true" /> if all of the children validated successfully; otherwise, <see langword="false" />. If called from the <see cref="E:System.Windows.Forms.Control.Validating" /> or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers, this method will always return <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.ValidateChildren(System.Windows.Forms.ValidationConstraints)">
      <summary>Causes all of the child controls within a control that support validation to validate their data.</summary>
      <param name="validationConstraints">Places restrictions on which controls have their <see cref="E:System.Windows.Forms.Control.Validating" /> event raised.</param>
      <returns>
        <see langword="true" /> if all of the children validated successfully; otherwise, <see langword="false" />. If called from the <see cref="E:System.Windows.Forms.Control.Validating" /> or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers, this method will always return <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ContainerControl.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.ActiveControl">
      <summary>Gets or sets the active control on the container control.</summary>
      <exception cref="T:System.ArgumentException">The <see cref="T:System.Windows.Forms.Control" /> assigned could not be activated.</exception>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that is currently active on the <see cref="T:System.Windows.Forms.ContainerControl" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.AutoScaleDimensions">
      <summary>Gets or sets the dimensions that the control was designed to.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The width or height of the <see cref="T:System.Drawing.SizeF" /> value is less than 0 when setting this value.</exception>
      <returns>A <see cref="T:System.Drawing.SizeF" /> containing the dots per inch (DPI) or <see cref="T:System.Drawing.Font" /> size that the control was designed to.</returns>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.AutoScaleFactor">
      <summary>Gets the scaling factor between the current and design-time automatic scaling dimensions.</summary>
      <returns>A <see cref="T:System.Drawing.SizeF" /> containing the scaling ratio between the current and design-time scaling automatic scaling dimensions.</returns>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.AutoScaleMode">
      <summary>Gets or sets the automatic scaling mode of the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">An <see cref="T:System.Windows.Forms.AutoScaleMode" /> value that is not valid was used to set this property.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AutoScaleMode" /> that represents the current scaling mode. The default is <see cref="F:System.Windows.Forms.AutoScaleMode.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.AutoValidate">
      <summary>Gets or sets a value that indicates whether controls in this container will be automatically validated when the focus changes.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">An <see cref="T:System.Windows.Forms.AutoValidate" /> value that is not valid was used to set this property.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AutoValidate" /> enumerated value that indicates whether contained controls are implicitly validated on focus change. The default is <see cref="F:System.Windows.Forms.AutoValidate.Inherit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.BindingContext">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.BindingContext" /> for the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.BindingContext" /> for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.CanEnableIme">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property can be set to an active value, to enable IME support.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.CurrentAutoScaleDimensions">
      <summary>Gets the current run-time dimensions of the screen.</summary>
      <exception cref="T:System.ComponentModel.Win32Exception">A Win32 device context could not be created for the current screen.</exception>
      <returns>A <see cref="T:System.Drawing.SizeF" /> containing the current dots per inch (DPI) or <see cref="T:System.Drawing.Font" /> size of the screen.</returns>
    </member>
    <member name="P:System.Windows.Forms.ContainerControl.ParentForm">
      <summary>Gets the form that the container control is assigned to.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Form" /> that the container control is assigned to. This property will return null if the control is hosted inside of Internet Explorer or in another hosting context where there is no parent form.</returns>
    </member>
    <member name="T:System.Windows.Forms.ContentsResizedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.RichTextBox.ContentsResized" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ContentsResizedEventArgs.#ctor(System.Drawing.Rectangle)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ContentsResizedEventArgs" /> class.</summary>
      <param name="newRectangle">A <see cref="T:System.Drawing.Rectangle" /> that specifies the requested dimensions of the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</param>
    </member>
    <member name="P:System.Windows.Forms.ContentsResizedEventArgs.NewRectangle">
      <summary>Represents the requested size of the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the requested size of the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</returns>
    </member>
    <member name="T:System.Windows.Forms.ContentsResizedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.RichTextBox.ContentsResized" /> event of a <see cref="T:System.Windows.Forms.RichTextBox" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ContentsResizedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ContextMenuStrip">
      <summary>Represents a shortcut menu.</summary>
    </member>
    <member name="M:System.Windows.Forms.ContextMenuStrip.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ContextMenuStrip.#ctor(System.ComponentModel.IContainer)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> class and associates it with the specified container.</summary>
      <param name="container">A component that implements <see cref="T:System.ComponentModel.IContainer" /> that is the container of the <see cref="T:System.Windows.Forms.ContextMenuStrip" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ContextMenuStrip.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ContextMenuStrip.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ContextMenuStrip.OnOpened(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ContextMenuStrip.SetVisibleCore(System.Boolean)">
      <summary>Sets the control to the specified visible state.</summary>
      <param name="visible">
        <see langword="true" /> to make the control visible; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ContextMenuStrip.SourceControl">
      <summary>Gets the last control that caused this <see cref="T:System.Windows.Forms.ContextMenuStrip" /> to be displayed.</summary>
      <returns>The control that caused this <see cref="T:System.Windows.Forms.ContextMenuStrip" /> to be displayed.</returns>
    </member>
    <member name="T:System.Windows.Forms.Control">
      <summary>Defines the base class for controls, which are components with visual representation.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.AutoSizeChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.BackColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.BindingContextChanged">
      <summary>Occurs when the value of the <see cref="T:System.Windows.Forms.BindingContext" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.CausesValidationChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.ChangeUICues">
      <summary>Occurs when the focus or keyboard user interface (UI) cues change.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Click">
      <summary>Occurs when the control is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.ClientSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.ClientSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.ContextMenuStripChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.ContextMenuStrip" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.ControlAdded">
      <summary>Occurs when a new control is added to the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.ControlRemoved">
      <summary>Occurs when a control is removed from the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.CursorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Cursor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.DataContextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.DataContext" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.DockChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Dock" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.DoubleClick">
      <summary>Occurs when the control is double-clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.DpiChangedAfterParent">
      <summary>Occurs when the DPI setting for a control is changed programmatically after the DPI of its parent control or form has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.DpiChangedBeforeParent">
      <summary>Occurs when the DPI setting for a control is changed programmatically before a DPI change event for its parent control or form has occurred.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.DragDrop">
      <summary>Occurs when a drag-and-drop operation is completed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.DragEnter">
      <summary>Occurs when an object is dragged into the control's bounds.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.DragLeave">
      <summary>Occurs when an object is dragged out of the control's bounds.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.DragOver">
      <summary>Occurs when an object is dragged over the control's bounds.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.EnabledChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.Enabled" /> property value has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Enter">
      <summary>Occurs when the control is entered.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.FontChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.Font" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.ForeColorChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.GiveFeedback">
      <summary>Occurs during a drag operation.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.GotFocus">
      <summary>Occurs when the control receives focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.HandleCreated">
      <summary>Occurs when a handle is created for the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.HandleDestroyed">
      <summary>Occurs when the control's handle is in the process of being destroyed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.HelpRequested">
      <summary>Occurs when the user requests help for a control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.ImeModeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Invalidated">
      <summary>Occurs when a control's display requires redrawing.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.KeyDown">
      <summary>Occurs when a key is pressed while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.KeyPress">
      <summary>Occurs when a character. space or backspace key is pressed while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.KeyUp">
      <summary>Occurs when a key is released while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Layout">
      <summary>Occurs when a control should reposition its child controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Leave">
      <summary>Occurs when the input focus leaves the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.LocationChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.Location" /> property value has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.LostFocus">
      <summary>Occurs when the control loses focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MarginChanged">
      <summary>Occurs when the control's margin changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseCaptureChanged">
      <summary>Occurs when the control loses mouse capture.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseClick">
      <summary>Occurs when the control is clicked by the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseDoubleClick">
      <summary>Occurs when the control is double clicked by the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseDown">
      <summary>Occurs when the mouse pointer is over the control and a mouse button is pressed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseEnter">
      <summary>Occurs when the mouse pointer enters the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseHover">
      <summary>Occurs when the mouse pointer rests on the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseLeave">
      <summary>Occurs when the mouse pointer leaves the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseMove">
      <summary>Occurs when the mouse pointer is moved over the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseUp">
      <summary>Occurs when the mouse pointer is over the control and a mouse button is released.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.MouseWheel">
      <summary>Occurs when the mouse wheel moves while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Move">
      <summary>Occurs when the control is moved.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.PaddingChanged">
      <summary>Occurs when the control's padding changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Paint">
      <summary>Occurs when the control is redrawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.ParentChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.Parent" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.PreviewKeyDown">
      <summary>Occurs before the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event when a key is pressed while focus is on this control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.QueryAccessibilityHelp">
      <summary>Occurs when <see cref="T:System.Windows.Forms.AccessibleObject" /> is providing help to accessibility applications.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.QueryContinueDrag">
      <summary>Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.RegionChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.Region" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Resize">
      <summary>Occurs when the control is resized.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.RightToLeftChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.SizeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.Size" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.StyleChanged">
      <summary>Occurs when the control style changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.SystemColorsChanged">
      <summary>Occurs when the system colors change.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.TabIndexChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.TabIndex" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.TabStopChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.TabStop" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.TextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.Text" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Validated">
      <summary>Occurs when the control is finished validating.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.Validating">
      <summary>Occurs when the control is validating.</summary>
    </member>
    <member name="E:System.Windows.Forms.Control.VisibleChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Control.Visible" /> property value changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class with default settings.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class with specific text.</summary>
      <param name="text">The text displayed by the control.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class with specific text, size, and location.</summary>
      <param name="text">The text displayed by the control.</param>
      <param name="left">The <see cref="P:System.Drawing.Point.X" /> position of the control, in pixels, from the left edge of the control's container. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Left" /> property.</param>
      <param name="top">The <see cref="P:System.Drawing.Point.Y" /> position of the control, in pixels, from the top edge of the control's container. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Top" /> property.</param>
      <param name="width">The width of the control, in pixels. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Width" /> property.</param>
      <param name="height">The height of the control, in pixels. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Height" /> property.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.#ctor(System.Windows.Forms.Control,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class as a child control, with specific text.</summary>
      <param name="parent">The <see cref="T:System.Windows.Forms.Control" /> to be the parent of the control.</param>
      <param name="text">The text displayed by the control.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.#ctor(System.Windows.Forms.Control,System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control" /> class as a child control, with specific text, size, and location.</summary>
      <param name="parent">The <see cref="T:System.Windows.Forms.Control" /> to be the parent of the control.</param>
      <param name="text">The text displayed by the control.</param>
      <param name="left">The <see cref="P:System.Drawing.Point.X" /> position of the control, in pixels, from the left edge of the control's container. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Left" /> property.</param>
      <param name="top">The <see cref="P:System.Drawing.Point.Y" /> position of the control, in pixels, from the top edge of the control's container. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Top" /> property.</param>
      <param name="width">The width of the control, in pixels. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Width" /> property.</param>
      <param name="height">The height of the control, in pixels. The value is assigned to the <see cref="P:System.Windows.Forms.Control.Height" /> property.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.AccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32)">
      <summary>Notifies the accessibility client applications of the specified <see cref="T:System.Windows.Forms.AccessibleEvents" /> for the specified child control.</summary>
      <param name="accEvent">The <see cref="T:System.Windows.Forms.AccessibleEvents" /> to notify the accessibility client applications of.</param>
      <param name="childID">The child <see cref="T:System.Windows.Forms.Control" /> to notify of the accessible event.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.AccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32,System.Int32)">
      <summary>Notifies the accessibility client applications of the specified <see cref="T:System.Windows.Forms.AccessibleEvents" /> for the specified child control .</summary>
      <param name="accEvent">The <see cref="T:System.Windows.Forms.AccessibleEvents" /> to notify the accessibility client applications of.</param>
      <param name="objectID">The identifier of the <see cref="T:System.Windows.Forms.AccessibleObject" />.</param>
      <param name="childID">The child <see cref="T:System.Windows.Forms.Control" /> to notify of the accessible event.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.BeginInvoke(System.Action)">
      <summary>Executes the specified delegate asynchronously on the thread that the control's underlying handle was created on.</summary>
      <param name="method">A delegate to a method that takes no parameters.</param>
      <returns>An <see cref="T:System.IAsyncResult" /> that represents the result of the <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Action)" /> operation.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)">
      <summary>Executes the specified delegate asynchronously on the thread that the control's underlying handle was created on.</summary>
      <param name="method">A delegate to a method that takes no parameters.</param>
      <exception cref="T:System.InvalidOperationException">No appropriate window handle can be found.</exception>
      <returns>An <see cref="T:System.IAsyncResult" /> that represents the result of the <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" /> operation.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate,System.Object[])">
      <summary>Executes the specified delegate asynchronously with the specified arguments, on the thread that the control's underlying handle was created on.</summary>
      <param name="method">A delegate to a method that takes parameters of the same number and type that are contained in the <paramref name="args" /> parameter.</param>
      <param name="args">An array of objects to pass as arguments to the given method. This can be <see langword="null" /> if no arguments are needed.</param>
      <exception cref="T:System.InvalidOperationException">No appropriate window handle can be found.</exception>
      <returns>An <see cref="T:System.IAsyncResult" /> that represents the result of the <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" /> operation.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.BringToFront">
      <summary>Brings the control to the front of the z-order.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.Contains(System.Windows.Forms.Control)">
      <summary>Retrieves a value indicating whether the specified control is a child of the control.</summary>
      <param name="ctl">The <see cref="T:System.Windows.Forms.Control" /> to evaluate.</param>
      <returns>
        <see langword="true" /> if the specified control is a child of the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.CreateControl">
      <summary>Forces the creation of the visible control, including the creation of the handle and any visible child controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.CreateControlsInstance">
      <summary>Creates a new instance of the control collection for the control.</summary>
      <returns>A new instance of <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.CreateGraphics">
      <summary>Creates the <see cref="T:System.Drawing.Graphics" /> for the control.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.CreateHandle">
      <summary>Creates a handle for the control.</summary>
      <exception cref="T:System.ObjectDisposedException">The object is in a disposed state.</exception>
    </member>
    <member name="M:System.Windows.Forms.Control.DefWndProc(System.Windows.Forms.Message@)">
      <summary>Sends the specified message to the default window procedure.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.DestroyHandle">
      <summary>Destroys the handle associated with the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control" /> and its child controls and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)">
      <summary>Begins a drag-and-drop operation.</summary>
      <param name="data">The data to drag.</param>
      <param name="allowedEffects">One of the <see cref="T:System.Windows.Forms.DragDropEffects" /> values.</param>
      <returns>A value from the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration that represents the final effect that was performed during the drag-and-drop operation.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects,System.Drawing.Bitmap,System.Drawing.Point,System.Boolean)">
      <summary>Begins a drag operation.</summary>
      <param name="data" />
      <param name="allowedEffects" />
      <param name="dragImage" />
      <param name="cursorOffset" />
      <param name="useDefaultDragImage" />
      <returns>A value from the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration that represents the final effect that was performed during the drag-and-drop operation.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)">
      <summary>Supports rendering to the specified bitmap.</summary>
      <param name="bitmap">The bitmap to be drawn to.</param>
      <param name="targetBounds">The bounds within which the control is rendered.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.EndInvoke(System.IAsyncResult)">
      <summary>Retrieves the return value of the asynchronous operation represented by the <see cref="T:System.IAsyncResult" /> passed.</summary>
      <param name="asyncResult">The <see cref="T:System.IAsyncResult" /> that represents a specific invoke asynchronous operation, returned when calling <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" />.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="asyncResult" /> parameter value is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The <paramref name="asyncResult" /> object was not created by a preceding call of the <see cref="M:System.Windows.Forms.Control.BeginInvoke(System.Delegate)" /> method from the same control.</exception>
      <returns>The <see cref="T:System.Object" /> generated by the asynchronous operation.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.FindForm">
      <summary>Retrieves the form that the control is on.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Form" /> that the control is on.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.Focus">
      <summary>Sets input focus to the control.</summary>
      <returns>
        <see langword="true" /> if the input focus request was successful; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.FromChildHandle(System.IntPtr)">
      <summary>Retrieves the control that contains the specified handle.</summary>
      <param name="handle">The window handle (<see langword="HWND" />) to search for.</param>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that represents the control associated with the specified handle; returns <see langword="null" /> if no control with the specified handle is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.FromHandle(System.IntPtr)">
      <summary>Returns the control that is currently associated with the specified handle.</summary>
      <param name="handle">The window handle (<see langword="HWND" />) to search for.</param>
      <returns>A <see cref="T:System.Windows.Forms.Control" /> that represents the control associated with the specified handle; returns <see langword="null" /> if no control with the specified handle is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetAccessibilityObjectById(System.Int32)">
      <summary>Retrieves the specified <see cref="T:System.Windows.Forms.AccessibleObject" />.</summary>
      <param name="objectId">An <see cref="T:System.Int32" /> that identifies the <see cref="T:System.Windows.Forms.AccessibleObject" /> to retrieve.</param>
      <returns>The specified <see cref="T:System.Windows.Forms.AccessibleObject" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetAutoSizeMode">
      <summary>Retrieves a value indicating how a control will behave when its <see cref="P:System.Windows.Forms.Control.AutoSize" /> property is enabled.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AutoSizeMode" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetChildAtPoint(System.Drawing.Point)">
      <summary>Retrieves the child control that is located at the specified coordinates.</summary>
      <param name="pt">A <see cref="T:System.Drawing.Point" /> that contains the coordinates where you want to look for a control. Coordinates are expressed relative to the upper-left corner of the control's client area.</param>
      <returns>A <see cref="T:System.Windows.Forms.Control" /> that represents the control that is located at the specified point.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetChildAtPoint(System.Drawing.Point,System.Windows.Forms.GetChildAtPointSkip)">
      <summary>Retrieves the child control that is located at the specified coordinates, specifying whether to ignore child controls of a certain type.</summary>
      <param name="pt">A <see cref="T:System.Drawing.Point" /> that contains the coordinates where you want to look for a control. Coordinates are expressed relative to the upper-left corner of the control's client area.</param>
      <param name="skipValue">One of the values of <see cref="T:System.Windows.Forms.GetChildAtPointSkip" />, determining whether to ignore child controls of a certain type.</param>
      <returns>The child <see cref="T:System.Windows.Forms.Control" /> at the specified coordinates.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetContainerControl">
      <summary>Returns the next <see cref="T:System.Windows.Forms.ContainerControl" /> up the control's chain of parent controls.</summary>
      <returns>An <see cref="T:System.Windows.Forms.IContainerControl" />, that represents the parent of the <see cref="T:System.Windows.Forms.Control" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetNextControl(System.Windows.Forms.Control,System.Boolean)">
      <summary>Retrieves the next control forward or back in the tab order of child controls.</summary>
      <param name="ctl">The <see cref="T:System.Windows.Forms.Control" /> to start the search with.</param>
      <param name="forward">
        <see langword="true" /> to search forward in the tab order; <see langword="false" /> to search backward.</param>
      <returns>The next <see cref="T:System.Windows.Forms.Control" /> in the tab order.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a control can be fitted.</summary>
      <param name="proposedSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Retrieves the bounds within which the control is scaled.</summary>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area for which to retrieve the display bounds.</param>
      <param name="factor">The height and width of the control's bounds.</param>
      <param name="specified">One of the values of <see cref="T:System.Windows.Forms.BoundsSpecified" /> that specifies the bounds of the control to use when defining its size and position.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> representing the bounds within which the control is scaled.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetStyle(System.Windows.Forms.ControlStyles)">
      <summary>Retrieves the value of the specified control style bit for the control.</summary>
      <param name="flag">The <see cref="T:System.Windows.Forms.ControlStyles" /> bit to return the value from.</param>
      <returns>
        <see langword="true" /> if the specified control style bit is set to <see langword="true" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.GetTopLevel">
      <summary>Determines if the control is a top-level control.</summary>
      <returns>
        <see langword="true" /> if the control is a top-level control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.Hide">
      <summary>Conceals the control from the user.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.InitLayout">
      <summary>Called after the control has been added to another container.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.Invalidate">
      <summary>Invalidates the entire surface of the control and causes the control to be redrawn.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.Invalidate(System.Boolean)">
      <summary>Invalidates a specific region of the control and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.</summary>
      <param name="invalidateChildren">
        <see langword="true" /> to invalidate the control's child controls; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Rectangle)">
      <summary>Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.</summary>
      <param name="rc">A <see cref="T:System.Drawing.Rectangle" /> that represents the region to invalidate.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Rectangle,System.Boolean)">
      <summary>Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.</summary>
      <param name="rc">A <see cref="T:System.Drawing.Rectangle" /> that represents the region to invalidate.</param>
      <param name="invalidateChildren">
        <see langword="true" /> to invalidate the control's child controls; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region)">
      <summary>Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.</summary>
      <param name="region">The <see cref="T:System.Drawing.Region" /> to invalidate.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Invalidate(System.Drawing.Region,System.Boolean)">
      <summary>Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.</summary>
      <param name="region">The <see cref="T:System.Drawing.Region" /> to invalidate.</param>
      <param name="invalidateChildren">
        <see langword="true" /> to invalidate the control's child controls; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Invoke(System.Action)">
      <summary>Executes the specified delegate on the thread that owns the control's underlying window handle.</summary>
      <param name="method">A delegate that contains a method to be called in the control's thread context.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Invoke(System.Delegate)">
      <summary>Executes the specified delegate on the thread that owns the control's underlying window handle.</summary>
      <param name="method">A delegate that contains a method to be called in the control's thread context.</param>
      <returns>The return value from the delegate being invoked, or <see langword="null" /> if the delegate has no return value.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.Invoke(System.Delegate,System.Object[])">
      <summary>Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.</summary>
      <param name="method">A delegate to a method that takes parameters of the same number and type that are contained in the <paramref name="args" /> parameter.</param>
      <param name="args">An array of objects to pass as arguments to the specified method. This parameter can be <see langword="null" /> if the method takes no arguments.</param>
      <returns>An <see cref="T:System.Object" /> that contains the return value from the delegate being invoked, or <see langword="null" /> if the delegate has no return value.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.Invoke``1(System.Func{``0})">
      <summary>Executes the specified delegate on the thread that owns the control's underlying window handle.</summary>
      <param name="method">A function to be called in the control's thread context.</param>
      <typeparam name="T">The return type of the <paramref name="method" />.</typeparam>
      <returns>The return value from the function being invoked.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.InvokeGotFocus(System.Windows.Forms.Control,System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event for the specified control.</summary>
      <param name="toInvoke">The <see cref="T:System.Windows.Forms.Control" /> to assign the event to.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.InvokeLostFocus(System.Windows.Forms.Control,System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event for the specified control.</summary>
      <param name="toInvoke">The <see cref="T:System.Windows.Forms.Control" /> to assign the event to.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.InvokeOnClick(System.Windows.Forms.Control,System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event for the specified control.</summary>
      <param name="toInvoke">The <see cref="T:System.Windows.Forms.Control" /> to assign the <see cref="E:System.Windows.Forms.Control.Click" /> event to.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.InvokePaint(System.Windows.Forms.Control,System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event for the specified control.</summary>
      <param name="c">The <see cref="T:System.Windows.Forms.Control" /> to assign the <see cref="E:System.Windows.Forms.Control.Paint" /> event to.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.InvokePaintBackground(System.Windows.Forms.Control,System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see langword="PaintBackground" /> event for the specified control.</summary>
      <param name="c">The <see cref="T:System.Windows.Forms.Control" /> to assign the <see cref="E:System.Windows.Forms.Control.Paint" /> event to.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.IsInputChar(System.Char)">
      <summary>Determines if a character is an input character that the control recognizes.</summary>
      <param name="charCode">The character to test.</param>
      <returns>
        <see langword="true" /> if the character should be sent directly to the control and not preprocessed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.IsKeyLocked(System.Windows.Forms.Keys)">
      <summary>Determines whether the CAPS LOCK, NUM LOCK, or SCROLL LOCK key is in effect.</summary>
      <param name="keyVal">The CAPS LOCK, NUM LOCK, or SCROLL LOCK member of the <see cref="T:System.Windows.Forms.Keys" /> enumeration.</param>
      <exception cref="T:System.NotSupportedException">The <paramref name="keyVal" /> parameter refers to a key other than the CAPS LOCK, NUM LOCK, or SCROLL LOCK key.</exception>
      <returns>
        <see langword="true" /> if the specified key or keys are in effect; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.IsMnemonic(System.Char,System.String)">
      <summary>Determines if the specified character is the mnemonic character assigned to the control in the specified string.</summary>
      <param name="charCode">The character to test.</param>
      <param name="text">The string to search.</param>
      <returns>
        <see langword="true" /> if the <paramref name="charCode" /> character is the mnemonic character assigned to the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.LogicalToDeviceUnits(System.Drawing.Size)">
      <summary>Transforms a size from logical to device units by scaling it for the current DPI and rounding down to the nearest integer value for width and height.</summary>
      <param name="value">The size to be scaled.</param>
      <returns>The scaled size.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.LogicalToDeviceUnits(System.Int32)">
      <summary>Converts a Logical DPI value to its equivalent DeviceUnit DPI value.</summary>
      <param name="value">The Logical value to convert.</param>
      <returns>The resulting DeviceUnit value.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.NotifyInvalidate(System.Drawing.Rectangle)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Invalidated" /> event with a specified region of the control to invalidate.</summary>
      <param name="invalidatedArea">A <see cref="T:System.Drawing.Rectangle" /> representing the area to invalidate.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnAutoSizeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.AutoSizeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnBackgroundImageChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackgroundImageChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnBackgroundImageLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackgroundImageLayoutChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnBindingContextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BindingContextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnCausesValidationChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.CausesValidationChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnChangeUICues(System.Windows.Forms.UICuesEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ChangeUICues" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.UICuesEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnClientSizeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ClientSizeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnContextMenuStripChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ContextMenuStripChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnControlAdded(System.Windows.Forms.ControlEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ControlAdded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ControlEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnControlRemoved(System.Windows.Forms.ControlEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ControlRemoved" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ControlEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnCreateControl">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.CreateControl" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.OnCursorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.CursorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnDataContextChanged(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.Control.OnDockChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DockChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnDoubleClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DoubleClick" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnDpiChangedAfterParent(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DpiChangedAfterParent" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.DpiChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnDpiChangedBeforeParent(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DpiChangedBeforeParent" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.DpiChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnDragDrop(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragDrop" /> event.</summary>
      <param name="drgevent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnDragEnter(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragEnter" /> event.</summary>
      <param name="drgevent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnDragLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnDragOver(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragOver" /> event.</summary>
      <param name="drgevent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Enter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ForeColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event.</summary>
      <param name="gfbevent">A <see cref="T:System.Windows.Forms.GiveFeedbackEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnHelpRequested(System.Windows.Forms.HelpEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HelpRequested" /> event.</summary>
      <param name="hevent">A <see cref="T:System.Windows.Forms.HelpEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnImeModeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ImeModeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnInvalidated(System.Windows.Forms.InvalidateEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Invalidated" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.InvalidateEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="levent">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Leave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnLocationChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LocationChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMarginChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MarginChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseCaptureChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseCaptureChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseClick(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseClick" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDoubleClick" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseEnter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseHover(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseHover" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnMove(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Move" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnNotifyMessage(System.Windows.Forms.Message)">
      <summary>Notifies the control of Windows messages.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" /> that represents the Windows message.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnPaddingChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.PaddingChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Paints the background of the control.</summary>
      <param name="pevent">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains information about the control to paint.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event when the <see cref="P:System.Windows.Forms.Control.BackColor" /> property value of the control's container changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentBackgroundImageChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackgroundImageChanged" /> event when the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property value of the control's container changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentBindingContextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BindingContextChanged" /> event when the <see cref="P:System.Windows.Forms.Control.BindingContext" /> property value of the control's container changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentCursorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.CursorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentDataContextChanged(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event when the <see cref="P:System.Windows.Forms.Control.Enabled" /> property value of the control's container changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event when the <see cref="P:System.Windows.Forms.Control.Font" /> property value of the control's container changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ForeColorChanged" /> event when the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property value of the control's container changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event when the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property value of the control's container changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnParentVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event when the <see cref="P:System.Windows.Forms.Control.Visible" /> property value of the control's container changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnPreviewKeyDown(System.Windows.Forms.PreviewKeyDownEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.PreviewKeyDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PreviewKeyDownEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnPrint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="e" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Control.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event.</summary>
      <param name="qcdevent">A <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnRegionChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RegionChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnSizeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.SizeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.StyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnSystemColorsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.SystemColorsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnTabIndexChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TabIndexChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnTabStopChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TabStopChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnValidated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Validated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnValidating(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Validating" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.PerformLayout">
      <summary>Forces the control to apply layout logic to all its child controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.PerformLayout(System.Windows.Forms.Control,System.String)">
      <summary>Forces the control to apply layout logic to all its child controls.</summary>
      <param name="affectedControl">A <see cref="T:System.Windows.Forms.Control" /> that represents the most recently changed control.</param>
      <param name="affectedProperty">The name of the most recently changed property on the control.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.PointToClient(System.Drawing.Point)">
      <summary>Computes the location of the specified screen point into client coordinates.</summary>
      <param name="p">The screen coordinate <see cref="T:System.Drawing.Point" /> to convert.</param>
      <returns>A <see cref="T:System.Drawing.Point" /> that represents the converted <see cref="T:System.Drawing.Point" />, <paramref name="p" />, in client coordinates.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.PointToScreen(System.Drawing.Point)">
      <summary>Computes the location of the specified client point into screen coordinates.</summary>
      <param name="p">The client coordinate <see cref="T:System.Drawing.Point" /> to convert.</param>
      <returns>A <see cref="T:System.Drawing.Point" /> that represents the converted <see cref="T:System.Drawing.Point" />, <paramref name="p" />, in screen coordinates.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.PreProcessControlMessage(System.Windows.Forms.Message@)">
      <summary>Preprocesses keyboard or input messages within the message loop before they are dispatched.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" /> that represents the message to process.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.PreProcessControlState" /> values, depending on whether <see cref="M:System.Windows.Forms.Control.PreProcessMessage(System.Windows.Forms.Message@)" /> is <see langword="true" /> or <see langword="false" /> and whether <see cref="M:System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys)" /> or <see cref="M:System.Windows.Forms.Control.IsInputChar(System.Char)" /> are <see langword="true" /> or <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.PreProcessMessage(System.Windows.Forms.Message@)">
      <summary>Preprocesses keyboard or input messages within the message loop before they are dispatched.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the message to process. The possible values are WM_KEYDOWN, WM_SYSKEYDOWN, WM_CHAR, and WM_SYSCHAR.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ProcessDialogChar(System.Char)">
      <summary>Processes a dialog character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ProcessKeyEventArgs(System.Windows.Forms.Message@)">
      <summary>Processes a key message and generates the appropriate control events.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ProcessKeyMessage(System.Windows.Forms.Message@)">
      <summary>Processes a keyboard message.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ProcessKeyPreview(System.Windows.Forms.Message@)">
      <summary>Previews a keyboard message.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.RaiseDragEvent(System.Object,System.Windows.Forms.DragEventArgs)">
      <summary>Raises the appropriate drag event.</summary>
      <param name="key">The event to raise.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.RaiseKeyEvent(System.Object,System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the appropriate key event.</summary>
      <param name="key">The event to raise.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.RaiseMouseEvent(System.Object,System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the appropriate mouse event.</summary>
      <param name="key">The event to raise.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.RaisePaintEvent(System.Object,System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the appropriate paint event.</summary>
      <param name="key">The event to raise.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.RecreateHandle">
      <summary>Forces the re-creation of the handle for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.RectangleToClient(System.Drawing.Rectangle)">
      <summary>Computes the size and location of the specified screen rectangle in client coordinates.</summary>
      <param name="r">The screen coordinate <see cref="T:System.Drawing.Rectangle" /> to convert.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the converted <see cref="T:System.Drawing.Rectangle" />, <paramref name="r" />, in client coordinates.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.RectangleToScreen(System.Drawing.Rectangle)">
      <summary>Computes the size and location of the specified client rectangle in screen coordinates.</summary>
      <param name="r">The client coordinate <see cref="T:System.Drawing.Rectangle" /> to convert.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the converted <see cref="T:System.Drawing.Rectangle" />, <paramref name="p" />, in screen coordinates.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ReflectMessage(System.IntPtr,System.Windows.Forms.Message@)">
      <summary>Reflects the specified message to the control that is bound to the specified handle.</summary>
      <param name="hWnd">An <see cref="T:System.IntPtr" /> representing the handle of the control to reflect the message to.</param>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" /> representing the Windows message to reflect.</param>
      <returns>
        <see langword="true" /> if the message was reflected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.Refresh">
      <summary>Forces the control to invalidate its client area and immediately redraw itself and any child controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.RescaleConstantsForDpi(System.Int32,System.Int32)">
      <summary>Provides constants for rescaling the control when a DPI change occurs.</summary>
      <param name="deviceDpiOld">The DPI value prior to the change.</param>
      <param name="deviceDpiNew">The DPI value after the change.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ResetBackColor">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.BackColor" /> property to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResetBindings">
      <summary>Causes a control bound to the <see cref="T:System.Windows.Forms.BindingSource" /> to reread all the items in the list and refresh their displayed values.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResetCursor">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.Cursor" /> property to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResetFont">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.Font" /> property to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResetForeColor">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResetImeMode">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResetMouseEventArgs">
      <summary>Resets the control to handle the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResetRightToLeft">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResetText">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.Text" /> property to its default value (<see cref="F:System.String.Empty" />).</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResumeLayout">
      <summary>Resumes usual layout logic.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ResumeLayout(System.Boolean)">
      <summary>Resumes usual layout logic, optionally forcing an immediate layout of pending layout requests.</summary>
      <param name="performLayout">
        <see langword="true" /> to execute pending layout requests; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.RtlTranslateAlignment(System.Drawing.ContentAlignment)">
      <summary>Converts the specified <see cref="T:System.Drawing.ContentAlignment" /> to the appropriate <see cref="T:System.Drawing.ContentAlignment" /> to support right-to-left text.</summary>
      <param name="align">One of the <see cref="T:System.Drawing.ContentAlignment" /> values.</param>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.RtlTranslateAlignment(System.Windows.Forms.HorizontalAlignment)">
      <summary>Converts the specified <see cref="T:System.Windows.Forms.HorizontalAlignment" /> to the appropriate <see cref="T:System.Windows.Forms.HorizontalAlignment" /> to support right-to-left text.</summary>
      <param name="align">One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.RtlTranslateAlignment(System.Windows.Forms.LeftRightAlignment)">
      <summary>Converts the specified <see cref="T:System.Windows.Forms.LeftRightAlignment" /> to the appropriate <see cref="T:System.Windows.Forms.LeftRightAlignment" /> to support right-to-left text.</summary>
      <param name="align">One of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.RtlTranslateContent(System.Drawing.ContentAlignment)">
      <summary>Converts the specified <see cref="T:System.Drawing.ContentAlignment" /> to the appropriate <see cref="T:System.Drawing.ContentAlignment" /> to support right-to-left text.</summary>
      <param name="align">One of the <see cref="T:System.Drawing.ContentAlignment" /> values.</param>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.RtlTranslateHorizontal(System.Windows.Forms.HorizontalAlignment)">
      <summary>Converts the specified <see cref="T:System.Windows.Forms.HorizontalAlignment" /> to the appropriate <see cref="T:System.Windows.Forms.HorizontalAlignment" /> to support right-to-left text.</summary>
      <param name="align">One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.RtlTranslateLeftRight(System.Windows.Forms.LeftRightAlignment)">
      <summary>Converts the specified <see cref="T:System.Windows.Forms.LeftRightAlignment" /> to the appropriate <see cref="T:System.Windows.Forms.LeftRightAlignment" /> to support right-to-left text.</summary>
      <param name="align">One of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.Scale(System.Drawing.SizeF)">
      <summary>Scales the control and all child controls by the specified scaling factor.</summary>
      <param name="factor">A <see cref="T:System.Drawing.SizeF" /> containing the horizontal and vertical scaling factors.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Scale(System.Single)">
      <summary>Scales the control and any child controls.</summary>
      <param name="ratio">The ratio to use for scaling.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Scale(System.Single,System.Single)">
      <summary>Scales the entire control and any child controls.</summary>
      <param name="dx">The horizontal scaling factor.</param>
      <param name="dy">The vertical scaling factor.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ScaleBitmapLogicalToDevice(System.Drawing.Bitmap@)">
      <summary>Scales a logical bitmap value to it's equivalent device unit value when a DPI change occurs.</summary>
      <param name="logicalBitmap">The bitmap to scale.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Scales a control's location, size, padding and margin.</summary>
      <param name="factor">The factor by which the height and width of the control will be scaled.</param>
      <param name="specified">A <see cref="T:System.Windows.Forms.BoundsSpecified" /> value that specifies the bounds of the control to use when defining its size and position.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ScaleCore(System.Single,System.Single)">
      <summary>This method is not relevant for this class.</summary>
      <param name="dx">The horizontal scaling factor.</param>
      <param name="dy">The vertical scaling factor.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Select">
      <summary>Activates the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.Select(System.Boolean,System.Boolean)">
      <summary>Activates a child control. Optionally specifies the direction in the tab order to select the control from.</summary>
      <param name="directed">
        <see langword="true" /> to specify the direction of the control to select; otherwise, <see langword="false" />.</param>
      <param name="forward">
        <see langword="true" /> to move forward in the tab order; <see langword="false" /> to move backward in the tab order.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
      <summary>Activates the next control.</summary>
      <param name="ctl">The <see cref="T:System.Windows.Forms.Control" /> at which to start the search.</param>
      <param name="forward">
        <see langword="true" /> to move forward in the tab order; <see langword="false" /> to move backward in the tab order.</param>
      <param name="tabStopOnly">
        <see langword="true" /> to ignore the controls with the <see cref="P:System.Windows.Forms.Control.TabStop" /> property set to <see langword="false" />; otherwise, <see langword="false" />.</param>
      <param name="nested">
        <see langword="true" /> to include nested (children of child controls) child controls; otherwise, <see langword="false" />.</param>
      <param name="wrap">
        <see langword="true" /> to continue searching from the first control in the tab order after the last control has been reached; otherwise, <see langword="false" />.</param>
      <returns>
        <see langword="true" /> if a control was activated; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.SendToBack">
      <summary>Sends the control to the back of the z-order.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.SetAutoSizeMode(System.Windows.Forms.AutoSizeMode)">
      <summary>Sets a value indicating how a control will behave when its <see cref="P:System.Windows.Forms.Control.AutoSize" /> property is enabled.</summary>
      <param name="mode">One of the <see cref="T:System.Windows.Forms.AutoSizeMode" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Sets the bounds of the control to the specified location and size.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Sets the specified bounds of the control to the specified location and size.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values. For any parameter not specified, the current value will be used.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Performs the work of setting the specified bounds of this control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.SetClientSizeCore(System.Int32,System.Int32)">
      <summary>Sets the size of the client area of the control.</summary>
      <param name="x">The client area width, in pixels.</param>
      <param name="y">The client area height, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.SetStyle(System.Windows.Forms.ControlStyles,System.Boolean)">
      <summary>Sets a specified <see cref="T:System.Windows.Forms.ControlStyles" /> flag to either <see langword="true" /> or <see langword="false" />.</summary>
      <param name="flag">The <see cref="T:System.Windows.Forms.ControlStyles" /> bit to set.</param>
      <param name="value">
        <see langword="true" /> to apply the specified style to the control; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.SetTopLevel(System.Boolean)">
      <summary>Sets the control as the top-level control.</summary>
      <param name="value">
        <see langword="true" /> to set the control as the top-level control; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.InvalidOperationException">The <paramref name="value" /> parameter is set to <see langword="true" /> and the control is an ActiveX control.</exception>
      <exception cref="T:System.Exception">The <see cref="M:System.Windows.Forms.Control.GetTopLevel" /> return value is not equal to the <paramref name="value" /> parameter and the <see cref="P:System.Windows.Forms.Control.Parent" /> property is not <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Control.SetVisibleCore(System.Boolean)">
      <summary>Sets the control to the specified visible state.</summary>
      <param name="value">
        <see langword="true" /> to make the control visible; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Show">
      <summary>Displays the control to the user.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.SizeFromClientSize(System.Drawing.Size)">
      <summary>Determines the size of the entire control from the height and width of its client area.</summary>
      <param name="clientSize">A <see cref="T:System.Drawing.Size" /> value representing the height and width of the control's client area.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> value representing the height and width of the entire control.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.SuspendLayout">
      <summary>Temporarily suspends the layout logic for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.System#Windows#Forms#IDropTarget#OnDragDrop(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragDrop" /> event.</summary>
      <param name="drgEvent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.System#Windows#Forms#IDropTarget#OnDragEnter(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragEnter" /> event.</summary>
      <param name="drgEvent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.System#Windows#Forms#IDropTarget#OnDragLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.System#Windows#Forms#IDropTarget#OnDragOver(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragOver" /> event.</summary>
      <param name="drgEvent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.Update">
      <summary>Causes the control to redraw the invalidated regions within its client area.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.UpdateBounds">
      <summary>Updates the bounds of the control with the current size and location.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.UpdateBounds(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Updates the bounds of the control with the specified size and location.</summary>
      <param name="x">The <see cref="P:System.Drawing.Point.X" /> coordinate of the control.</param>
      <param name="y">The <see cref="P:System.Drawing.Point.Y" /> coordinate of the control.</param>
      <param name="width">The <see cref="P:System.Drawing.Size.Width" /> of the control.</param>
      <param name="height">The <see cref="P:System.Drawing.Size.Height" /> of the control.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.UpdateBounds(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Updates the bounds of the control with the specified size, location, and client size.</summary>
      <param name="x">The <see cref="P:System.Drawing.Point.X" /> coordinate of the control.</param>
      <param name="y">The <see cref="P:System.Drawing.Point.Y" /> coordinate of the control.</param>
      <param name="width">The <see cref="P:System.Drawing.Size.Width" /> of the control.</param>
      <param name="height">The <see cref="P:System.Drawing.Size.Height" /> of the control.</param>
      <param name="clientWidth">The client <see cref="P:System.Drawing.Size.Width" /> of the control.</param>
      <param name="clientHeight">The client <see cref="P:System.Drawing.Size.Height" /> of the control.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.UpdateStyles">
      <summary>Forces the assigned styles to be reapplied to the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.UpdateZOrder">
      <summary>Updates the control in its parent's z-order.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.Control.AccessibilityObject">
      <summary>Gets the <see cref="T:System.Windows.Forms.AccessibleObject" /> assigned to the control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.AccessibleObject" /> assigned to the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.AccessibleDefaultActionDescription">
      <summary>Gets or sets the default action description of the control for use by accessibility client applications.</summary>
      <returns>The default action description of the control for use by accessibility client applications.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.AccessibleDescription">
      <summary>Gets or sets the description of the control used by accessibility client applications.</summary>
      <returns>The description of the control used by accessibility client applications. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.AccessibleName">
      <summary>Gets or sets the name of the control used by accessibility client applications.</summary>
      <returns>The name of the control used by accessibility client applications. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.AccessibleRole">
      <summary>Gets or sets the accessible role of the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.AccessibleRole" />. The default is <see langword="Default" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.AllowDrop">
      <summary>Gets or sets a value indicating whether the control can accept data that the user drags onto it.</summary>
      <returns>
        <see langword="true" /> if drag-and-drop operations are allowed in the control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Anchor">
      <summary>Gets or sets the edges of the container to which a control is bound and determines how a control is resized with its parent.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.AnchorStyles" /> values. The default is <see langword="Top" /> and <see langword="Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.AutoScrollOffset">
      <summary>Gets or sets where this control is scrolled to in <see cref="M:System.Windows.Forms.ScrollableControl.ScrollControlIntoView(System.Windows.Forms.Control)" />.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> specifying the scroll location. The default is the upper-left corner of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.AutoSize">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.BackgroundImage">
      <summary>Gets or sets the background image displayed in the control.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> that represents the image to display in the background of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.BackgroundImageLayout">
      <summary>Gets or sets the background image layout as defined in the <see cref="T:System.Windows.Forms.ImageLayout" /> enumeration.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified enumeration value does not exist.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.ImageLayout" /> (<see cref="F:System.Windows.Forms.ImageLayout.Center" /> , <see cref="F:System.Windows.Forms.ImageLayout.None" />, <see cref="F:System.Windows.Forms.ImageLayout.Stretch" />, <see cref="F:System.Windows.Forms.ImageLayout.Tile" />, or <see cref="F:System.Windows.Forms.ImageLayout.Zoom" />). <see cref="F:System.Windows.Forms.ImageLayout.Tile" /> is the default value.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.BindingContext">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.BindingContext" /> for the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.BindingContext" /> for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Bottom">
      <summary>Gets the distance, in pixels, between the bottom edge of the control and the top edge of its container's client area.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the distance, in pixels, between the bottom edge of the control and the top edge of its container's client area.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Bounds">
      <summary>Gets or sets the size and location of the control including its nonclient elements, in pixels, relative to the parent control.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> in pixels relative to the parent control that represents the size and location of the control including its nonclient elements.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.CanEnableIme">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property can be set to an active value, to enable IME support.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.CanFocus">
      <summary>Gets a value indicating whether the control can receive focus.</summary>
      <returns>
        <see langword="true" /> if the control can receive focus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.CanRaiseEvents">
      <summary>Determines if events can be raised on the control.</summary>
      <returns>
        <see langword="true" /> if the control is hosted as an ActiveX control whose events are not frozen; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.CanSelect">
      <summary>Gets a value indicating whether the control can be selected.</summary>
      <returns>
        <see langword="true" /> if the control can be selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Capture">
      <summary>Gets or sets a value indicating whether the control has captured the mouse.</summary>
      <returns>
        <see langword="true" /> if the control has captured the mouse; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.CausesValidation">
      <summary>Gets or sets a value indicating whether the control causes validation to be performed on any controls that require validation when it receives focus.</summary>
      <returns>
        <see langword="true" /> if the control causes validation to be performed on any controls requiring validation when it receives focus; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls">
      <summary>Gets or sets a value indicating whether to catch calls on the wrong thread that access a control's <see cref="P:System.Windows.Forms.Control.Handle" /> property when an application is being debugged.</summary>
      <returns>
        <see langword="true" /> if calls on the wrong thread are caught; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ClientRectangle">
      <summary>Gets the rectangle that represents the client area of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the client area of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ClientSize">
      <summary>Gets or sets the height and width of the client area of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the dimensions of the client area of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.CompanyName">
      <summary>Gets the name of the company or creator of the application containing the control.</summary>
      <returns>The company name or creator of the application containing the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ContainsFocus">
      <summary>Gets a value indicating whether the control, or one of its child controls, currently has the input focus.</summary>
      <returns>
        <see langword="true" /> if the control or one of its child controls currently has the input focus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ContextMenuStrip">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with this control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> for this control, or <see langword="null" /> if there is no <see cref="T:System.Windows.Forms.ContextMenuStrip" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Controls">
      <summary>Gets the collection of controls contained within the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Control.ControlCollection" /> representing the collection of controls contained within the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Created">
      <summary>Gets a value indicating whether the control has been created.</summary>
      <returns>
        <see langword="true" /> if the control has been created; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Cursor">
      <summary>Gets or sets the cursor that is displayed when the mouse pointer is over the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor to display when the mouse pointer is over the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DataBindings">
      <summary>Gets the data bindings for the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ControlBindingsCollection" /> that contains the <see cref="T:System.Windows.Forms.Binding" /> objects for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DataContext">
      <summary>Gets or sets the data context for the purpose of data binding.
             This is an ambient property.</summary>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultBackColor">
      <summary>Gets the default background color of the control.</summary>
      <returns>The default background <see cref="T:System.Drawing.Color" /> of the control. The default is <see cref="P:System.Drawing.SystemColors.Control" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultCursor">
      <summary>Gets or sets the default cursor for the control.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.Cursor" /> representing the current default cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultFont">
      <summary>Gets the default font of the control.</summary>
      <exception cref="T:System.ArgumentException">The default font or the regional alternative fonts are not installed on the client computer.</exception>
      <returns>The default <see cref="T:System.Drawing.Font" /> of the control. The value returned will vary depending on the user's operating system the local culture setting of their system.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultForeColor">
      <summary>Gets the default foreground color of the control.</summary>
      <returns>The default foreground <see cref="T:System.Drawing.Color" /> of the control. The default is <see cref="P:System.Drawing.SystemColors.ControlText" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultImeMode">
      <summary>Gets the default Input Method Editor (IME) mode supported by the control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultMargin">
      <summary>Gets the space, in pixels, that is specified by default between controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that represents the default space between controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultMaximumSize">
      <summary>Gets the length and height, in pixels, that is specified as the default maximum size of a control.</summary>
      <returns>A <see cref="M:System.Drawing.Point.#ctor(System.Drawing.Size)" /> representing the size of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultMinimumSize">
      <summary>Gets the length and height, in pixels, that is specified as the default minimum size of a control.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the size of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultPadding">
      <summary>Gets the internal spacing, in pixels, of the contents of a control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that represents the internal spacing of the contents of a control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DeviceDpi">
      <summary>Gets the DPI value for the display device where the control is currently being displayed.</summary>
      <returns>The DPI value of the display device.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DisplayRectangle">
      <summary>Gets the rectangle that represents the display area of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the display area of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Disposing">
      <summary>Gets a value indicating whether the base <see cref="T:System.Windows.Forms.Control" /> class is in the process of disposing.</summary>
      <returns>
        <see langword="true" /> if the base <see cref="T:System.Windows.Forms.Control" /> class is in the process of disposing; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Dock">
      <summary>Gets or sets which control borders are docked to its parent control and determines how a control is resized with its parent.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.DockStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default is <see cref="F:System.Windows.Forms.DockStyle.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.DoubleBuffered">
      <summary>Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.</summary>
      <returns>
        <see langword="true" /> if the surface of the control should be drawn using double buffering; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Enabled">
      <summary>Gets or sets a value indicating whether the control can respond to user interaction.</summary>
      <returns>
        <see langword="true" /> if the control can respond to user interaction; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Focused">
      <summary>Gets a value indicating whether the control has input focus.</summary>
      <returns>
        <see langword="true" /> if the control has focus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Font">
      <summary>Gets or sets the font of the text displayed by the control.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.FontHeight">
      <summary>Gets or sets the height of the font of the control.</summary>
      <returns>The height of the <see cref="T:System.Drawing.Font" /> of the control in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ForeColor">
      <summary>Gets or sets the foreground color of the control.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Handle">
      <summary>Gets the window handle that the control is bound to.</summary>
      <returns>An <see cref="T:System.IntPtr" /> that contains the window handle (<see langword="HWND" />) of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.HasChildren">
      <summary>Gets a value indicating whether the control contains one or more child controls.</summary>
      <returns>
        <see langword="true" /> if the control contains one or more child controls; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Height">
      <summary>Gets or sets the height of the control.</summary>
      <returns>The height of the control in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ImeMode">
      <summary>Gets or sets the Input Method Editor (IME) mode of the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.ImeMode" /> enumeration values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values. The default is <see cref="F:System.Windows.Forms.ImeMode.Inherit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ImeModeBase">
      <summary>Gets or sets the IME mode of a control.</summary>
      <returns>The IME mode of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.InvokeRequired">
      <summary>Gets a value indicating whether the caller must call an invoke method when making method calls to the control because the caller is on a different thread than the one the control was created on.</summary>
      <returns>
        <see langword="true" /> if the control's <see cref="P:System.Windows.Forms.Control.Handle" /> was created on a different thread than the calling thread (indicating that you must make calls to the control through an invoke method); otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.IsAccessible">
      <summary>Gets or sets a value indicating whether the control is visible to accessibility applications.</summary>
      <returns>
        <see langword="true" /> if the control is visible to accessibility applications; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.IsAncestorSiteInDesignMode">
      <summary>Indicates if one of the Ancestors of this control is sited and that site in DesignMode. This property is read-only.</summary>
    </member>
    <member name="P:System.Windows.Forms.Control.IsDisposed">
      <summary>Gets a value indicating whether the control has been disposed of.</summary>
      <returns>
        <see langword="true" /> if the control has been disposed of; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.IsHandleCreated">
      <summary>Gets a value indicating whether the control has a handle associated with it.</summary>
      <returns>
        <see langword="true" /> if a handle has been assigned to the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.IsMirrored">
      <summary>Gets a value indicating whether the control is mirrored.</summary>
      <returns>
        <see langword="true" /> if the control is mirrored; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.LayoutEngine">
      <summary>Gets a cached instance of the control's layout engine.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> for the control's contents.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Left">
      <summary>Gets or sets the distance, in pixels, between the left edge of the control and the left edge of its container's client area.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the distance, in pixels, between the left edge of the control and the left edge of its container's client area.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Location">
      <summary>Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.</summary>
      <returns>The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the control relative to the upper-left corner of its container.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Margin">
      <summary>Gets or sets the space between controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the space between controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.MaximumSize">
      <summary>Gets or sets the size that is the upper limit that <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> can specify.</summary>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.MinimumSize">
      <summary>Gets or sets the size that is the lower limit that <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> can specify.</summary>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ModifierKeys">
      <summary>Gets a value indicating which of the modifier keys (SHIFT, CTRL, and ALT) is in a pressed state.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.Keys" /> values. The default is <see cref="F:System.Windows.Forms.Keys.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.MouseButtons">
      <summary>Gets a value indicating which of the mouse buttons is in a pressed state.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.MouseButtons" /> enumeration values. The default is <see cref="F:System.Windows.Forms.MouseButtons.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.MousePosition">
      <summary>Gets the position of the mouse cursor in screen coordinates.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> that contains the coordinates of the mouse cursor relative to the upper-left corner of the screen.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Name">
      <summary>Gets or sets the name of the control.</summary>
      <returns>The name of the control. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Padding">
      <summary>Gets or sets padding within the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the control's internal spacing characteristics.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Parent">
      <summary>Gets or sets the parent container of the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Control" /> that represents the parent or container control of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.PreferredSize">
      <summary>Gets the size of a rectangular area into which the control can fit.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> containing the height and width, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ProductName">
      <summary>Gets the product name of the assembly containing the control.</summary>
      <returns>The product name of the assembly containing the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ProductVersion">
      <summary>Gets the version of the assembly containing the control.</summary>
      <returns>The file version of the assembly containing the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.PropagatingImeMode">
      <summary>Gets an object that represents a propagating IME mode.</summary>
      <returns>An object that represents a propagating IME mode.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.RecreatingHandle">
      <summary>Gets a value indicating whether the control is currently re-creating its handle.</summary>
      <returns>
        <see langword="true" /> if the control is currently re-creating its handle; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Region">
      <summary>Gets or sets the window region associated with the control.</summary>
      <returns>The window <see cref="T:System.Drawing.Region" /> associated with the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.RenderRightToLeft">
      <summary>This property is now obsolete.</summary>
      <returns>
        <see langword="true" /> if the control is rendered from right to left; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ResizeRedraw">
      <summary>Gets or sets a value indicating whether the control redraws itself when resized.</summary>
      <returns>
        <see langword="true" /> if the control redraws itself when resized; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Right">
      <summary>Gets the distance, in pixels, between the right edge of the control and the left edge of its container's client area.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the distance, in pixels, between the right edge of the control and the left edge of its container's client area.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.RightToLeft">
      <summary>Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.RightToLeft" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.RightToLeft" /> values. The default is <see cref="F:System.Windows.Forms.RightToLeft.Inherit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ScaleChildren">
      <summary>Gets a value that determines the scaling of child controls.</summary>
      <returns>
        <see langword="true" /> if child controls will be scaled when the <see cref="M:System.Windows.Forms.Control.Scale(System.Single)" /> method on this control is called; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ShowFocusCues">
      <summary>Gets a value indicating whether the control should display focus rectangles.</summary>
      <returns>
        <see langword="true" /> if the control should display focus rectangles; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ShowKeyboardCues">
      <summary>Gets a value indicating whether the user interface is in the appropriate state to show or hide keyboard accelerators.</summary>
      <returns>
        <see langword="true" /> if the keyboard accelerators are visible; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Site">
      <summary>Gets or sets the site of the control.</summary>
      <returns>The <see cref="T:System.ComponentModel.ISite" /> associated with the <see cref="T:System.Windows.Forms.Control" />, if any.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Size">
      <summary>Gets or sets the height and width of the control.</summary>
      <returns>The <see cref="T:System.Drawing.Size" /> that represents the height and width of the control in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.TabIndex">
      <summary>Gets or sets the tab order of the control within its container.</summary>
      <returns>The index value of the control within the set of controls within its container. The controls in the container are included in the tab order.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.TabStop">
      <summary>Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.</summary>
      <returns>
        <see langword="true" /> if the user can give the focus to the control using the TAB key; otherwise, <see langword="false" />. The default is <see langword="true" />.

Note: This property will always return <see langword="true" /> for an instance of the <see cref="T:System.Windows.Forms.Form" /> class.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Tag">
      <summary>Gets or sets the object that contains data about the control.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the control. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Top">
      <summary>Gets or sets the distance, in pixels, between the top edge of the control and the top edge of its container's client area.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the distance, in pixels, between the top edge of the control and the top edge of its container's client area.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.TopLevelControl">
      <summary>Gets the parent control that is not parented by another Windows Forms control. Typically, this is the outermost <see cref="T:System.Windows.Forms.Form" /> that the control is contained in.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that represents the top-level control that contains the current control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.UseWaitCursor">
      <summary>Gets or sets a value indicating whether to use the wait cursor for the current control and all child controls.</summary>
      <returns>
        <see langword="true" /> to use the wait cursor for the current control and all child controls; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Visible">
      <summary>Gets or sets a value indicating whether the control and all its child controls are displayed.</summary>
      <returns>
        <see langword="true" /> to display the control and its child controls; otherwise, <see langword="false" />. The default is <see langword="true" />. When getting the value, <see langword="true" /> is returned only if the control is visible and the parent control, if it exists, is visible.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.Width">
      <summary>Gets or sets the width of the control.</summary>
      <returns>The width of the control in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.WindowTarget">
      <summary>This property is not relevant for this class.</summary>
      <returns>The NativeWindow contained within the control.</returns>
    </member>
    <member name="T:System.Windows.Forms.Control.ControlAccessibleObject">
      <summary>Provides information about a control that can be used by an accessibility application.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlAccessibleObject.#ctor(System.Windows.Forms.Control)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control.ControlAccessibleObject" /> class.</summary>
      <param name="ownerControl">The <see cref="T:System.Windows.Forms.Control" /> that owns the <see cref="T:System.Windows.Forms.Control.ControlAccessibleObject" />.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="ownerControl" /> parameter value is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlAccessibleObject.GetHelpTopic(System.String@)">
      <summary>Gets an identifier for a Help topic and the path to the Help file associated with this accessible object.</summary>
      <param name="fileName">When this method returns, contains a string that represents the path to the Help file associated with this accessible object. This parameter is passed uninitialized.</param>
      <returns>An identifier for a Help topic, or -1 if there is no Help topic. On return, the <paramref name="fileName" /> parameter will contain the path to the Help file associated with this accessible object, or <see langword="null" /> if there is no <see langword="IAccessible" /> interface specified.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents)">
      <summary>Notifies accessibility client applications of the specified <see cref="T:System.Windows.Forms.AccessibleEvents" />.</summary>
      <param name="accEvent">The <see cref="T:System.Windows.Forms.AccessibleEvents" /> to notify the accessibility client applications of.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32)">
      <summary>Notifies the accessibility client applications of the specified <see cref="T:System.Windows.Forms.AccessibleEvents" /> for the specified child control.</summary>
      <param name="accEvent">The <see cref="T:System.Windows.Forms.AccessibleEvents" /> to notify the accessibility client applications of.</param>
      <param name="childID">The child <see cref="T:System.Windows.Forms.Control" /> to notify of the accessible event.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32,System.Int32)">
      <summary>Notifies the accessibility client applications of the specified <see cref="T:System.Windows.Forms.AccessibleEvents" /> for the specified child control, giving the identification of the <see cref="T:System.Windows.Forms.AccessibleObject" />.</summary>
      <param name="accEvent">The <see cref="T:System.Windows.Forms.AccessibleEvents" /> to notify the accessibility client applications of.</param>
      <param name="objectID">The identifier of the <see cref="T:System.Windows.Forms.AccessibleObject" />.</param>
      <param name="childID">The child <see cref="T:System.Windows.Forms.Control" /> to notify of the accessible event.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlAccessibleObject.RaiseLiveRegionChanged">
      <summary>Raises the LiveRegionChanged UI automation event.</summary>
      <exception cref="T:System.InvalidOperationException">The owner control is not a live region.</exception>
      <returns>
        <see langword="true" /> if the operation succeeds; otherwise, <see langword="false" /> otherwise.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlAccessibleObject.ToString">
      <summary>Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlAccessibleObject.DefaultAction">
      <summary>Gets a string that describes the default action of the object. Not all objects have a default action.</summary>
      <returns>A description of the default action for an object, or <see langword="null" /> if this object has no default action.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlAccessibleObject.Description">
      <summary>Gets the description of the <see cref="T:System.Windows.Forms.Control.ControlAccessibleObject" />.</summary>
      <returns>A string describing the <see cref="T:System.Windows.Forms.Control.ControlAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlAccessibleObject.Handle">
      <summary>Gets or sets the handle of the accessible object.</summary>
      <returns>An <see cref="T:System.IntPtr" /> that represents the handle of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlAccessibleObject.Help">
      <summary>Gets the description of what the object does or how the object is used.</summary>
      <returns>The description of what the object does or how the object is used.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlAccessibleObject.KeyboardShortcut">
      <summary>Gets the object shortcut key or access key for an accessible object.</summary>
      <returns>The object shortcut key or access key for an accessible object, or <see langword="null" /> if there is no shortcut key associated with the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlAccessibleObject.Name">
      <summary>Gets or sets the accessible object name.</summary>
      <returns>The accessible object name.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlAccessibleObject.Owner">
      <summary>Gets the owner of the accessible object.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that owns the <see cref="T:System.Windows.Forms.Control.ControlAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlAccessibleObject.Parent">
      <summary>Gets the parent of an accessible object.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the parent of an accessible object, or <see langword="null" /> if there is no parent object.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlAccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.Control.ControlCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.Control" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.#ctor(System.Windows.Forms.Control)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Control.ControlCollection" /> class.</summary>
      <param name="owner">A <see cref="T:System.Windows.Forms.Control" /> representing the control that owns the control collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later versions: The <paramref name="owner" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.Add(System.Windows.Forms.Control)">
      <summary>Adds the specified control to the control collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.Control" /> to add to the control collection.</param>
      <exception cref="T:System.Exception">The specified control is a top-level control, or a circular control reference would result if this control were added to the control collection.</exception>
      <exception cref="T:System.ArgumentException">The object assigned to the <paramref name="value" /> parameter is not a <see cref="T:System.Windows.Forms.Control" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.AddRange(System.Windows.Forms.Control[])">
      <summary>Adds an array of control objects to the collection.</summary>
      <param name="controls">An array of <see cref="T:System.Windows.Forms.Control" /> objects to add to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.Clear">
      <summary>Removes all controls from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.Contains(System.Windows.Forms.Control)">
      <summary>Determines whether the specified control is a member of the collection.</summary>
      <param name="control">The <see cref="T:System.Windows.Forms.Control" /> to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.Control" /> is a member of the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.ContainsKey(System.String)">
      <summary>Determines whether the <see cref="T:System.Windows.Forms.Control.ControlCollection" /> contains an item with the specified key.</summary>
      <param name="key">The key to locate in the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.Control.ControlCollection" /> contains an item with the specified key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.Find(System.String,System.Boolean)">
      <summary>Searches for controls by their <see cref="P:System.Windows.Forms.Control.Name" /> property and builds an array of all the controls that match.</summary>
      <param name="key">The key to locate in the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</param>
      <param name="searchAllChildren">
        <see langword="true" /> to search all child controls; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="key" /> is <see langword="null" /> or the empty string ("").</exception>
      <returns>An array of type <see cref="T:System.Windows.Forms.Control" /> containing the matching controls.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.GetChildIndex(System.Windows.Forms.Control)">
      <summary>Retrieves the index of the specified child control within the control collection.</summary>
      <param name="child">The <see cref="T:System.Windows.Forms.Control" /> to search for in the control collection.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="child" /> control is not in the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</exception>
      <returns>A zero-based index value that represents the location of the specified child control within the control collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.GetChildIndex(System.Windows.Forms.Control,System.Boolean)">
      <summary>Retrieves the index of the specified child control within the control collection, and optionally raises an exception if the specified control is not within the control collection.</summary>
      <param name="child">The <see cref="T:System.Windows.Forms.Control" /> to search for in the control collection.</param>
      <param name="throwException">
        <see langword="true" /> to throw an exception if the <see cref="T:System.Windows.Forms.Control" /> specified in the <paramref name="child" /> parameter is not a control in the <see cref="T:System.Windows.Forms.Control.ControlCollection" />; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="child" /><see cref="T:System.Windows.Forms.Control" /> is not in the <see cref="T:System.Windows.Forms.Control.ControlCollection" />, and the <paramref name="throwException" /> parameter value is <see langword="true" />.</exception>
      <returns>A zero-based index value that represents the location of the specified child control within the control collection; otherwise -1 if the specified <see cref="T:System.Windows.Forms.Control" /> is not found in the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.GetEnumerator">
      <summary>Retrieves a reference to an enumerator object that is used to iterate over a <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.IndexOf(System.Windows.Forms.Control)">
      <summary>Retrieves the index of the specified control in the control collection.</summary>
      <param name="control">The <see cref="T:System.Windows.Forms.Control" /> to locate in the collection.</param>
      <returns>A zero-based index value that represents the position of the specified <see cref="T:System.Windows.Forms.Control" /> in the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.IndexOfKey(System.String)">
      <summary>Retrieves the index of the first occurrence of the specified item within the collection.</summary>
      <param name="key">The name of the control to search for.</param>
      <returns>The zero-based index of the first occurrence of the control with the specified name in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.Remove(System.Windows.Forms.Control)">
      <summary>Removes the specified control from the control collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.Control" /> to remove from the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.RemoveAt(System.Int32)">
      <summary>Removes a control from the control collection at the specified indexed location.</summary>
      <param name="index">The index value of the <see cref="T:System.Windows.Forms.Control" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.RemoveByKey(System.String)">
      <summary>Removes the child control with the specified key.</summary>
      <param name="key">The name of the child control to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.SetChildIndex(System.Windows.Forms.Control,System.Int32)">
      <summary>Sets the index of the specified child control in the collection to the specified index value.</summary>
      <param name="child">The <paramref name="child" /> control to search for.</param>
      <param name="newIndex">The new index value of the control.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="child" /> control is not in the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.System#Collections#IList#Add(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
      <param name="control">The object to add to this collection.</param>
      <returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.System#Collections#IList#Remove(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
      <param name="control">The <see cref="T:System.Windows.Forms.Control" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.Control.ControlCollection.System#ICloneable#Clone">
      <summary>For a description of this member, see <see cref="M:System.ICloneable.Clone" />.</summary>
      <returns>A new object that is a copy of this instance.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlCollection.Item(System.Int32)">
      <summary>Indicates the <see cref="T:System.Windows.Forms.Control" /> at the specified indexed location in the collection.</summary>
      <param name="index">The index of the control to retrieve from the control collection.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> value is less than zero or is greater than or equal to the number of controls in the collection.</exception>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> located at the specified index location within the control collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlCollection.Item(System.String)">
      <summary>Indicates a <see cref="T:System.Windows.Forms.Control" /> with the specified key in the collection.</summary>
      <param name="key">The name of the control to retrieve from the control collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> with the specified key within the <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Control.ControlCollection.Owner">
      <summary>Gets the control that owns this <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that owns this <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ControlBindingsCollection">
      <summary>Represents the collection of data bindings for a control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.#ctor(System.Windows.Forms.IBindableComponent)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ControlBindingsCollection" /> class with the specified bindable control.</summary>
      <param name="control">The <see cref="T:System.Windows.Forms.IBindableComponent" /> the binding collection belongs to.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String)">
      <summary>Creates a <see cref="T:System.Windows.Forms.Binding" /> using the specified control property name, data source, and data member, and adds it to the collection.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> that represents the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="binding" /> is <see langword="null" />.</exception>
      <exception cref="T:System.Exception">The <paramref name="propertyName" /> is already data-bound.

-or-

The <paramref name="dataMember" /> doesn't specify a valid member of the <paramref name="dataSource" />.</exception>
      <returns>The newly created <see cref="T:System.Windows.Forms.Binding" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean)">
      <summary>Creates a binding with the specified control property name, data source, data member, and information about whether formatting is enabled, and adds the binding to the collection.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> representing the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control.  
  
 -or-  
  
 The property given is a read-only property.</exception>
      <exception cref="T:System.Exception">If formatting is disabled and the <paramref name="propertyName" /> is neither a valid property of a control nor an empty string ("").</exception>
      <returns>The newly created <see cref="T:System.Windows.Forms.Binding" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode)">
      <summary>Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting, propagating values to the data source based on the specified update setting, and adding the binding to the collection.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> representing the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <param name="updateMode">One of the <see cref="T:System.Windows.Forms.DataSourceUpdateMode" /> values.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control or is read-only.  
  
 -or-  
  
 The specified data member does not exist on the data source.  
  
 -or-  
  
 The data source, data member, or control property specified are associated with another binding in the collection.</exception>
      <returns>The newly created <see cref="T:System.Windows.Forms.Binding" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object)">
      <summary>Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting, propagating values to the data source based on the specified update setting, setting the property to the specified value when <see cref="T:System.DBNull" /> is returned from the data source, and adding the binding to the collection.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> representing the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <param name="updateMode">One of the <see cref="T:System.Windows.Forms.DataSourceUpdateMode" /> values.</param>
      <param name="nullValue">When the data source has this value, the bound property is set to <see cref="T:System.DBNull" />.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control or is read-only.  
  
 -or-  
  
 The specified data member does not exist on the data source.  
  
 -or-  
  
 The data source, data member, or control property specified are associated with another binding in the collection.</exception>
      <returns>The newly created <see cref="T:System.Windows.Forms.Binding" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object,System.String)">
      <summary>Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting with the specified format string, propagating values to the data source based on the specified update setting, setting the property to the specified value when <see cref="T:System.DBNull" /> is returned from the data source, and adding the binding to the collection.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> representing the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <param name="updateMode">One of the <see cref="T:System.Windows.Forms.DataSourceUpdateMode" /> values.</param>
      <param name="nullValue">When the data source has this value, the bound property is set to <see cref="T:System.DBNull" />.</param>
      <param name="formatString">One or more format specifier characters that indicate how a value is to be displayed.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control or is read-only.  
  
 -or-  
  
 The specified data member does not exist on the data source.  
  
 -or-  
  
 The data source, data member, or control property specified are associated with another binding in the collection.</exception>
      <returns>The newly created <see cref="T:System.Windows.Forms.Binding" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.Add(System.String,System.Object,System.String,System.Boolean,System.Windows.Forms.DataSourceUpdateMode,System.Object,System.String,System.IFormatProvider)">
      <summary>Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting with the specified format string, propagating values to the data source based on the specified update setting, setting the property to the specified value when <see cref="T:System.DBNull" /> is returned from the data source, setting the specified format provider, and adding the binding to the collection.</summary>
      <param name="propertyName">The name of the control property to bind.</param>
      <param name="dataSource">An <see cref="T:System.Object" /> representing the data source.</param>
      <param name="dataMember">The property or list to bind to.</param>
      <param name="formattingEnabled">
        <see langword="true" /> to format the displayed data; otherwise, <see langword="false" />.</param>
      <param name="updateMode">One of the <see cref="T:System.Windows.Forms.DataSourceUpdateMode" /> values.</param>
      <param name="nullValue">When the data source has this value, the bound property is set to <see cref="T:System.DBNull" />.</param>
      <param name="formatString">One or more format specifier characters that indicate how a value is to be displayed.</param>
      <param name="formatInfo">An implementation of <see cref="T:System.IFormatProvider" /> to override default formatting behavior.</param>
      <exception cref="T:System.ArgumentException">The property given by <paramref name="propertyName" /> does not exist on the control or is read-only.  
  
 -or-  
  
 The specified data member does not exist on the data source.  
  
 -or-  
  
 The data source, data member, or control property specified are associated with another binding in the collection.</exception>
      <returns>The newly created <see cref="T:System.Windows.Forms.Binding" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.Add(System.Windows.Forms.Binding)">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.Binding" /> to the collection.</summary>
      <param name="binding">The <see cref="T:System.Windows.Forms.Binding" /> to add.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="binding" /> is null.</exception>
      <exception cref="T:System.ArgumentException">The control property is already data-bound.

-or-

The <see cref="T:System.Windows.Forms.Binding" /> does not specify a valid column of the <see cref="P:System.Windows.Forms.Binding.DataSource" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.AddCore(System.Windows.Forms.Binding)">
      <summary>Adds a binding to the collection.</summary>
      <param name="dataBinding">The <see cref="T:System.Windows.Forms.Binding" /> to add.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.Clear">
      <summary>Clears the collection of any bindings.</summary>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.ClearCore">
      <summary>Clears the bindings in the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.Remove(System.Windows.Forms.Binding)">
      <summary>Deletes the specified <see cref="T:System.Windows.Forms.Binding" /> from the collection.</summary>
      <param name="binding">The <see cref="T:System.Windows.Forms.Binding" /> to remove.</param>
      <exception cref="T:System.NullReferenceException">The <paramref name="binding" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.RemoveAt(System.Int32)">
      <summary>Deletes the <see cref="T:System.Windows.Forms.Binding" /> at the specified index.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> value is less than 0, or it is greater than the number of bindings in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.ControlBindingsCollection.RemoveCore(System.Windows.Forms.Binding)">
      <summary>Removes the specified binding from the collection.</summary>
      <param name="dataBinding">The <see cref="T:System.Windows.Forms.Binding" /> to remove from the collection.</param>
      <exception cref="T:System.ArgumentException">The binding belongs to another <see cref="T:System.Windows.Forms.ControlBindingsCollection" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.ControlBindingsCollection.BindableComponent">
      <summary>Gets the <see cref="T:System.Windows.Forms.IBindableComponent" /> the binding collection belongs to.</summary>
      <returns>The <see cref="T:System.Windows.Forms.IBindableComponent" /> the binding collection belongs to.</returns>
    </member>
    <member name="P:System.Windows.Forms.ControlBindingsCollection.Control">
      <summary>Gets the control that the collection belongs to.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that the collection belongs to.</returns>
    </member>
    <member name="P:System.Windows.Forms.ControlBindingsCollection.DefaultDataSourceUpdateMode">
      <summary>Gets or sets the default <see cref="P:System.Windows.Forms.Binding.DataSourceUpdateMode" /> for a <see cref="T:System.Windows.Forms.Binding" /> in the collection.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DataSourceUpdateMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ControlBindingsCollection.Item(System.String)">
      <summary>Gets the <see cref="T:System.Windows.Forms.Binding" /> specified by the control's property name.</summary>
      <param name="propertyName">The name of the property on the data-bound control.</param>
      <returns>The <see cref="T:System.Windows.Forms.Binding" /> that binds the specified control property to a data source.</returns>
    </member>
    <member name="T:System.Windows.Forms.ControlEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.ControlAdded" /> and <see cref="E:System.Windows.Forms.Control.ControlRemoved" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.ControlEventArgs.#ctor(System.Windows.Forms.Control)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ControlEventArgs" /> class for the specified control.</summary>
      <param name="control">The <see cref="T:System.Windows.Forms.Control" /> to store in this event.</param>
    </member>
    <member name="P:System.Windows.Forms.ControlEventArgs.Control">
      <summary>Gets the control object used by this event.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> used by this event.</returns>
    </member>
    <member name="T:System.Windows.Forms.ControlEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.ControlAdded" /> and <see cref="E:System.Windows.Forms.Control.ControlRemoved" /> events of the <see cref="T:System.Windows.Forms.Control" /> class.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ControlEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ControlPaint">
      <summary>Provides methods used to paint common Windows controls and their elements. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.CreateHBitmap16Bit(System.Drawing.Bitmap,System.Drawing.Color)">
      <summary>Creates a 16-bit color bitmap.</summary>
      <param name="bitmap">The <see cref="T:System.Drawing.Bitmap" /> to create.</param>
      <param name="background">The <see cref="T:System.Drawing.Color" /> of the background.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="bitmap" /> is null.</exception>
      <returns>The handle to the bitmap.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.CreateHBitmapColorMask(System.Drawing.Bitmap,System.IntPtr)">
      <summary>Creates a Win32 <see langword="HBITMAP" /> out of the image.</summary>
      <param name="bitmap">The <see cref="T:System.Drawing.Bitmap" /> to create.</param>
      <param name="monochromeMask">A pointer to the monochrome mask.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="bitmap" /> is null.</exception>
      <returns>The handle to the bitmap.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.CreateHBitmapTransparencyMask(System.Drawing.Bitmap)">
      <summary>Creates a color mask for the specified bitmap that indicates which color should be displayed as transparent.</summary>
      <param name="bitmap">The <see cref="T:System.Drawing.Bitmap" /> to create the transparency mask for.</param>
      <returns>The handle to the <see cref="T:System.Drawing.Bitmap" /> mask.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.Dark(System.Drawing.Color)">
      <summary>Creates a new dark color object for the control from the specified color.</summary>
      <param name="baseColor">The <see cref="T:System.Drawing.Color" /> to be darkened.</param>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the dark color on the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.Dark(System.Drawing.Color,System.Single)">
      <summary>Creates a new dark color object for the control from the specified color and darkens it by the specified percentage.</summary>
      <param name="baseColor">The <see cref="T:System.Drawing.Color" /> to be darkened.</param>
      <param name="percOfDarkDark">The percentage to darken the specified <see cref="T:System.Drawing.Color" />.</param>
      <returns>A <see cref="T:System.Drawing.Color" /> that represent the dark color on the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DarkDark(System.Drawing.Color)">
      <summary>Creates a new dark color object for the control from the specified color.</summary>
      <param name="baseColor">The <see cref="T:System.Drawing.Color" /> to be darkened.</param>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the dark color on the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawBorder(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Int32,System.Windows.Forms.ButtonBorderStyle,System.Drawing.Color,System.Int32,System.Windows.Forms.ButtonBorderStyle,System.Drawing.Color,System.Int32,System.Windows.Forms.ButtonBorderStyle,System.Drawing.Color,System.Int32,System.Windows.Forms.ButtonBorderStyle)">
      <summary>Draws a border on a button-style control with the specified styles, colors, and border widths; on the specified graphics surface; and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the border.</param>
      <param name="leftColor">The <see cref="T:System.Drawing.Color" /> of the left of the border.</param>
      <param name="leftWidth">The width of the left border.</param>
      <param name="leftStyle">One of the <see cref="T:System.Windows.Forms.ButtonBorderStyle" /> values that specifies the style of the left border.</param>
      <param name="topColor">The <see cref="T:System.Drawing.Color" /> of the top of the border.</param>
      <param name="topWidth">The width of the top border.</param>
      <param name="topStyle">One of the <see cref="T:System.Windows.Forms.ButtonBorderStyle" /> values that specifies the style of the top border.</param>
      <param name="rightColor">The <see cref="T:System.Drawing.Color" /> of the right of the border.</param>
      <param name="rightWidth">The width of the right border.</param>
      <param name="rightStyle">One of the <see cref="T:System.Windows.Forms.ButtonBorderStyle" /> values that specifies the style of the right border.</param>
      <param name="bottomColor">The <see cref="T:System.Drawing.Color" /> of the bottom of the border.</param>
      <param name="bottomWidth">The width of the bottom border.</param>
      <param name="bottomStyle">One of the <see cref="T:System.Windows.Forms.ButtonBorderStyle" /> values that specifies the style of the bottom border.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawBorder(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.ButtonBorderStyle)">
      <summary>Draws a border with the specified style and color, on the specified graphics surface, and within the specified bounds on a button-style control.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the border.</param>
      <param name="color">The <see cref="T:System.Drawing.Color" /> of the border.</param>
      <param name="style">One of the <see cref="T:System.Windows.Forms.ButtonBorderStyle" /> values that specifies the style of the border.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws a three-dimensional style border on the specified graphics surface and within the specified bounds on a control.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the border.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Border3DStyle)">
      <summary>Draws a three-dimensional style border with the specified style, on the specified graphics surface, and within the specified bounds on a control.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the border.</param>
      <param name="style">One of the <see cref="T:System.Windows.Forms.Border3DStyle" /> values that specifies the style of the border.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Border3DStyle,System.Windows.Forms.Border3DSide)">
      <summary>Draws a three-dimensional style border with the specified style, on the specified graphics surface and sides, and within the specified bounds on a control.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the border.</param>
      <param name="style">One of the <see cref="T:System.Windows.Forms.Border3DStyle" /> values that specifies the style of the border.</param>
      <param name="sides">One of the <see cref="T:System.Windows.Forms.Border3DSide" /> values that specifies the side of the rectangle to draw the border on.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Draws a three-dimensional style border on the specified graphics surface and within the specified bounds on a control.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the top left of the border rectangle.</param>
      <param name="y">The y-coordinate of the top left of the border rectangle.</param>
      <param name="width">The width of the border rectangle.</param>
      <param name="height">The height of the border rectangle.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.Border3DStyle)">
      <summary>Draws a three-dimensional style border with the specified style, on the specified graphics surface, and within the specified bounds on a control.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the top left of the border rectangle.</param>
      <param name="y">The y-coordinate of the top left of the border rectangle.</param>
      <param name="width">The width of the border rectangle.</param>
      <param name="height">The height of the border rectangle.</param>
      <param name="style">One of the <see cref="T:System.Windows.Forms.Border3DStyle" /> values that specifies the style of the border.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.Border3DStyle,System.Windows.Forms.Border3DSide)">
      <summary>Draws a three-dimensional style border with the specified style, on the specified graphics surface and side, and within the specified bounds on a control.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the top left of the border rectangle.</param>
      <param name="y">The y-coordinate of the top left of the border rectangle.</param>
      <param name="width">The width of the border rectangle.</param>
      <param name="height">The height of the border rectangle.</param>
      <param name="style">One of the <see cref="T:System.Windows.Forms.Border3DStyle" /> values that specifies the style of the border.</param>
      <param name="sides">The <see cref="T:System.Windows.Forms.Border3DSide" /> of the rectangle to draw the border on.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)">
      <summary>Draws a button control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the button.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the button in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)">
      <summary>Draws a button control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="y">The y-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="width">The width of the button.</param>
      <param name="height">The height of the button.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the button in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawCaptionButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.CaptionButton,System.Windows.Forms.ButtonState)">
      <summary>Draws the specified caption button control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the caption button.</param>
      <param name="button">One of the <see cref="T:System.Windows.Forms.CaptionButton" /> values that specifies the type of caption button to draw.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the button in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawCaptionButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.CaptionButton,System.Windows.Forms.ButtonState)">
      <summary>Draws the specified caption button control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the top left of the drawing rectangle.</param>
      <param name="y">The y-coordinate of the top left of the drawing rectangle.</param>
      <param name="width">The width of the drawing rectangle.</param>
      <param name="height">The height of the drawing rectangle.</param>
      <param name="button">One of the <see cref="T:System.Windows.Forms.CaptionButton" /> values that specifies the type of caption button to draw.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the button in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawCheckBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)">
      <summary>Draws a check box control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the check box.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the check box in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawCheckBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)">
      <summary>Draws a check box control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="y">The y-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="width">The width of the check box.</param>
      <param name="height">The height of the check box.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the check box in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawComboButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)">
      <summary>Draws a drop-down button on a combo box control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the combo box.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the combo box in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawComboButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)">
      <summary>Draws a drop-down button on a combo box control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the top left of the border rectangle.</param>
      <param name="y">The y-coordinate of the top left of the border rectangle.</param>
      <param name="width">The width of the combo box.</param>
      <param name="height">The height of the combo box.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the combo box in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawContainerGrabHandle(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws a container control grab handle glyph on the specified graphics surface and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the grab handle glyph.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawFocusRectangle(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws a focus rectangle on the specified graphics surface and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the grab handle glyph.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawFocusRectangle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color)">
      <summary>Draws a focus rectangle on the specified graphics surface and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the grab handle glyph.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> that is the foreground color of the object to draw the focus rectangle on.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> that is the background color of the object to draw the focus rectangle on.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawGrabHandle(System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean,System.Boolean)">
      <summary>Draws a standard selection grab handle glyph on the specified graphics surface, within the specified bounds, and in the specified state and style.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the grab handle glyph.</param>
      <param name="primary">
        <see langword="true" /> to draw the handle as a primary grab handle; otherwise, <see langword="false" />.</param>
      <param name="enabled">
        <see langword="true" /> to draw the handle in an enabled state; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawGrid(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Size,System.Drawing.Color)">
      <summary>Draws a grid of one-pixel dots with the specified spacing, within the specified bounds, on the specified graphics surface, and in the specified color.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="area">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the grid.</param>
      <param name="pixelsBetweenDots">The <see cref="T:System.Drawing.Size" /> that specified the height and width between the dots of the grid.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> of the background behind the grid.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawImageDisabled(System.Drawing.Graphics,System.Drawing.Image,System.Int32,System.Int32,System.Drawing.Color)">
      <summary>Draws the specified image in a disabled state.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw.</param>
      <param name="x">The x-coordinate of the top left of the border image.</param>
      <param name="y">The y-coordinate of the top left of the border image.</param>
      <param name="background">The <see cref="T:System.Drawing.Color" /> of the background behind the image.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawLockedFrame(System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean)">
      <summary>Draws a locked selection frame on the screen within the specified bounds and on the specified graphics surface. Specifies whether to draw the frame with the primary selected colors.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the frame.</param>
      <param name="primary">
        <see langword="true" /> to draw this frame with the colors used for the primary selection; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.MenuGlyph)">
      <summary>Draws the specified menu glyph on a menu item control within the specified bounds and on the specified surface.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the glyph.</param>
      <param name="glyph">One of the <see cref="T:System.Windows.Forms.MenuGlyph" /> values that specifies the image to draw.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.MenuGlyph,System.Drawing.Color,System.Drawing.Color)">
      <summary>Draws the specified menu glyph on a menu item control within the specified bounds and on the specified surface, replacing <see cref="P:System.Drawing.Color.White" /> with the color specified in the <paramref name="backColor" /> parameter and replacing <see cref="P:System.Drawing.Color.Black" /> with the color specified in the <paramref name="foreColor" /> parameter.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the glyph.</param>
      <param name="glyph">One of the <see cref="T:System.Windows.Forms.MenuGlyph" /> values that specifies the image to draw.</param>
      <param name="foreColor">The color that replaces <see cref="P:System.Drawing.Color.White" /> as the foreground color.</param>
      <param name="backColor">The color that replaces <see cref="P:System.Drawing.Color.Black" /> as the background color.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.MenuGlyph)">
      <summary>Draws the specified menu glyph on a menu item control with the specified bounds and on the specified surface.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="y">The y-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="width">The width of the menu glyph.</param>
      <param name="height">The height of the menu glyph.</param>
      <param name="glyph">One of the <see cref="T:System.Windows.Forms.MenuGlyph" /> values that specifies the image to draw.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.MenuGlyph,System.Drawing.Color,System.Drawing.Color)">
      <summary>Draws the specified menu glyph on a menu item control within the specified coordinates, height, and width on the specified surface, replacing <see cref="P:System.Drawing.Color.White" /> with the color specified in the <paramref name="backColor" /> parameter and replacing <see cref="P:System.Drawing.Color.Black" /> with the color specified in the <paramref name="foreColor" /> parameter.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="y">The y-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="width">The width of the menu glyph.</param>
      <param name="height">The height of the menu glyph.</param>
      <param name="glyph">One of the <see cref="T:System.Windows.Forms.MenuGlyph" /> values that specifies the image to draw.</param>
      <param name="foreColor">The color that replaces <see cref="P:System.Drawing.Color.White" /> as the foreground color.</param>
      <param name="backColor">The color that replaces <see cref="P:System.Drawing.Color.Black" /> as the background color.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawMixedCheckBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)">
      <summary>Draws a three-state check box control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the check box.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the check box in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawMixedCheckBox(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)">
      <summary>Draws a three-state check box control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="y">The y-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="width">The width of the check box.</param>
      <param name="height">The height of the check box.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the check box in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonState)">
      <summary>Draws a radio button control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the radio button.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the radio button in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawRadioButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ButtonState)">
      <summary>Draws a radio button control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="y">The y-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="width">The width of the radio button.</param>
      <param name="height">The height of the radio button.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the radio button in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawReversibleFrame(System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.FrameStyle)">
      <summary>Draws a reversible frame on the screen within the specified bounds, with the specified background color, and in the specified state.</summary>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the rectangle to draw, in screen coordinates.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> of the background behind the frame.</param>
      <param name="style">One of the <see cref="T:System.Windows.Forms.FrameStyle" /> values that specifies the style of the frame.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawReversibleLine(System.Drawing.Point,System.Drawing.Point,System.Drawing.Color)">
      <summary>Draws a reversible line on the screen within the specified starting and ending points and with the specified background color.</summary>
      <param name="start">The starting <see cref="T:System.Drawing.Point" /> of the line, in screen coordinates.</param>
      <param name="end">The ending <see cref="T:System.Drawing.Point" /> of the line, in screen coordinates.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> of the background behind the line.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawScrollButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ScrollButton,System.Windows.Forms.ButtonState)">
      <summary>Draws the specified scroll button on a scroll bar control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the glyph.</param>
      <param name="button">One of the <see cref="T:System.Windows.Forms.ScrollButton" /> values that specifies the type of scroll arrow to draw.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the scroll button in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawScrollButton(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.ScrollButton,System.Windows.Forms.ButtonState)">
      <summary>Draws the specified scroll button on a scroll bar control in the specified state, on the specified graphics surface, and within the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The x-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="y">The y-coordinate of the upper left corner of the drawing rectangle.</param>
      <param name="width">The width of the scroll button.</param>
      <param name="height">The height of the scroll button.</param>
      <param name="button">One of the <see cref="T:System.Windows.Forms.ScrollButton" /> values that specifies the type of scroll arrow to draw.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.ButtonState" /> values that specifies the state to draw the scroll button in.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawSelectionFrame(System.Drawing.Graphics,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.Color)">
      <summary>Draws a standard selection frame in the specified state, on the specified graphics surface, with the specified inner and outer dimensions, and with the specified background color.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="active">
        <see langword="true" /> to draw the selection frame in an active state; otherwise, <see langword="false" />.</param>
      <param name="outsideRect">The <see cref="T:System.Drawing.Rectangle" /> that represents the outer boundary of the selection frame.</param>
      <param name="insideRect">The <see cref="T:System.Drawing.Rectangle" /> that represents the inner boundary of the selection frame.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> of the background behind the frame.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawSizeGrip(System.Drawing.Graphics,System.Drawing.Color,System.Drawing.Rectangle)">
      <summary>Draws a size grip on a form with the specified bounds and background color and on the specified graphics surface.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> of the background used to determine the colors of the size grip.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the size grip.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawSizeGrip(System.Drawing.Graphics,System.Drawing.Color,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Draws a size grip on a form with the specified bounds and background color and on the specified graphics surface.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> of the background used to determine the colors of the size grip.</param>
      <param name="x">The x-coordinate of the upper left corner of the size grip.</param>
      <param name="y">The y-coordinate of the upper left corner of the size grip.</param>
      <param name="width">The width of the size grip.</param>
      <param name="height">The height of the size grip.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawStringDisabled(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Drawing.Color,System.Drawing.RectangleF,System.Drawing.StringFormat)">
      <summary>Draws the specified string in a disabled state on the specified graphics surface; within the specified bounds; and in the specified font, color, and format.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="s">The string to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to draw the string with.</param>
      <param name="color">The <see cref="T:System.Drawing.Color" /> of the background behind the string.</param>
      <param name="layoutRectangle">The <see cref="T:System.Drawing.RectangleF" /> that represents the dimensions of the string.</param>
      <param name="format">The <see cref="T:System.Drawing.StringFormat" /> to apply to the string.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawStringDisabled(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Color,System.Drawing.Rectangle,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the specified string in a disabled state on the specified graphics surface, within the specified bounds, and in the specified font, color, and format, using the specified GDI-based <see cref="T:System.Windows.Forms.TextRenderer" />.</summary>
      <param name="dc">The GDI-based <see cref="T:System.Windows.Forms.TextRenderer" />.</param>
      <param name="s">The string to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to draw the string with.</param>
      <param name="color">The <see cref="T:System.Drawing.Color" /> of the background behind the string.</param>
      <param name="layoutRectangle">The <see cref="T:System.Drawing.RectangleF" /> that represents the dimensions of the string.</param>
      <param name="format">The <see cref="T:System.Drawing.StringFormat" /> to apply to the string.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.DrawVisualStyleBorder(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws a border in the style appropriate for disabled items.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the border.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.FillReversibleRectangle(System.Drawing.Rectangle,System.Drawing.Color)">
      <summary>Draws a filled, reversible rectangle on the screen.</summary>
      <param name="rectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of the rectangle to fill, in screen coordinates.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> of the background behind the fill.</param>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.Light(System.Drawing.Color)">
      <summary>Creates a new light color object for the control from the specified color.</summary>
      <param name="baseColor">The <see cref="T:System.Drawing.Color" /> to be lightened.</param>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the light color on the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.Light(System.Drawing.Color,System.Single)">
      <summary>Creates a new light color object for the control from the specified color and lightens it by the specified percentage.</summary>
      <param name="baseColor">The <see cref="T:System.Drawing.Color" /> to be lightened.</param>
      <param name="percOfLightLight">The percentage to lighten the specified <see cref="T:System.Drawing.Color" />.</param>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the light color on the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ControlPaint.LightLight(System.Drawing.Color)">
      <summary>Creates a new light color object for the control from the specified color.</summary>
      <param name="baseColor">The <see cref="T:System.Drawing.Color" /> to be lightened.</param>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the light color on the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ControlPaint.ContrastControlDark">
      <summary>Gets the color to use as the <see cref="P:System.Drawing.SystemColors.ControlDark" /> color.</summary>
      <returns>The <see cref="T:System.Drawing.Color" /> to use as the <see cref="P:System.Drawing.SystemColors.ControlDark" /> color.</returns>
    </member>
    <member name="T:System.Windows.Forms.ControlStyles">
      <summary>Specifies the style and behavior of a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.AllPaintingInWmPaint">
      <summary>If <see langword="true" />, the control ignores the window message WM_ERASEBKGND to reduce flicker. This style should only be applied if the <see cref="F:System.Windows.Forms.ControlStyles.UserPaint" /> bit is set to <see langword="true" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.CacheText">
      <summary>If <see langword="true" />, the control keeps a copy of the text rather than getting it from the <see cref="P:System.Windows.Forms.Control.Handle" /> each time it is needed. This style defaults to <see langword="false" />. This behavior improves performance, but makes it difficult to keep the text synchronized.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.ContainerControl">
      <summary>If <see langword="true" />, the control is a container-like control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.DoubleBuffer">
      <summary>If <see langword="true" />, drawing is performed in a buffer, and after it completes, the result is output to the screen. Double-buffering prevents flicker caused by the redrawing of the control. If you set <see cref="F:System.Windows.Forms.ControlStyles.DoubleBuffer" /> to <see langword="true" />, you should also set <see cref="F:System.Windows.Forms.ControlStyles.UserPaint" /> and <see cref="F:System.Windows.Forms.ControlStyles.AllPaintingInWmPaint" /> to <see langword="true" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.EnableNotifyMessage">
      <summary>If <see langword="true" />, the <see cref="M:System.Windows.Forms.Control.OnNotifyMessage(System.Windows.Forms.Message)" /> method is called for every message sent to the control's <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" />. This style defaults to <see langword="false" />. <see cref="F:System.Windows.Forms.ControlStyles.EnableNotifyMessage" /> does not work in partial trust.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.FixedHeight">
      <summary>If <see langword="true" />, the control has a fixed height when auto-scaled. For example, if a layout operation attempts to rescale the control to accommodate a new <see cref="T:System.Drawing.Font" />, the control's <see cref="P:System.Windows.Forms.Control.Height" /> remains unchanged.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.FixedWidth">
      <summary>If <see langword="true" />, the control has a fixed width when auto-scaled. For example, if a layout operation attempts to rescale the control to accommodate a new <see cref="T:System.Drawing.Font" />, the control's <see cref="P:System.Windows.Forms.Control.Width" /> remains unchanged.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.Opaque">
      <summary>If <see langword="true" />, the control is drawn opaque and the background is not painted.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.OptimizedDoubleBuffer">
      <summary>If <see langword="true" />, the control is first drawn to a buffer rather than directly to the screen, which can reduce flicker. If you set this property to <see langword="true" />, you should also set the <see cref="F:System.Windows.Forms.ControlStyles.AllPaintingInWmPaint" /> to <see langword="true" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.ResizeRedraw">
      <summary>If <see langword="true" />, the control is redrawn when it is resized.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.Selectable">
      <summary>If <see langword="true" />, the control can receive focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.StandardClick">
      <summary>If <see langword="true" />, the control implements the standard <see cref="E:System.Windows.Forms.Control.Click" /> behavior.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.StandardDoubleClick">
      <summary>If <see langword="true" />, the control implements the standard <see cref="E:System.Windows.Forms.Control.DoubleClick" /> behavior. This style is ignored if the <see cref="F:System.Windows.Forms.ControlStyles.StandardClick" /> bit is not set to <see langword="true" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.SupportsTransparentBackColor">
      <summary>If <see langword="true" />, the control accepts a <see cref="P:System.Windows.Forms.Control.BackColor" /> with an alpha component of less than 255 to simulate transparency. Transparency will be simulated only if the <see cref="F:System.Windows.Forms.ControlStyles.UserPaint" /> bit is set to <see langword="true" /> and the parent control is derived from <see cref="T:System.Windows.Forms.Control" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.UserMouse">
      <summary>If <see langword="true" />, the control does its own mouse processing, and mouse events are not handled by the operating system.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.UserPaint">
      <summary>If <see langword="true" />, the control paints itself rather than the operating system doing so. If <see langword="false" />, the <see cref="E:System.Windows.Forms.Control.Paint" /> event is not raised. This style only applies to classes derived from <see cref="T:System.Windows.Forms.Control" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlStyles.UseTextForAccessibility">
      <summary>Specifies that the value of the control's <c>Text</c> property, if set, determines the control's default Active Accessibility name and shortcut key.</summary>
    </member>
    <member name="T:System.Windows.Forms.ControlUpdateMode">
      <summary>Determines when changes to a data source value get propagated to the corresponding data-bound control property.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlUpdateMode.Never">
      <summary>The bound control is never updated when a data source value changes. The data source is write-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ControlUpdateMode.OnPropertyChanged">
      <summary>The bound control is updated when the data source value changes, or the data source position changes.</summary>
    </member>
    <member name="T:System.Windows.Forms.ConvertEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Binding.Format" /> and <see cref="E:System.Windows.Forms.Binding.Parse" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.ConvertEventArgs.#ctor(System.Object,System.Type)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ConvertEventArgs" /> class.</summary>
      <param name="value">An <see cref="T:System.Object" /> that contains the value of the current property.</param>
      <param name="desiredType">The <see cref="T:System.Type" /> of the value.</param>
    </member>
    <member name="P:System.Windows.Forms.ConvertEventArgs.DesiredType">
      <summary>Gets the data type of the desired value.</summary>
      <returns>The <see cref="T:System.Type" /> of the desired value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ConvertEventArgs.Value">
      <summary>Gets or sets the value of the <see cref="T:System.Windows.Forms.ConvertEventArgs" />.</summary>
      <returns>The value of the <see cref="T:System.Windows.Forms.ConvertEventArgs" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ConvertEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Binding.Parse" /> and <see cref="E:System.Windows.Forms.Binding.Format" /> events of a <see cref="T:System.Windows.Forms.Binding" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ConvertEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.CreateParams">
      <summary>Encapsulates the information needed when creating a control.</summary>
    </member>
    <member name="M:System.Windows.Forms.CreateParams.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.CreateParams" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.CreateParams.ToString">
      <summary>Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.Caption">
      <summary>Gets or sets the control's initial text.</summary>
      <returns>The control's initial text.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.ClassName">
      <summary>Gets or sets the name of the Windows class to derive the control from.</summary>
      <returns>The name of the Windows class to derive the control from.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.ClassStyle">
      <summary>Gets or sets a bitwise combination of class style values.</summary>
      <returns>A bitwise combination of the class style values.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.ExStyle">
      <summary>Gets or sets a bitwise combination of extended window style values.</summary>
      <returns>A bitwise combination of the extended window style values.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.Height">
      <summary>Gets or sets the initial height of the control.</summary>
      <returns>The numeric value that represents the initial height of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.Param">
      <summary>Gets or sets additional parameter information needed to create the control.</summary>
      <returns>The <see cref="T:System.Object" /> that holds additional parameter information needed to create the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.Parent">
      <summary>Gets or sets the control's parent.</summary>
      <returns>An <see cref="T:System.IntPtr" /> that contains the window handle of the control's parent.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.Style">
      <summary>Gets or sets a bitwise combination of window style values.</summary>
      <returns>A bitwise combination of the window style values.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.Width">
      <summary>Gets or sets the initial width of the control.</summary>
      <returns>The numeric value that represents the initial width of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.X">
      <summary>Gets or sets the initial left position of the control.</summary>
      <returns>The numeric value that represents the initial left position of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.CreateParams.Y">
      <summary>Gets or sets the top position of the initial location of the control.</summary>
      <returns>The numeric value that represents the top position of the initial location of the control.</returns>
    </member>
    <member name="T:System.Windows.Forms.CurrencyManager">
      <summary>Manages a list of <see cref="T:System.Windows.Forms.Binding" /> objects.</summary>
    </member>
    <member name="E:System.Windows.Forms.CurrencyManager.ItemChanged">
      <summary>Occurs when the current item has been altered.</summary>
    </member>
    <member name="E:System.Windows.Forms.CurrencyManager.ListChanged">
      <summary>Occurs when the list changes or an item in the list changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.CurrencyManager.MetaDataChanged">
      <summary>Occurs when the metadata of the <see cref="P:System.Windows.Forms.CurrencyManager.List" /> has changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.CurrencyManager.finalType">
      <summary>Specifies the data type of the list.</summary>
    </member>
    <member name="F:System.Windows.Forms.CurrencyManager.listposition">
      <summary>Specifies the current position of the <see cref="T:System.Windows.Forms.CurrencyManager" /> in the list.</summary>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.AddNew">
      <summary>Adds a new item to the underlying list.</summary>
      <exception cref="T:System.NotSupportedException">The underlying data source does not implement <see cref="T:System.ComponentModel.IBindingList" />, or the data source has thrown an exception because the user has attempted to add a row to a read-only or fixed-size <see cref="T:System.Data.DataView" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.CancelCurrentEdit">
      <summary>Cancels the current edit operation.</summary>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.CheckEmpty">
      <summary>Throws an exception if there is no list, or the list is empty.</summary>
      <exception cref="T:System.Exception">There is no list, or the list is empty.</exception>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.EndCurrentEdit">
      <summary>Ends the current edit operation.</summary>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.GetItemProperties">
      <summary>Gets the property descriptor collection for the underlying list.</summary>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> for the list.</returns>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.GetListName(System.Collections.ArrayList)">
      <summary>Gets the name of the list supplying the data for the binding using the specified set of bound properties.</summary>
      <param name="listAccessors">An <see cref="T:System.Collections.ArrayList" /> of properties to be found in the data source.</param>
      <returns>If successful, a <see cref="T:System.String" /> containing name of the list supplying the data for the binding; otherwise, an <see cref="F:System.String.Empty" /> string.</returns>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.OnCurrentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingManagerBase.CurrentChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.OnCurrentItemChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingManagerBase.CurrentItemChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.OnItemChanged(System.Windows.Forms.ItemChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CurrencyManager.ItemChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.ItemChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.OnMetaDataChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CurrencyManager.MetaDataChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.OnPositionChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingManagerBase.PositionChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.Refresh">
      <summary>Forces a repopulation of the data-bound list.</summary>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.RemoveAt(System.Int32)">
      <summary>Removes the item at the specified index.</summary>
      <param name="index">The index of the item to remove from the list.</param>
      <exception cref="T:System.IndexOutOfRangeException">There is no row at the specified <paramref name="index" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.ResumeBinding">
      <summary>Resumes data binding.</summary>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.SuspendBinding">
      <summary>Suspends data binding to prevents changes from updating the bound data source.</summary>
    </member>
    <member name="M:System.Windows.Forms.CurrencyManager.UpdateIsBinding">
      <summary>Updates the status of the binding.</summary>
    </member>
    <member name="P:System.Windows.Forms.CurrencyManager.Count">
      <summary>Gets the number of items in the list.</summary>
      <returns>The number of items in the list.</returns>
    </member>
    <member name="P:System.Windows.Forms.CurrencyManager.Current">
      <summary>Gets the current item in the list.</summary>
      <returns>A list item of type <see cref="T:System.Object" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.CurrencyManager.List">
      <summary>Gets the list for this <see cref="T:System.Windows.Forms.CurrencyManager" />.</summary>
      <returns>An <see cref="T:System.Collections.IList" /> that contains the list.</returns>
    </member>
    <member name="P:System.Windows.Forms.CurrencyManager.Position">
      <summary>Gets or sets the position you are at within the list.</summary>
      <returns>A number between 0 and <see cref="P:System.Windows.Forms.CurrencyManager.Count" /> minus 1.</returns>
    </member>
    <member name="T:System.Windows.Forms.Cursor">
      <summary>Represents the image used to paint the mouse pointer.</summary>
    </member>
    <member name="M:System.Windows.Forms.Cursor.#ctor(System.IntPtr)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Cursor" /> class from the specified Windows handle.</summary>
      <param name="handle">An <see cref="T:System.IntPtr" /> that represents the Windows handle of the cursor to create.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="handle" /> is <see cref="F:System.IntPtr.Zero" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Cursor.#ctor(System.IO.Stream)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Cursor" /> class from the specified data stream.</summary>
      <param name="stream">The data stream to load the <see cref="T:System.Windows.Forms.Cursor" /> from.</param>
    </member>
    <member name="M:System.Windows.Forms.Cursor.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Cursor" /> class from the specified file.</summary>
      <param name="fileName">The cursor file to load.</param>
    </member>
    <member name="M:System.Windows.Forms.Cursor.#ctor(System.Type,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Cursor" /> class from the specified resource with the specified resource type.</summary>
      <param name="type">The resource <see cref="T:System.Type" />.</param>
      <param name="resource">The name of the resource.</param>
    </member>
    <member name="M:System.Windows.Forms.Cursor.CopyHandle">
      <summary>Copies the handle of this <see cref="T:System.Windows.Forms.Cursor" />.</summary>
      <returns>An <see cref="T:System.IntPtr" /> that represents the cursor's handle.</returns>
    </member>
    <member name="M:System.Windows.Forms.Cursor.Dispose">
      <summary>Releases all resources used by the <see cref="T:System.Windows.Forms.Cursor" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.Cursor.Draw(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws the cursor on the specified surface, within the specified bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> surface on which to draw the <see cref="T:System.Windows.Forms.Cursor" />.</param>
      <param name="targetRect">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the <see cref="T:System.Windows.Forms.Cursor" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Cursor.DrawStretched(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws the cursor in a stretched format on the specified surface, within the specified bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> surface on which to draw the <see cref="T:System.Windows.Forms.Cursor" />.</param>
      <param name="targetRect">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the <see cref="T:System.Windows.Forms.Cursor" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Cursor.Equals(System.Object)">
      <summary>Returns a value indicating whether this cursor is equal to the specified <see cref="T:System.Windows.Forms.Cursor" />.</summary>
      <param name="obj">The <see cref="T:System.Windows.Forms.Cursor" /> to compare.</param>
      <returns>
        <see langword="true" /> if this cursor is equal to the specified <see cref="T:System.Windows.Forms.Cursor" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Cursor.Finalize">
      <summary>Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.Cursor.GetHashCode">
      <summary>Retrieves the hash code for the current <see cref="T:System.Windows.Forms.Cursor" />.</summary>
      <returns>A hash code for the current <see cref="T:System.Windows.Forms.Cursor" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Cursor.Hide">
      <summary>Hides the cursor.</summary>
    </member>
    <member name="M:System.Windows.Forms.Cursor.op_Equality(System.Windows.Forms.Cursor,System.Windows.Forms.Cursor)">
      <summary>Returns a value indicating whether two instances of the <see cref="T:System.Windows.Forms.Cursor" /> class are equal.</summary>
      <param name="left">A <see cref="T:System.Windows.Forms.Cursor" /> to compare.</param>
      <param name="right">A <see cref="T:System.Windows.Forms.Cursor" /> to compare.</param>
      <returns>
        <see langword="true" /> if two instances of the <see cref="T:System.Windows.Forms.Cursor" /> class are equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Cursor.op_Inequality(System.Windows.Forms.Cursor,System.Windows.Forms.Cursor)">
      <summary>Returns a value indicating whether two instances of the <see cref="T:System.Windows.Forms.Cursor" /> class are not equal.</summary>
      <param name="left">A <see cref="T:System.Windows.Forms.Cursor" /> to compare.</param>
      <param name="right">A <see cref="T:System.Windows.Forms.Cursor" /> to compare.</param>
      <returns>
        <see langword="true" /> if two instances of the <see cref="T:System.Windows.Forms.Cursor" /> class are not equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Cursor.Show">
      <summary>Displays the cursor.</summary>
    </member>
    <member name="M:System.Windows.Forms.Cursor.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Serializes the object.</summary>
      <param name="si">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class.</param>
      <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> class.</param>
    </member>
    <member name="M:System.Windows.Forms.Cursor.ToString">
      <summary>Retrieves a human readable string representing this <see cref="T:System.Windows.Forms.Cursor" />.</summary>
      <returns>A <see cref="T:System.String" /> that represents this <see cref="T:System.Windows.Forms.Cursor" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursor.Clip">
      <summary>Gets or sets the bounds that represent the clipping rectangle for the cursor.</summary>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that represents the clipping rectangle for the <see cref="T:System.Windows.Forms.Cursor" />, in screen coordinates.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursor.Current">
      <summary>Gets or sets a cursor object that represents the mouse cursor.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Cursor" /> that represents the mouse cursor. The default is <see langword="null" /> if the mouse cursor is not visible.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursor.Handle">
      <summary>Gets the handle of the cursor.</summary>
      <exception cref="T:System.Exception">The handle value is <see cref="F:System.IntPtr.Zero" />.</exception>
      <returns>An <see cref="T:System.IntPtr" /> that represents the cursor's handle.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursor.HotSpot">
      <summary>Gets the cursor hot spot.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> representing the cursor hot spot.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursor.Position">
      <summary>Gets or sets the cursor's position.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> that represents the cursor's position in screen coordinates.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursor.Size">
      <summary>Gets the size of the cursor object.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the width and height of the <see cref="T:System.Windows.Forms.Cursor" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursor.Tag">
      <summary>Gets or sets the object that contains data about the <see cref="T:System.Windows.Forms.Cursor" />.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the <see cref="T:System.Windows.Forms.Cursor" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.CursorConverter">
      <summary>Provides a type converter to convert <see cref="T:System.Windows.Forms.Cursor" /> objects to and from various other representations.</summary>
    </member>
    <member name="M:System.Windows.Forms.CursorConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.CursorConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.CursorConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Determines if this converter can convert an object in the given source type to the native type of the converter.</summary>
      <param name="context">A formatter context. This object can be used to extract additional information about the environment this converter is being invoked from. This may be <see langword="null" />, so you should always check. Also, properties on the context object may also return <see langword="null" />.</param>
      <param name="sourceType">The type you wish to convert from.</param>
      <returns>
        <see langword="true" /> if this object can perform the conversion.</returns>
    </member>
    <member name="M:System.Windows.Forms.CursorConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.CursorConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the given object to the type of this converter, using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> to use as the current culture.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="M:System.Windows.Forms.CursorConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the given value object to the specified type, using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" />. If <see langword="null" /> is passed, the current culture is assumed.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <param name="destinationType">The <see cref="T:System.Type" /> to convert the value parameter to.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="M:System.Windows.Forms.CursorConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Retrieves a collection containing a set of standard values for the data type this validator is designed for. This will return <see langword="null" /> if the data type does not support a standard set of values.</summary>
      <param name="context">A formatter context. This object can be used to extract additional information about the environment this converter is being invoked from. This may be <see langword="null" />, so you should always check. Also, properties on the context object may also return <see langword="null" />.</param>
      <returns>A collection containing a standard set of valid values, or <see langword="null" />. The default implementation always returns <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.CursorConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines if this object supports a standard set of values that can be picked from a list.</summary>
      <param name="context">A type descriptor through which additional context may be provided.</param>
      <returns>Returns <see langword="true" /> if <see langword="GetStandardValues" /> should be called to find a common set of values the object supports.</returns>
    </member>
    <member name="T:System.Windows.Forms.Cursors">
      <summary>Provides a collection of <see cref="T:System.Windows.Forms.Cursor" /> objects for use by a Windows Forms application.</summary>
    </member>
    <member name="P:System.Windows.Forms.Cursors.AppStarting">
      <summary>Gets the cursor that appears when an application starts.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears when an application starts.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.Arrow">
      <summary>Gets the arrow cursor.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the arrow cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.Cross">
      <summary>Gets the crosshair cursor.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the crosshair cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.Default">
      <summary>Gets the default cursor, which is usually an arrow cursor.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the default cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.Hand">
      <summary>Gets the hand cursor, typically used when hovering over a Web link.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the hand cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.Help">
      <summary>Gets the Help cursor, which is a combination of an arrow and a question mark.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the Help cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.HSplit">
      <summary>Gets the cursor that appears when the mouse is positioned over a horizontal splitter bar.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears when the mouse is positioned over a horizontal splitter bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.IBeam">
      <summary>Gets the I-beam cursor, which is used to show where the text cursor appears when the mouse is clicked.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the I-beam cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.No">
      <summary>Gets the cursor that indicates that a particular region is invalid for the current operation.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that indicates that a particular region is invalid for the current operation.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.NoMove2D">
      <summary>Gets the cursor that appears during wheel operations when the mouse is not moving, but the window can be scrolled in both a horizontal and vertical direction.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is not moving.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.NoMoveHoriz">
      <summary>Gets the cursor that appears during wheel operations when the mouse is not moving, but the window can be scrolled in a horizontal direction.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is not moving.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.NoMoveVert">
      <summary>Gets the cursor that appears during wheel operations when the mouse is not moving, but the window can be scrolled in a vertical direction.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is not moving.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.PanEast">
      <summary>Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally to the right.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally to the right.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.PanNE">
      <summary>Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally and vertically upward and to the right.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally and vertically upward and to the right.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.PanNorth">
      <summary>Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrolling vertically in an upward direction.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is moving and the window is scrolling vertically in an upward direction.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.PanNW">
      <summary>Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally and vertically upward and to the left.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally and vertically upward and to the left.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.PanSE">
      <summary>Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally and vertically downward and to the right.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally and vertically downward and to the right.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.PanSouth">
      <summary>Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrolling vertically in a downward direction.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is moving and the window is scrolling vertically in a downward direction.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.PanSW">
      <summary>Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally and vertically downward and to the left.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally and vertically downward and to the left.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.PanWest">
      <summary>Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally to the left.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears during wheel operations when the mouse is moving and the window is scrolling horizontally to the left.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.SizeAll">
      <summary>Gets the four-headed sizing cursor, which consists of four joined arrows that point north, south, east, and west.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the four-headed sizing cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.SizeNESW">
      <summary>Gets the two-headed diagonal (northeast/southwest) sizing cursor.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents two-headed diagonal (northeast/southwest) sizing cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.SizeNS">
      <summary>Gets the two-headed vertical (north/south) sizing cursor.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the two-headed vertical (north/south) sizing cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.SizeNWSE">
      <summary>Gets the two-headed diagonal (northwest/southeast) sizing cursor.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the two-headed diagonal (northwest/southeast) sizing cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.SizeWE">
      <summary>Gets the two-headed horizontal (west/east) sizing cursor.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the two-headed horizontal (west/east) sizing cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.UpArrow">
      <summary>Gets the up arrow cursor, typically used to identify an insertion point.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the up arrow cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.VSplit">
      <summary>Gets the cursor that appears when the mouse is positioned over a vertical splitter bar.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor that appears when the mouse is positioned over a vertical splitter bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.Cursors.WaitCursor">
      <summary>Gets the wait cursor, typically an hourglass shape.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> that represents the wait cursor.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataFormats">
      <summary>Provides <see langword="static" />, predefined <see cref="T:System.Windows.Forms.Clipboard" /> format names. Use them to identify the format of data that you store in an <see cref="T:System.Windows.Forms.IDataObject" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Bitmap">
      <summary>Specifies a Windows bitmap format. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.CommaSeparatedValue">
      <summary>Specifies a comma-separated value (CSV) format, which is a common interchange format used by spreadsheets. This format is not used directly by Windows Forms. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Dib">
      <summary>Specifies the Windows device-independent bitmap (DIB) format. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Dif">
      <summary>Specifies the Windows Data Interchange Format (DIF), which Windows Forms does not directly use. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.EnhancedMetafile">
      <summary>Specifies the Windows enhanced metafile format. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.FileDrop">
      <summary>Specifies the Windows file drop format, which Windows Forms does not directly use. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Html">
      <summary>Specifies text in the HTML Clipboard format. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Locale">
      <summary>Specifies the Windows culture format, which Windows Forms does not directly use. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.MetafilePict">
      <summary>Specifies the Windows metafile format, which Windows Forms does not directly use. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.OemText">
      <summary>Specifies the standard Windows original equipment manufacturer (OEM) text format. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Palette">
      <summary>Specifies the Windows palette format. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.PenData">
      <summary>Specifies the Windows pen data format, which consists of pen strokes for handwriting software; Windows Forms does not use this format. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Riff">
      <summary>Specifies the Resource Interchange File Format (RIFF) audio format, which Windows Forms does not directly use. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Rtf">
      <summary>Specifies text consisting of Rich Text Format (RTF) data. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Serializable">
      <summary>Specifies a format that encapsulates any type of Windows Forms object. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.StringFormat">
      <summary>Specifies the Windows Forms string class format, which Windows Forms uses to store string objects. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.SymbolicLink">
      <summary>Specifies the Windows symbolic link format, which Windows Forms does not directly use. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Text">
      <summary>Specifies the standard ANSI text format. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.Tiff">
      <summary>Specifies the Tagged Image File Format (TIFF), which Windows Forms does not directly use. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.UnicodeText">
      <summary>Specifies the standard Windows Unicode text format. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataFormats.WaveAudio">
      <summary>Specifies the wave audio format, which Windows Forms does not directly use. This <see langword="static" /> field is read-only.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataFormats.GetFormat(System.Int32)">
      <summary>Returns a <see cref="T:System.Windows.Forms.DataFormats.Format" /> with the Windows Clipboard numeric ID and name for the specified ID.</summary>
      <param name="id">The format ID.</param>
      <returns>A <see cref="T:System.Windows.Forms.DataFormats.Format" /> that has the Windows Clipboard numeric ID and the name of the format.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataFormats.GetFormat(System.String)">
      <summary>Returns a <see cref="T:System.Windows.Forms.DataFormats.Format" /> with the Windows Clipboard numeric ID and name for the specified format.</summary>
      <param name="format">The format name.</param>
      <exception cref="T:System.ArgumentException">.NET 5 and later versions: <paramref name="format" /> is <see langword="null" />, <see cref="T:System.String.Empty" />, or white space.</exception>
      <exception cref="T:System.ComponentModel.Win32Exception">Registering a new <see cref="T:System.Windows.Forms.Clipboard" /> format failed.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataFormats.Format" /> that has the Windows Clipboard numeric ID and the name of the format.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataFormats.Format">
      <summary>Represents a Clipboard format type.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataFormats.Format.#ctor(System.String,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataFormats.Format" /> class with a Boolean that indicates whether a <see langword="Win32" /> handle is expected.</summary>
      <param name="name">The name of this format.</param>
      <param name="id">The ID number for this format.</param>
    </member>
    <member name="P:System.Windows.Forms.DataFormats.Format.Id">
      <summary>Gets the ID number for this format.</summary>
      <returns>The ID number for this format.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataFormats.Format.Name">
      <summary>Gets the name of this format.</summary>
      <returns>The name of this format.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridView">
      <summary>Displays data in a customizable grid.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AllowUserToAddRowsChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AllowUserToDeleteRowsChanged">
      <summary>Occurs when the value of the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToDeleteRowsChanged" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AllowUserToOrderColumnsChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToOrderColumns" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AllowUserToResizeColumnsChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToResizeColumns" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AllowUserToResizeRowsChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToResizeRows" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AutoGenerateColumnsChanged">
      <summary>Occurs when the value of the <see cref="E:System.Windows.Forms.DataGridView.AutoGenerateColumnsChanged" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AutoSizeColumnModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property of a column changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AutoSizeColumnsModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.AutoSizeRowsModeChanged">
      <summary>Occurs when the value of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.BackColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.BackColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.BackgroundColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.BackgroundColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.BorderStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.BorderStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CancelRowEdit">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of a <see cref="T:System.Windows.Forms.DataGridView" /> control is <see langword="true" /> and the cancels edits in a row.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellBeginEdit">
      <summary>Occurs when edit mode starts for the selected cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellBorderStyleChanged">
      <summary>Occurs when the border style of a cell changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellClick">
      <summary>Occurs when any part of a cell is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellContentClick">
      <summary>Occurs when the content within a cell is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellContentDoubleClick">
      <summary>Occurs when the user double-clicks a cell's contents.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellContextMenuStripChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewCell.ContextMenuStrip" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded">
      <summary>Occurs when a cell's shortcut menu is needed.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellDoubleClick">
      <summary>Occurs when the user double-clicks anywhere in a cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellEndEdit">
      <summary>Occurs when edit mode stops for the currently selected cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellEnter">
      <summary>Occurs when the current cell changes in the <see cref="T:System.Windows.Forms.DataGridView" /> control or when the control receives input focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellErrorTextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewCell.ErrorText" /> property of a cell changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded">
      <summary>Occurs when a cell's error text is needed.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellFormatting">
      <summary>Occurs when the contents of a cell need to be formatted for display.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellLeave">
      <summary>Occurs when a cell loses input focus and is no longer the current cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellMouseClick">
      <summary>Occurs whenever the user clicks anywhere on a cell with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellMouseDoubleClick">
      <summary>Occurs when a cell within the <see cref="T:System.Windows.Forms.DataGridView" /> is double-clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellMouseDown">
      <summary>Occurs when the user presses a mouse button while the mouse pointer is within the boundaries of a cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellMouseEnter">
      <summary>Occurs when the mouse pointer enters a cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellMouseLeave">
      <summary>Occurs when the mouse pointer leaves a cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellMouseMove">
      <summary>Occurs when the mouse pointer moves over the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellMouseUp">
      <summary>Occurs when the user releases a mouse button while over a cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellPainting">
      <summary>Occurs when a cell needs to be drawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellParsing">
      <summary>Occurs when a cell leaves edit mode if the cell value has been modified.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellStateChanged">
      <summary>Occurs when a cell state changes, such as when the cell loses or gains focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellStyleChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewCell.Style" /> property of a <see cref="T:System.Windows.Forms.DataGridViewCell" /> changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellStyleContentChanged">
      <summary>Occurs when one of the values of a cell style changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellToolTipTextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewCell.ToolTipText" /> property value changes for a cell in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded">
      <summary>Occurs when a cell's ToolTip text is needed.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellValidated">
      <summary>Occurs after the cell has finished validating.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellValidating">
      <summary>Occurs when a cell loses input focus, enabling content validation.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellValueChanged">
      <summary>Occurs when the value of a cell changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellValueNeeded">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> control is <see langword="true" /> and the <see cref="T:System.Windows.Forms.DataGridView" /> requires a value for a cell in order to format and display the cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CellValuePushed">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> control is <see langword="true" /> and a cell value has changed and requires storage in the underlying data source.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnAdded">
      <summary>Occurs when a column is added to the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnContextMenuStripChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewColumn.ContextMenuStrip" /> property of a column changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnDataPropertyNameChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.DataPropertyName" /> property for a column changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnDefaultCellStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property for a column changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnDisplayIndexChanged">
      <summary>Occurs when the value the <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property for a column changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnDividerDoubleClick">
      <summary>Occurs when the user double-clicks a divider between two columns.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnDividerWidthChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewColumn.DividerWidth" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnHeaderCellChanged">
      <summary>Occurs when the contents of a column header cell change.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnHeaderMouseClick">
      <summary>Occurs when the user clicks a column header.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnHeaderMouseDoubleClick">
      <summary>Occurs when a column header is double-clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyleChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnHeadersHeightChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeight" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnMinimumWidthChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.MinimumWidth" /> property for a column changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnNameChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.Name" /> property for a column changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnRemoved">
      <summary>Occurs when a column is removed from the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnSortModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property for a column changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnStateChanged">
      <summary>Occurs when a column changes state, such as gaining or losing focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnToolTipTextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewColumn.ToolTipText" /> property value changes for a column in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ColumnWidthChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.Width" /> property for a column changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CurrentCellChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged">
      <summary>Occurs when the state of a cell changes in relation to a change in its contents.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.DataBindingComplete">
      <summary>Occurs after a data-binding operation has finished.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.DataError">
      <summary>Occurs when an external data-parsing or validation operation throws an exception, or when an attempt to commit data to a data source fails.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.DataMemberChanged">
      <summary>Occurs when value of the <see cref="P:System.Windows.Forms.DataGridView.DataMember" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.DataSourceChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.DefaultCellStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.DefaultValuesNeeded">
      <summary>Occurs when the user enters the row for new records so that it can be populated with default values.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.EditingControlShowing">
      <summary>Occurs when a control for editing a cell is showing.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.EditModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.EditMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.FontChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.Font" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ForeColorChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.ForeColor" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.GridColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.GridColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.MultiSelectChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.MultiSelect" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.NewRowNeeded">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is <see langword="true" /> and the user navigates to the new row at the bottom of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.ReadOnlyChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.ReadOnly" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowContextMenuStripChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded">
      <summary>Occurs when a row's shortcut menu is needed.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowDefaultCellStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property for a row changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowDirtyStateNeeded">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> control is <see langword="true" /> and the <see cref="T:System.Windows.Forms.DataGridView" /> needs to determine whether the current row has uncommitted changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowDividerDoubleClick">
      <summary>Occurs when the user double-clicks the divider between two rows.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowDividerHeightChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewRow.DividerHeight" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowEnter">
      <summary>Occurs when a row receives input focus but before it becomes the current row.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowErrorTextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewRow.ErrorText" /> property of a row changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded">
      <summary>Occurs when a row's error text is needed.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeaderCellChanged">
      <summary>Occurs when the user changes the contents of a row header cell.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeaderMouseClick">
      <summary>Occurs when the user clicks within the boundaries of a row header.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeaderMouseDoubleClick">
      <summary>Occurs when a row header is double-clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeadersBorderStyleChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersBorderStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeadersWidthChanged">
      <summary>Occurs when value of the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidth" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeadersWidthSizeModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeightChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewRow.Height" /> property for a row changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded">
      <summary>Occurs when information about row height is requested.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowHeightInfoPushed">
      <summary>Occurs when the user changes the height of a row.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowLeave">
      <summary>Occurs when a row loses input focus and is no longer the current row.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowMinimumHeightChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewRow.MinimumHeight" /> property for a row changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowPostPaint">
      <summary>Occurs after a <see cref="T:System.Windows.Forms.DataGridViewRow" /> is painted.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowPrePaint">
      <summary>Occurs before a <see cref="T:System.Windows.Forms.DataGridViewRow" /> is painted.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowsAdded">
      <summary>Occurs after a new row is added to the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowsDefaultCellStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowsRemoved">
      <summary>Occurs when a row or rows are deleted from the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowStateChanged">
      <summary>Occurs when a row changes state, such as losing or gaining input focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowUnshared">
      <summary>Occurs when a row's state changes from shared to unshared.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowValidated">
      <summary>Occurs after a row has finished validating.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.RowValidating">
      <summary>Occurs when a row is validating.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.Scroll">
      <summary>Occurs when the user scrolls through the control contents.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.SelectionChanged">
      <summary>Occurs when the current selection changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.SortCompare">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.DataGridView" /> compares two cell values to perform a sort operation.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.Sorted">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.DataGridView" /> control completes a sorting operation.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.StyleChanged">
      <summary>Occurs when the control style changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.Text" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.UserAddedRow">
      <summary>Occurs when the user has finished adding a row to the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.UserDeletedRow">
      <summary>Occurs when the user has finished deleting a row from the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridView.UserDeletingRow">
      <summary>Occurs when the user deletes a row from the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridView" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AccessibilityNotifyCurrentCellChanged(System.Drawing.Point)">
      <summary>Notifies the accessible client applications when a new cell becomes the current cell.</summary>
      <param name="cellAddress">A <see cref="T:System.Drawing.Point" /> indicating the row and column indexes of the new current cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Drawing.Point.X" /> property of <paramref name="cellAddress" /> is less than 0 or greater than the number of columns in the control minus 1.  
  
 -or-  
  
 The value of the <see cref="P:System.Drawing.Point.Y" /> property of <paramref name="cellAddress" /> is less than 0 or greater than the number of rows in the control minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AdjustColumnHeaderBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Boolean,System.Boolean)">
      <summary>Adjusts the <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> for a column header cell of a <see cref="T:System.Windows.Forms.DataGridView" /> that is currently being painted.</summary>
      <param name="dataGridViewAdvancedBorderStyleInput">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the column header border style to modify.</param>
      <param name="dataGridViewAdvancedBorderStylePlaceholder">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that is used to store intermediate changes to the column header border style.</param>
      <param name="isFirstDisplayedColumn">
        <see langword="true" /> to indicate that the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is currently being painted is in the first column displayed on the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, <see langword="false" />.</param>
      <param name="isLastVisibleColumn">
        <see langword="true" /> to indicate that the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is currently being painted is in the last column in the <see cref="T:System.Windows.Forms.DataGridView" /> that has the <see cref="P:System.Windows.Forms.DataGridViewColumn.Visible" /> property set to <see langword="true" />; otherwise, <see langword="false" />.</param>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the border style for the current column header.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AreAllCellsSelected(System.Boolean)">
      <summary>Returns a value indicating whether all the <see cref="T:System.Windows.Forms.DataGridView" /> cells are currently selected.</summary>
      <param name="includeInvisibleCells">
        <see langword="true" /> to include the rows and columns with <see cref="P:System.Windows.Forms.DataGridViewBand.Visible" /> property values of <see langword="false" />; otherwise, <see langword="false" />.</param>
      <returns>
        <see langword="true" /> if all cells (or all visible cells) are selected or if there are no cells (or no visible cells); otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumn(System.Int32)">
      <summary>Adjusts the width of the specified column to fit the contents of all its cells, including the header cell.</summary>
      <param name="columnIndex">The index of the column to resize.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is not in the valid range of 0 to the number of columns minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumn(System.Int32,System.Windows.Forms.DataGridViewAutoSizeColumnMode)">
      <summary>Adjusts the width of the specified column using the specified size mode.</summary>
      <param name="columnIndex">The index of the column to resize.</param>
      <param name="autoSizeColumnMode">One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> values.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="autoSizeColumnMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader" /> and <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> is <see langword="false" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="autoSizeColumnMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet" />, <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.None" />, or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is not in the valid range of 0 to the number of columns minus 1.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeColumnMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumn(System.Int32,System.Windows.Forms.DataGridViewAutoSizeColumnMode,System.Boolean)">
      <summary>Adjusts the width of the specified column using the specified size mode, optionally calculating the width with the expectation that row heights will subsequently be adjusted.</summary>
      <param name="columnIndex">The index of the column to resize.</param>
      <param name="autoSizeColumnMode">One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> values.</param>
      <param name="fixedHeight">
        <see langword="true" /> to calculate the new width based on the current row heights; <see langword="false" /> to calculate the width with the expectation that the row heights will also be adjusted.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="autoSizeColumnMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader" /> and <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> is <see langword="false" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="autoSizeColumnMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet" />, <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.None" />, or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is not in the valid range of 0 to the number of columns minus 1.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeColumnMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight">
      <summary>Adjusts the height of the column headers to fit the contents of the largest column header.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(System.Boolean,System.Boolean)">
      <summary>Adjusts the height of the column headers to fit their contents, optionally calculating the height with the expectation that the column and/or row header widths will subsequently be adjusted.</summary>
      <param name="fixedRowHeadersWidth">
        <see langword="true" /> to calculate the new height based on the current width of the row headers; <see langword="false" /> to calculate the height with the expectation that the row headers width will also be adjusted.</param>
      <param name="fixedColumnsWidth">
        <see langword="true" /> to calculate the new height based on the current column widths; <see langword="false" /> to calculate the height with the expectation that the column widths will also be adjusted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(System.Int32)">
      <summary>Adjusts the height of the column headers based on changes to the contents of the header in the specified column.</summary>
      <param name="columnIndex">The index of the column containing the header with the changed content.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is not in the valid range of 0 to the number of columns minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(System.Int32,System.Boolean,System.Boolean)">
      <summary>Adjusts the height of the column headers based on changes to the contents of the header in the specified column, optionally calculating the height with the expectation that the column and/or row header widths will subsequently be adjusted.</summary>
      <param name="columnIndex">The index of the column header whose contents should be used to determine new height.</param>
      <param name="fixedRowHeadersWidth">
        <see langword="true" /> to calculate the new height based on the current width of the row headers; <see langword="false" /> to calculate the height with the expectation that the row headers width will also be adjusted.</param>
      <param name="fixedColumnWidth">
        <see langword="true" /> to calculate the new height based on the current width of the specified column; <see langword="false" /> to calculate the height with the expectation that the column width will also be adjusted.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is not in the valid range of 0 to the number of columns minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumns">
      <summary>Adjusts the width of all columns to fit the contents of all their cells, including the header cells.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumns(System.Windows.Forms.DataGridViewAutoSizeColumnsMode)">
      <summary>Adjusts the width of all columns using the specified size mode.</summary>
      <param name="autoSizeColumnsMode">One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode" /> values.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="autoSizeColumnsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.ColumnHeader" /> and <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> is <see langword="false" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="autoSizeColumnsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None" /> or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeColumnsMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode" /> value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeColumns(System.Windows.Forms.DataGridViewAutoSizeColumnsMode,System.Boolean)">
      <summary>Adjusts the width of all columns using the specified size mode, optionally calculating the widths with the expectation that row heights will subsequently be adjusted.</summary>
      <param name="autoSizeColumnsMode">One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode" /> values.</param>
      <param name="fixedHeight">
        <see langword="true" /> to calculate the new widths based on the current row heights; <see langword="false" /> to calculate the widths with the expectation that the row heights will also be adjusted.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="autoSizeColumnsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.ColumnHeader" /> and <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> is <see langword="false" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="autoSizeColumnsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None" /> or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeColumnsMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode" /> value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRow(System.Int32)">
      <summary>Adjusts the height of the specified row to fit the contents of all its cells including the header cell.</summary>
      <param name="rowIndex">The index of the row to resize.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not in the valid range of 0 to the number of rows minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRow(System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode)">
      <summary>Adjusts the height of the specified row using the specified size mode.</summary>
      <param name="rowIndex">The index of the row to resize.</param>
      <param name="autoSizeRowMode">One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> values.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="autoSizeRowMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowMode.RowHeader" /> and <see cref="P:System.Windows.Forms.DataGridView.RowHeadersVisible" /> is <see langword="false" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeRowMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> value.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not in the valid range of 0 to the number of rows minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRow(System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode,System.Boolean)">
      <summary>Adjusts the height of the specified row using the specified size mode, optionally calculating the height with the expectation that column widths will subsequently be adjusted.</summary>
      <param name="rowIndex">The index of the row to resize.</param>
      <param name="autoSizeRowMode">One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> values.</param>
      <param name="fixedWidth">
        <see langword="true" /> to calculate the new height based on the current width of the columns; <see langword="false" /> to calculate the height with the expectation that the column widths will also be adjusted.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="autoSizeRowMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowMode.RowHeader" /> and <see cref="P:System.Windows.Forms.DataGridView.RowHeadersVisible" /> is <see langword="false" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeRowMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> value.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not in the valid range of 0 to the number of rows minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Int32,System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode)">
      <summary>Adjusts the width of the row headers based on changes to the contents of the header in the specified row and using the specified size mode.</summary>
      <param name="rowIndex">The index of the row header with the changed content.</param>
      <param name="rowHeadersWidthSizeMode">One of the <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not in the valid range of 0 to the number of rows minus 1.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="rowHeadersWidthSizeMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing" /> or <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing" /></exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="rowHeadersWidthSizeMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Int32,System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode,System.Boolean,System.Boolean)">
      <summary>Adjusts the width of the row headers based on changes to the contents of the header in the specified row and using the specified size mode, optionally calculating the width with the expectation that the row and/or column header widths will subsequently be adjusted.</summary>
      <param name="rowIndex">The index of the row containing the header with the changed content.</param>
      <param name="rowHeadersWidthSizeMode">One of the <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> values.</param>
      <param name="fixedColumnHeadersHeight">
        <see langword="true" /> to calculate the new width based on the current height of the column headers; <see langword="false" /> to calculate the width with the expectation that the height of the column headers will also be adjusted.</param>
      <param name="fixedRowHeight">
        <see langword="true" /> to calculate the new width based on the current height of the specified row; <see langword="false" /> to calculate the width with the expectation that the row height will also be adjusted.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not in the valid range of 0 to the number of rows minus 1.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="rowHeadersWidthSizeMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing" /> or <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="rowHeadersWidthSizeMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode)">
      <summary>Adjusts the width of the row headers using the specified size mode.</summary>
      <param name="rowHeadersWidthSizeMode">One of the <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> values.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="rowHeadersWidthSizeMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing" /> or <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="rowHeadersWidthSizeMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode,System.Boolean,System.Boolean)">
      <summary>Adjusts the width of the row headers using the specified size mode, optionally calculating the width with the expectation that the row and/or column header widths will subsequently be adjusted.</summary>
      <param name="rowHeadersWidthSizeMode">One of the <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> values.</param>
      <param name="fixedColumnHeadersHeight">
        <see langword="true" /> to calculate the new width based on the current height of the column headers; <see langword="false" /> to calculate the width with the expectation that the height of the column headers will also be adjusted.</param>
      <param name="fixedRowsHeight">
        <see langword="true" /> to calculate the new width based on the current row heights; <see langword="false" /> to calculate the width with the expectation that the row heights will also be adjusted.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="rowHeadersWidthSizeMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing" /> or <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="rowHeadersWidthSizeMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRows">
      <summary>Adjusts the heights of all rows to fit the contents of all their cells, including the header cells.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRows(System.Int32,System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode,System.Boolean)">
      <summary>Adjusts the heights of the specified rows using the specified size mode, optionally calculating the heights with the expectation that column widths will subsequently be adjusted.</summary>
      <param name="rowIndexStart">The index of the first row to resize.</param>
      <param name="rowsCount">The number of rows to resize.</param>
      <param name="autoSizeRowMode">One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> values.</param>
      <param name="fixedWidth">
        <see langword="true" /> to calculate the new heights based on the current column widths; <see langword="false" /> to calculate the heights with the expectation that the column widths will also be adjusted.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="autoSizeRowsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders" /> or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders" />, and <see cref="P:System.Windows.Forms.DataGridView.RowHeadersVisible" /> is <see langword="false" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeRowsMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> value.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="autoSizeRowsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.None" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndexStart" /> is less than 0.  
  
 -or-  
  
 <paramref name="rowsCount" /> is less than 0.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRows(System.Windows.Forms.DataGridViewAutoSizeRowsMode)">
      <summary>Adjusts the heights of the rows using the specified size mode value.</summary>
      <param name="autoSizeRowsMode">One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> values.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="autoSizeRowsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders" /> or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders" />, and <see cref="P:System.Windows.Forms.DataGridView.RowHeadersVisible" /> is <see langword="false" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeRowsMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> value.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="autoSizeRowsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.None" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.AutoResizeRows(System.Windows.Forms.DataGridViewAutoSizeRowsMode,System.Boolean)">
      <summary>Adjusts the heights of all rows using the specified size mode, optionally calculating the heights with the expectation that column widths will subsequently be adjusted.</summary>
      <param name="autoSizeRowsMode">One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> values.</param>
      <param name="fixedWidth">
        <see langword="true" /> to calculate the new heights based on the current column widths; <see langword="false" /> to calculate the heights with the expectation that the column widths will also be adjusted.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="autoSizeRowsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders" /> or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders" />, and <see cref="P:System.Windows.Forms.DataGridView.RowHeadersVisible" /> is <see langword="false" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeRowsMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> value.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="autoSizeRowsMode" /> has the value <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.None" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.BeginEdit(System.Boolean)">
      <summary>Puts the current cell in edit mode.</summary>
      <param name="selectAll">
        <see langword="true" /> to select all the cell's contents; <see langword="false" /> to not select any contents.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> is not set to a valid cell.  
  
 -or-  
  
 This method was called in a handler for the <see cref="E:System.Windows.Forms.DataGridView.CellBeginEdit" /> event.</exception>
      <exception cref="T:System.InvalidCastException">The type indicated by the cell's <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property does not derive from the <see cref="T:System.Windows.Forms.Control" /> type.  
  
 -or-  
  
 The type indicated by the cell's <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property does not implement the <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" /> interface.</exception>
      <exception cref="T:System.Exception">Initialization of the editing cell value failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>
        <see langword="true" /> if the current cell is already in edit mode or successfully enters edit mode; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.CancelEdit">
      <summary>Cancels edit mode for the currently selected cell and discards any changes.</summary>
      <returns>
        <see langword="true" /> if the cancel was successful; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ClearSelection">
      <summary>Clears the current selection by unselecting all selected cells.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ClearSelection(System.Int32,System.Int32,System.Boolean)">
      <summary>Cancels the selection of all currently selected cells except the one indicated, optionally ensuring that the indicated cell is selected.</summary>
      <param name="columnIndexException">The column index to exclude.</param>
      <param name="rowIndexException">The row index to exclude.</param>
      <param name="selectExceptionElement">
        <see langword="true" /> to select the excluded cell, row, or column; <see langword="false" /> to retain its original state.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndexException" /> is greater than the highest column index.  
  
 -or-  
  
 <paramref name="columnIndexException" /> is less than -1 when <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect" />; otherwise, <paramref name="columnIndexException" /> is less than 0.  
  
 -or-  
  
 <paramref name="rowIndexException" /> is greater than the highest row index.  
  
 -or-  
  
 <paramref name="rowIndexException" /> is less than -1 when <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" />; otherwise, <paramref name="rowIndexException" /> is less than 0.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.CommitEdit(System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Commits changes in the current cell to the data cache without ending edit mode.</summary>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the context in which an error can occur.</param>
      <exception cref="T:System.Exception">The cell value could not be committed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the changes were committed; otherwise <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.CreateColumnsInstance">
      <summary>Creates and returns a new <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" />.</summary>
      <returns>An empty <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.CreateControlsInstance">
      <summary>Creates and returns a new <see cref="T:System.Windows.Forms.Control.ControlCollection" /> that can be cast to type <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" />.</summary>
      <returns>An empty <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.CreateRowsInstance">
      <summary>Creates and returns a new <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</summary>
      <returns>An empty <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DisplayedColumnCount(System.Boolean)">
      <summary>Returns the number of columns displayed to the user.</summary>
      <param name="includePartialColumns">
        <see langword="true" /> to include partial columns in the displayed column count; otherwise, <see langword="false" />.</param>
      <returns>The number of columns displayed to the user.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DisplayedRowCount(System.Boolean)">
      <summary>Returns the number of rows displayed to the user.</summary>
      <param name="includePartialRow">
        <see langword="true" /> to include partial rows in the displayed row count; otherwise, <see langword="false" />.</param>
      <returns>The number of rows displayed to the user.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control" /> and its child controls and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.EndEdit">
      <summary>Commits and ends the edit operation on the current cell using the default error context.</summary>
      <exception cref="T:System.Exception">The cell value could not be committed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the edit operation is committed and ended; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.EndEdit(System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Commits and ends the edit operation on the current cell using the specified error context.</summary>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the context in which an error can occur.</param>
      <exception cref="T:System.Exception">The cell value could not be committed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the edit operation is committed and ended; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.GetAccessibilityObjectById(System.Int32)">
      <summary>Retrieves the specified <see cref="T:System.Windows.Forms.AccessibleObject" />.</summary>
      <param name="objectId">An <see cref="T:System.Int32" /> that identifies the <see cref="T:System.Windows.Forms.AccessibleObject" /> to retrieve.</param>
      <returns>The specified <see cref="T:System.Windows.Forms.AccessibleObject" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.GetCellCount(System.Windows.Forms.DataGridViewElementStates)">
      <summary>Gets the number of cells that satisfy the provided filter.</summary>
      <param name="includeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values specifying the cells to count.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> includes the value <see cref="F:System.Windows.Forms.DataGridViewElementStates.ResizableSet" />.</exception>
      <returns>The number of cells that match the <paramref name="includeFilter" /> parameter.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.GetCellDisplayRectangle(System.Int32,System.Int32,System.Boolean)">
      <summary>Returns the rectangle that represents the display area for a cell.</summary>
      <param name="columnIndex">The column index for the desired cell.</param>
      <param name="rowIndex">The row index for the desired cell.</param>
      <param name="cutOverflow">
        <see langword="true" /> to return the displayed portion of the cell only; <see langword="false" /> to return the entire cell bounds.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than -1 or greater than the number of columns in the control minus 1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than -1 or greater than the number of rows in the control minus 1.</exception>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that represents the display rectangle of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.GetClipboardContent">
      <summary>Retrieves the formatted values that represent the contents of the selected cells for copying to the <see cref="T:System.Windows.Forms.Clipboard" />.</summary>
      <exception cref="T:System.NotSupportedException">
        <see cref="P:System.Windows.Forms.DataGridView.ClipboardCopyMode" /> is set to <see cref="F:System.Windows.Forms.DataGridViewClipboardCopyMode.Disable" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataObject" /> that represents the contents of the selected cells.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.GetColumnDisplayRectangle(System.Int32,System.Boolean)">
      <summary>Returns the rectangle that represents the display area for a column, as determined by the column index.</summary>
      <param name="columnIndex">The column index for the desired cell.</param>
      <param name="cutOverflow">
        <see langword="true" /> to return the column rectangle visible in the <see cref="T:System.Windows.Forms.DataGridView" /> bounds; <see langword="false" /> to return the entire column rectangle.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is not in the valid range of 0 to the number of columns minus 1.</exception>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that represents the display rectangle of the column.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.GetRowDisplayRectangle(System.Int32,System.Boolean)">
      <summary>Returns the rectangle that represents the display area for a row, as determined by the row index.</summary>
      <param name="rowIndex">The row index for the desired cell.</param>
      <param name="cutOverflow">
        <see langword="true" /> to return the row rectangle visible in the <see cref="T:System.Windows.Forms.DataGridView" /> bounds; <see langword="false" /> to return the entire row rectangle.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not in the valid range of 0 to the number of rows minus 1.</exception>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that represents the display rectangle of the row.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.HitTest(System.Int32,System.Int32)">
      <summary>Returns location information, such as row and column indices, given x- and y-coordinates.</summary>
      <param name="x">The x-coordinate.</param>
      <param name="y">The y-coordinate.</param>
      <returns>A <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" /> that contains the location information.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.InvalidateCell(System.Int32,System.Int32)">
      <summary>Invalidates the cell with the specified row and column indexes, forcing it to be repainted.</summary>
      <param name="columnIndex">The column index of the cell to invalidate.</param>
      <param name="rowIndex">The row index of the cell to invalidate.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than -1 or greater than the number of columns in the control minus 1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than -1 or greater than the number of rows in the control minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.InvalidateCell(System.Windows.Forms.DataGridViewCell)">
      <summary>Invalidates the specified cell of the <see cref="T:System.Windows.Forms.DataGridView" />, forcing it to be repainted.</summary>
      <param name="dataGridViewCell">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> to invalidate.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="dataGridViewCell" /> does not belong to the <see cref="T:System.Windows.Forms.DataGridView" />.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewCell" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.InvalidateColumn(System.Int32)">
      <summary>Invalidates the specified column of the <see cref="T:System.Windows.Forms.DataGridView" />, forcing it to be repainted.</summary>
      <param name="columnIndex">The index of the column to invalidate.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is not in the valid range of 0 to the number of columns minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.InvalidateRow(System.Int32)">
      <summary>Invalidates the specified row of the <see cref="T:System.Windows.Forms.DataGridView" />, forcing it to be repainted.</summary>
      <param name="rowIndex">The index of the row to invalidate.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not in the valid range of 0 to the number of rows minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.IsInputChar(System.Char)">
      <summary>Determines whether a character is an input character that the <see cref="T:System.Windows.Forms.DataGridView" /> recognizes.</summary>
      <param name="charCode">The character to test.</param>
      <returns>
        <see langword="true" /> if the character is recognized as an input character; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.NotifyCurrentCellDirty(System.Boolean)">
      <summary>Notifies the <see cref="T:System.Windows.Forms.DataGridView" /> that the current cell has uncommitted changes.</summary>
      <param name="dirty">
        <see langword="true" /> to indicate the cell has uncommitted changes; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAllowUserToAddRowsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToAddRowsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAllowUserToDeleteRowsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToDeleteRowsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAllowUserToOrderColumnsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToOrderColumnsChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAllowUserToResizeColumnsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToResizeColumnsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAllowUserToResizeRowsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToResizeRowsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAlternatingRowsDefaultCellStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAutoGenerateColumnsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AutoGenerateColumnsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAutoSizeColumnModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeColumnModeChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.Column" /> property of <paramref name="e" /> is null.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAutoSizeColumnsModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeColumnsModeChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentNullException">The value of the <see cref="P:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.PreviousModes" /> property of <paramref name="e" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The number of entries in the array returned by the <see cref="P:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.PreviousModes" /> property of <paramref name="e" /> is not equal to the number of columns in the control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnAutoSizeRowsModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeRowsModeChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnBackgroundColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.BackgroundColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnBindingContextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BindingContextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnBorderStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.BorderStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCancelRowEdit(System.Windows.Forms.QuestionEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CancelRowEdit" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.QuestionEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellBeginEdit(System.Windows.Forms.DataGridViewCellCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellBeginEdit" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellCancelEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellCancelEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellCancelEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellBorderStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellBorderStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellContentClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContentClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains information regarding the cell whose content was clicked.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContentDoubleClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellContextMenuStripChanged(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellContextMenuStripNeeded(System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellDoubleClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellEndEdit(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellEndEdit" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellEnter(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellEnter" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellErrorTextChanged(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is less than -1 or greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is less than -1 or greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellErrorTextNeeded(System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellFormatting(System.Windows.Forms.DataGridViewCellFormattingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellFormatting" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellFormattingEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellLeave(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellLeave" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseDoubleClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellMouseEnter(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseEnter" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellMouseLeave(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseLeave" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseMove" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellPainting(System.Windows.Forms.DataGridViewCellPaintingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellPainting" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellPaintingEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellParsing(System.Windows.Forms.DataGridViewCellParsingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellParsingEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellParsingEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellParsingEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellStateChanged(System.Windows.Forms.DataGridViewCellStateChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellStateChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellStateChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellStyleChanged(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellStyleChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellStyleContentChanged(System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellStyleContentChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellToolTipTextChanged(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains information about the cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellToolTipTextNeeded(System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellValidated(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValidated" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellValidating(System.Windows.Forms.DataGridViewCellValidatingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValidating" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellValidatingEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellValidatingEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellValidatingEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellValueChanged(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValueChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property of <paramref name="e" /> is greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property of <paramref name="e" /> is greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellValueNeeded(System.Windows.Forms.DataGridViewCellValueEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValueNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellValueEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellValueEventArgs.ColumnIndex" /> property of <paramref name="e" /> is less than zero or greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellValueEventArgs.RowIndex" /> property of <paramref name="e" /> is less than zero or greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCellValuePushed(System.Windows.Forms.DataGridViewCellValueEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellValueEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellValueEventArgs.ColumnIndex" /> property of <paramref name="e" /> is less than zero or greater than the number of columns in the control minus one.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCellValueEventArgs.RowIndex" /> property of <paramref name="e" /> is less than zero or greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnAdded(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnAdded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnContextMenuStripChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnContextMenuStripChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnDataPropertyNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDataPropertyNameChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnDefaultCellStyleChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDefaultCellStyleChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnDisplayIndexChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDisplayIndexChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnDividerDoubleClick(System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDividerDoubleClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnDividerWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDividerWidthChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnHeaderCellChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeaderCellChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnHeaderMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeaderMouseClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex" /> property of <paramref name="e" /> is less than zero or greater than the number of columns in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnHeaderMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeaderMouseDoubleClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the cell and the position of the mouse pointer.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnHeadersBorderStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnHeadersDefaultCellStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnHeadersHeightChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeadersHeightChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnHeadersHeightSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeModeChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnMinimumWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnMinimumWidthChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnNameChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnRemoved(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnRemoved" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnSortModeChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnSortModeChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnStateChanged(System.Windows.Forms.DataGridViewColumnStateChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnStateChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.InvalidCastException">The column changed from read-only to read/write, enabling the current cell to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnToolTipTextChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnToolTipTextChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains information about the column.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnColumnWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnWidthChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The column indicated by the <see cref="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCurrentCellChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCurrentCellDirtyStateChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnCursorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.CursorChanged" /> event and updates the <see cref="P:System.Windows.Forms.DataGridView.UserSetCursor" /> property if the cursor was changed in user code.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnDataBindingComplete(System.Windows.Forms.DataGridViewBindingCompleteEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.DataBindingComplete" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewBindingCompleteEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnDataError(System.Boolean,System.Windows.Forms.DataGridViewDataErrorEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event.</summary>
      <param name="displayErrorDialogIfNoHandler">
        <see langword="true" /> to display an error dialog box if there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewDataErrorEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnDataMemberChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.DataMemberChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnDataSourceChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.DataSourceChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnDefaultCellStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.DefaultCellStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnDefaultValuesNeeded(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.DefaultValuesNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnDoubleClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DoubleClick" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnEditingControlShowing(System.Windows.Forms.DataGridViewEditingControlShowingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.EditingControlShowing" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs" /> that contains information about the editing control.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnEditModeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.EditModeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
      <exception cref="T:System.InvalidCastException">When entering edit mode, the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Enter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
      <exception cref="T:System.InvalidCastException">The control is configured to enter edit mode when it receives focus, but upon entering focus, the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">The control is configured to enter edit mode when it receives focus, but initialization of the editing cell value failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ForeColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnGridColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.GridColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.Exception">This action would cause the control to enter edit mode but initialization of the editing cell value failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Leave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnMouseClick(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.Exception">The control is configured to enter edit mode when it receives focus, but initialization of the editing cell value failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDoubleClick" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.Exception">The control is configured to enter edit mode when it receives focus, but initialization of the editing cell value failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnMouseEnter(System.EventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseEnter(System.EventArgs)" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnMultiSelectChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.MultiSelectChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnNewRowNeeded(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.NewRowNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.Exception">Any exceptions that occur during this method are ignored unless they are one of the following:  
  
-   <see cref="T:System.NullReferenceException" /> 
  
-   <see cref="T:System.StackOverflowException" /> 
  
-   <see cref="T:System.OutOfMemoryException" /> 
  
-   <see cref="T:System.Threading.ThreadAbortException" /> 
  
-   <see cref="T:System.ExecutionEngineException" /> 
  
-   <see cref="T:System.IndexOutOfRangeException" /> 
  
-   <see cref="T:System.AccessViolationException" /></exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnReadOnlyChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.ReadOnlyChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
      <exception cref="T:System.InvalidCastException">The control changed from read-only to read/write, enabling the current cell to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowContextMenuStripChanged(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowContextMenuStripNeeded(System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowDefaultCellStyleChanged(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowDefaultCellStyleChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowDirtyStateNeeded(System.Windows.Forms.QuestionEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowDirtyStateNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.QuestionEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowDividerDoubleClick(System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowDividerDoubleClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowDividerHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowDividerHeightChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowEnter(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowEnter" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowErrorTextChanged(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowErrorTextNeeded(System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeaderCellChanged(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeaderCellChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeaderMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeaderMouseClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the mouse and the header cell that was clicked.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeaderMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeaderMouseDoubleClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the mouse and the header cell that was double-clicked.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeadersBorderStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeadersBorderStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeadersDefaultCellStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeadersWidthChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeadersWidthChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeadersWidthSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeadersWidthSizeModeChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeightChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeightInfoNeeded(System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowHeightInfoPushed(System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoPushed" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowLeave(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowLeave" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowMinimumHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowMinimumHeightChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowPostPaint(System.Windows.Forms.DataGridViewRowPostPaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowPostPaint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowPostPaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowPrePaint(System.Windows.Forms.DataGridViewRowPrePaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowPrePaint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowPrePaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowsAdded(System.Windows.Forms.DataGridViewRowsAddedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowsAdded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowsAddedEventArgs" /> that contains information about the added rows.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowsDefaultCellStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowsDefaultCellStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowsRemoved(System.Windows.Forms.DataGridViewRowsRemovedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowsRemoved" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowsRemovedEventArgs" /> that contains information about the deleted rows.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowStateChanged(System.Int32,System.Windows.Forms.DataGridViewRowStateChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowStateChanged" /> event.</summary>
      <param name="rowIndex">The index of the row that is changing state.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowStateChangedEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.InvalidCastException">The row changed from read-only to read/write, enabling the current cell to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowUnshared(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowUnshared" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowValidated(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowValidated" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnRowValidating(System.Windows.Forms.DataGridViewCellCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnScroll(System.Windows.Forms.ScrollEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.Scroll" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ScrollEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnSelectionChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.SelectionChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains information about the event.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnSortCompare(System.Windows.Forms.DataGridViewSortCompareEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.SortCompare" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewSortCompareEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnSorted(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.Sorted" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnUserAddedRow(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.UserAddedRow" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentException">The row indicated by the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property of <paramref name="e" /> does not belong to this <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnUserDeletedRow(System.Windows.Forms.DataGridViewRowEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.UserDeletedRow" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnUserDeletingRow(System.Windows.Forms.DataGridViewRowCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.UserDeletingRow" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnValidating(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Validating" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.Exception">Validation failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.PaintBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle)">
      <summary>Paints the background of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the background.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be painted.</param>
      <param name="gridBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area in which cells are drawn.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessAKey(System.Windows.Forms.Keys)">
      <summary>Processes the A key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessControlShiftF10Keys(System.Windows.Forms.Keys)">
      <summary>Activates the keyboard tooltip.</summary>
      <param name="keyData">A bitwise combination of the enumeration values that represent the key or keys to process.</param>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessDataGridViewKey(System.Windows.Forms.KeyEventArgs)">
      <summary>Processes keys used for navigating in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="e">Contains information about the key that was pressed.</param>
      <exception cref="T:System.InvalidCastException">The key pressed would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.  
  
 -or-  
  
 The DELETE key would delete one or more rows, but an error in the data source prevents the deletion and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessDeleteKey(System.Windows.Forms.Keys)">
      <summary>Processes the DELETE key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.Exception">The DELETE key would delete one or more rows, but an error in the data source prevents the deletion and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes keys, such as the TAB, ESCAPE, ENTER, and ARROW keys, used to control dialog boxes.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The key pressed would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessDownKey(System.Windows.Forms.Keys)">
      <summary>Processes the DOWN ARROW key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The DOWN ARROW key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessEndKey(System.Windows.Forms.Keys)">
      <summary>Processes the END key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The END key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessEnterKey(System.Windows.Forms.Keys)">
      <summary>Processes the ENTER key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The ENTER key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessEscapeKey(System.Windows.Forms.Keys)">
      <summary>Processes the ESC key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessF2Key(System.Windows.Forms.Keys)">
      <summary>Processes the F2 key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The F2 key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">The F2 key would cause the control to enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessF3Key(System.Windows.Forms.Keys)">
      <summary>Processes the F3 key by sorting the current column.</summary>
      <param name="keyData">A bitwise combination of values that represents the key or keys to process.</param>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessHomeKey(System.Windows.Forms.Keys)">
      <summary>Processes the HOME key.</summary>
      <param name="keyData">The key that was pressed.</param>
      <exception cref="T:System.InvalidCastException">The HOME key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessInsertKey(System.Windows.Forms.Keys)">
      <summary>Processes the INSERT key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessKeyEventArgs(System.Windows.Forms.Message@)">
      <summary>Processes a key message and generates the appropriate control events.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <exception cref="T:System.InvalidCastException">The key pressed would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the message was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessKeyPreview(System.Windows.Forms.Message@)">
      <summary>Previews a keyboard message.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <exception cref="T:System.InvalidCastException">The key pressed would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the message was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessLeftKey(System.Windows.Forms.Keys)">
      <summary>Processes the LEFT ARROW key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The LEFT ARROW key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessNextKey(System.Windows.Forms.Keys)">
      <summary>Processes the PAGE DOWN key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The PAGE DOWN key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessPriorKey(System.Windows.Forms.Keys)">
      <summary>Processes the PAGE UP key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The PAGE UP key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessRightKey(System.Windows.Forms.Keys)">
      <summary>Processes the RIGHT ARROW key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The RIGHT ARROW key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessSpaceKey(System.Windows.Forms.Keys)">
      <summary>Processes the SPACEBAR.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessTabKey(System.Windows.Forms.Keys)">
      <summary>Processes the TAB key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The TAB key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessUpKey(System.Windows.Forms.Keys)">
      <summary>Processes the UP ARROW key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The UP ARROW key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the new current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would commit a cell value or enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ProcessZeroKey(System.Windows.Forms.Keys)">
      <summary>Processes the 0 key.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
      <exception cref="T:System.InvalidCastException">The 0 key would cause the control to enter edit mode, but the <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property of the current cell does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <exception cref="T:System.Exception">This action would cause the control to enter edit mode, but an error in the data source prevents the action and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if the key was processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.RefreshEdit">
      <summary>Refreshes the value of the current cell with the underlying cell value when the cell is in edit mode, discarding any previous value.</summary>
      <returns>
        <see langword="true" /> if successful; <see langword="false" /> if a <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event occurred.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.ResetText">
      <summary>Resets the <see cref="P:System.Windows.Forms.DataGridView.Text" /> property to its default value (<see cref="F:System.String.Empty" />).</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.SelectAll">
      <summary>Selects all the cells in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)" />.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">One or both of the width or height values exceeds the maximum value of 8,388,607.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.SetCurrentCellAddressCore(System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
      <summary>Sets the currently active cell.</summary>
      <param name="columnIndex">The index of the column containing the cell.</param>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <param name="setAnchorCellAddress">
        <see langword="true" /> to make the new current cell the anchor cell for a subsequent multicell selection using the SHIFT key; otherwise, <see langword="false" />.</param>
      <param name="validateCurrentCell">
        <see langword="true" /> to validate the value in the old current cell and cancel the change if validation fails; otherwise, <see langword="false" />.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if the current cell is being set as a result of a mouse click; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than 0 or greater than the number of columns in the control minus 1, and <paramref name="rowIndex" /> is not -1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than 0 or greater than the number of rows in the control minus 1, and <paramref name="columnIndex" /> is not -1.</exception>
      <exception cref="T:System.InvalidOperationException">The specified cell has a <see cref="P:System.Windows.Forms.DataGridViewCell.Visible" /> property value of <see langword="false" />.  
  
 -or-  
  
 This method was called for a reason other than the underlying data source being reset, and another thread is currently executing this method.</exception>
      <exception cref="T:System.InvalidCastException">The new current cell tried to enter edit mode, but its <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property does not indicate a class that derives from <see cref="T:System.Windows.Forms.Control" /> and implements <see cref="T:System.Windows.Forms.IDataGridViewEditingControl" />.</exception>
      <returns>
        <see langword="true" /> if the current cell was successfully set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.SetSelectedCellCore(System.Int32,System.Int32,System.Boolean)">
      <summary>Changes the selection state of the cell with the specified row and column indexes.</summary>
      <param name="columnIndex">The index of the column containing the cell.</param>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <param name="selected">
        <see langword="true" /> to select the cell; <see langword="false" /> to cancel the selection of the cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than 0 or greater than the number of columns in the control minus 1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than 0 or greater than the number of rows in the control minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.SetSelectedColumnCore(System.Int32,System.Boolean)">
      <summary>Changes the selection state of the column with the specified index.</summary>
      <param name="columnIndex">The index of the column.</param>
      <param name="selected">
        <see langword="true" /> to select the column; <see langword="false" /> to cancel the selection of the column.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than 0 or greater than the number of columns in the control minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.SetSelectedRowCore(System.Int32,System.Boolean)">
      <summary>Changes the selection state of the row with the specified index.</summary>
      <param name="rowIndex">The index of the row.</param>
      <param name="selected">
        <see langword="true" /> to select the row; <see langword="false" /> to cancel the selection of the row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than 0 or greater than the number of rows in the control minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.Sort(System.Collections.IComparer)">
      <summary>Sorts the contents of the <see cref="T:System.Windows.Forms.DataGridView" /> control using an implementation of the <see cref="T:System.Collections.IComparer" /> interface.</summary>
      <param name="comparer">An implementation of <see cref="T:System.Collections.IComparer" /> that performs the custom sorting operation.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="comparer" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> is set to <see langword="true" />.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> is not <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.Sort(System.Windows.Forms.DataGridViewColumn,System.ComponentModel.ListSortDirection)">
      <summary>Sorts the contents of the <see cref="T:System.Windows.Forms.DataGridView" /> control in ascending or descending order based on the contents of the specified column.</summary>
      <param name="dataGridViewColumn">The column by which to sort the contents of the <see cref="T:System.Windows.Forms.DataGridView" />.</param>
      <param name="direction">One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values.</param>
      <exception cref="T:System.ArgumentException">The specified column is not part of this <see cref="T:System.Windows.Forms.DataGridView" />.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property has been set and the <see cref="P:System.Windows.Forms.DataGridViewColumn.IsDataBound" /> property of the specified column returns <see langword="false" />.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewColumn" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is set to <see langword="true" /> and the <see cref="P:System.Windows.Forms.DataGridViewColumn.IsDataBound" /> property of the specified column returns <see langword="false" />.  
  
 -or-  
  
 The object specified by the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property does not implement the <see cref="T:System.ComponentModel.IBindingList" /> interface.  
  
 -or-  
  
 The object specified by the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property has a <see cref="P:System.ComponentModel.IBindingList.SupportsSorting" /> property value of <see langword="false" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#BeginInit">
      <summary>For a description of this member, see <see cref="M:System.ComponentModel.ISupportInitialize.BeginInit" />.</summary>
      <exception cref="T:System.InvalidOperationException">This method has already been called for this control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#EndInit">
      <summary>For a description of this member, see <see cref="M:System.ComponentModel.ISupportInitialize.EndInit" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.UpdateCellErrorText(System.Int32,System.Int32)">
      <summary>Forces the cell at the specified location to update its error text.</summary>
      <param name="columnIndex">The column index of the cell to update, or -1 to indicate a row header cell.</param>
      <param name="rowIndex">The row index of the cell to update, or -1 to indicate a column header cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than -1 or greater than the number of columns in the control minus 1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than -1 or greater than the number of rows in the control minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.UpdateCellValue(System.Int32,System.Int32)">
      <summary>Forces the control to update its display of the cell at the specified location based on its new value, applying any automatic sizing modes currently in effect.</summary>
      <param name="columnIndex">The zero-based column index of the cell with the new value.</param>
      <param name="rowIndex">The zero-based row index of the cell with the new value.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than zero or greater than the number of columns in the control minus one.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than zero or greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.UpdateRowErrorText(System.Int32)">
      <summary>Forces the row at the given row index to update its error text.</summary>
      <param name="rowIndex">The zero-based index of the row to update.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not in the valid range of 0 to the number of rows in the control minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.UpdateRowErrorText(System.Int32,System.Int32)">
      <summary>Forces the rows in the given range to update their error text.</summary>
      <param name="rowIndexStart">The zero-based index of the first row in the set of rows to update.</param>
      <param name="rowIndexEnd">The zero-based index of the last row in the set of rows to update.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndexStart" /> is not in the valid range of 0 to the number of rows in the control minus 1.  
  
 -or-  
  
 <paramref name="rowIndexEnd" /> is not in the valid range of 0 to the number of rows in the control minus 1.  
  
 -or-  
  
 <paramref name="rowIndexEnd" /> is less than <paramref name="rowIndexStart" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.UpdateRowHeightInfo(System.Int32,System.Boolean)">
      <summary>Forces the specified row or rows to update their height information.</summary>
      <param name="rowIndex">The zero-based index of the first row to update.</param>
      <param name="updateToEnd">
        <see langword="true" /> to update the specified row and all subsequent rows.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than 0 and <paramref name="updateToEnd" /> is <see langword="true" />.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than -1 and <paramref name="updateToEnd" /> is <see langword="false" />.  
  
 -or-  
  
 <paramref name="rowIndex" /> is greater than the highest row index in the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes window messages.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AdjustedTopLeftHeaderBorderStyle">
      <summary>Gets the border style for the upper-left cell in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the style of the border of the upper-left cell in the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AdvancedCellBorderStyle">
      <summary>Gets the border style of the cells in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the border style of the cells in the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AdvancedColumnHeadersBorderStyle">
      <summary>Gets the border style of the column header cells in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the border style of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" /> objects in the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AdvancedRowHeadersBorderStyle">
      <summary>Gets the border style of the row header cells in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the border style of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" /> objects in the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AllowUserToAddRows">
      <summary>Gets or sets a value indicating whether the option to add rows is displayed to the user.</summary>
      <returns>
        <see langword="true" /> if the add-row option is displayed to the user; otherwise <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AllowUserToDeleteRows">
      <summary>Gets or sets a value indicating whether the user is allowed to delete rows from the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>
        <see langword="true" /> if the user can delete rows; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AllowUserToOrderColumns">
      <summary>Gets or sets a value indicating whether manual column repositioning is enabled.</summary>
      <returns>
        <see langword="true" /> if the user can change the column order; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AllowUserToResizeColumns">
      <summary>Gets or sets a value indicating whether users can resize columns.</summary>
      <returns>
        <see langword="true" /> if users can resize columns; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AllowUserToResizeRows">
      <summary>Gets or sets a value indicating whether users can resize rows.</summary>
      <returns>
        <see langword="true" /> if all the rows are resizable; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle">
      <summary>Gets or sets the default cell style applied to odd-numbered rows of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to apply to the odd-numbered rows.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AutoGenerateColumns">
      <summary>Gets or sets a value indicating whether columns are created automatically when the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> or <see cref="P:System.Windows.Forms.DataGridView.DataMember" /> properties are set.</summary>
      <returns>
        <see langword="true" /> if the columns should be created automatically; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AutoSize">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode">
      <summary>Gets or sets a value indicating how column widths are determined.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode" /> value.</exception>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.ColumnHeader" />, column headers are hidden, and at least one visible column has an <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet" />.  
  
 -or-  
  
 The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill" /> and at least one visible column with an <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet" /> is frozen.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode" /> value. The default is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode">
      <summary>Gets or sets a value indicating how row heights are determined.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> value.</exception>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders" /> or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders" /> and row headers are hidden.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> value indicating the sizing mode. The default is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.BackgroundColor">
      <summary>Gets or sets the background color of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Drawing.Color.Empty" />.  
  
 -or-  
  
 The specified value when setting this property has a <see cref="P:System.Drawing.Color.A" /> property value that is less that 255.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the <see cref="T:System.Windows.Forms.DataGridView" />. The default is <see cref="P:System.Drawing.SystemColors.AppWorkspace" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.BackgroundImage">
      <summary>Gets or sets the background image displayed in the control.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> that represents the image to display in the background of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.BackgroundImageLayout">
      <summary>Gets or sets the background image layout as defined in the <see cref="T:System.Windows.Forms.ImageLayout" /> enumeration.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageLayout" /> value indicating the background image layout. The default is <see cref="F:System.Windows.Forms.ImageLayout.Tile" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.BorderStyle">
      <summary>Gets or sets the border style for the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.BorderStyle" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see cref="F:System.Windows.Forms.BorderStyle.FixedSingle" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.CanEnableIme">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property can be set to an active value, to enable IME support.</summary>
      <returns>
        <see langword="true" /> if there is an editable cell selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.CellBorderStyle">
      <summary>Gets the cell border style for the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewCellBorderStyle" /> value.</exception>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewCellBorderStyle.Custom" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellBorderStyle" /> that represents the border style of the cells contained in the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ClipboardCopyMode">
      <summary>Gets or sets a value that indicates whether users can copy cell text values to the <see cref="T:System.Windows.Forms.Clipboard" /> and whether row and column header text is included.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewClipboardCopyMode" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewClipboardCopyMode" /> values. The default is <see cref="F:System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithAutoHeaderText" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ColumnCount">
      <summary>Gets or sets the number of columns displayed in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is less than 0.</exception>
      <exception cref="T:System.InvalidOperationException">When setting this property, the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property has been set.</exception>
      <returns>The number of columns displayed in the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle">
      <summary>Gets the border style applied to the column headers.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewHeaderBorderStyle" /> value.</exception>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Custom" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewHeaderBorderStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle">
      <summary>Gets or sets the default column header style.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the default column header style.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ColumnHeadersHeight">
      <summary>Gets or sets the height, in pixels, of the column headers row.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is less than the minimum height of 4 pixels or is greater than the maximum height of 32768 pixels.</exception>
      <returns>The height, in pixels, of the row that contains the column headers. The default is 23.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode">
      <summary>Gets or sets a value indicating whether the height of the column headers is adjustable and whether it can be adjusted by the user or is automatically adjusted to fit the contents of the headers.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode" /> value.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode" /> value indicating the mode by which the height of the column headers row can be adjusted. The default is <see cref="F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.EnableResizing" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible">
      <summary>Gets or sets a value indicating whether the column header row is displayed.</summary>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property is <see langword="false" /> and one or more columns have an <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader" />.</exception>
      <returns>
        <see langword="true" /> if the column headers are displayed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.Columns">
      <summary>Gets a collection that contains all the columns in the control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" /> that contains all the columns in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.CurrentCell">
      <summary>Gets or sets the currently active cell.</summary>
      <exception cref="T:System.InvalidOperationException">The value of this property cannot be set because changes to the current cell cannot be committed or canceled.  
  
 -or-  
  
 The specified cell when setting this property is in a hidden row or column.  
  
 Re-entrant calling is only allowed when the <see cref="T:System.Windows.Forms.DataGridView" /> is bound to a <see cref="P:System.Windows.Forms.DataGridView.DataSource" />. Re-entrant calling results from a change to the underlying data.</exception>
      <exception cref="T:System.ArgumentException">The specified cell when setting this property is not in the <see cref="T:System.Windows.Forms.DataGridView" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> that represents the current cell, or <see langword="null" /> if there is no current cell. The default is the first cell in the first column or <see langword="null" /> if there are no cells in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.CurrentCellAddress">
      <summary>Gets the row and column indexes of the currently active cell.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> that represents the row and column indexes of the currently active cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.CurrentRow">
      <summary>Gets the row containing the current cell.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow" /> that represents the row containing the current cell, or <see langword="null" /> if there is no current cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DataMember">
      <summary>Gets or sets the name of the list or table in the data source for which the <see cref="T:System.Windows.Forms.DataGridView" /> is displaying data.</summary>
      <exception cref="T:System.Exception">An error occurred in the data source and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>The name of the table or list in the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> for which the <see cref="T:System.Windows.Forms.DataGridView" /> is displaying data. The default is <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DataSource">
      <summary>Gets or sets the data source that the <see cref="T:System.Windows.Forms.DataGridView" /> is displaying data for.</summary>
      <exception cref="T:System.Exception">An error occurred in the data source and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>The object that contains data for the <see cref="T:System.Windows.Forms.DataGridView" /> to display.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DefaultCellStyle">
      <summary>Gets or sets the default cell style to be applied to the cells in the <see cref="T:System.Windows.Forms.DataGridView" /> if no other cell style properties are set.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied as the default style.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DefaultSize">
      <summary>Gets the default initial size of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the initial size of the control, which is 240 pixels wide by 150 pixels high.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DisplayRectangle">
      <summary>Gets the rectangle that represents the display area of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the display area of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.EditingControl">
      <summary>Gets the control hosted by the current cell, if a cell with an editing control is in edit mode.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> hosted by the current cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.EditingPanel">
      <summary>Gets the panel that contains the <see cref="P:System.Windows.Forms.DataGridView.EditingControl" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Panel" /> that contains the <see cref="P:System.Windows.Forms.DataGridView.EditingControl" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.EditMode">
      <summary>Gets or sets a value indicating how to begin editing a cell.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewEditMode" /> value.</exception>
      <exception cref="T:System.Exception">The specified value when setting this property would cause the control to enter edit mode, but initialization of the editing cell value failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewEditMode" /> values. The default is <see cref="F:System.Windows.Forms.DataGridViewEditMode.EditOnKeystrokeOrF2" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles">
      <summary>Gets or sets a value indicating whether row and column headers use the visual styles of the user's current theme if visual styles are enabled for the application.</summary>
      <returns>
        <see langword="true" /> if visual styles are enabled for the headers; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.FirstDisplayedCell">
      <summary>Gets or sets the first cell currently displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; typically, this cell is in the upper left corner.</summary>
      <exception cref="T:System.ArgumentException">The specified cell when setting this property is not in the <see cref="T:System.Windows.Forms.DataGridView" />.</exception>
      <exception cref="T:System.InvalidOperationException">The specified cell when setting this property has a <see cref="P:System.Windows.Forms.DataGridViewCell.RowIndex" /> or <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> property value of -1, indicating that it is a header cell or a shared cell.  
  
 -or-  
  
 The specified cell when setting this property has a <see cref="P:System.Windows.Forms.DataGridViewCell.Visible" /> property value of <see langword="false" />.</exception>
      <returns>The first <see cref="T:System.Windows.Forms.DataGridViewCell" /> currently displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnHiddenWidth">
      <summary>Gets the width of the portion of the column that is currently scrolled out of view.</summary>
      <returns>The width of the portion of the column that is scrolled out of view.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnIndex">
      <summary>Gets or sets the index of the column that is the first column displayed on the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is less than 0 or greater than the number of columns in the control minus 1.</exception>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property indicates a column with a <see cref="P:System.Windows.Forms.DataGridViewColumn.Visible" /> property value of <see langword="false" />.  
  
 -or-  
  
 The specified value when setting this property indicates a column with a <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value of <see langword="true" />.</exception>
      <returns>The index of the column that is the first column displayed on the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.FirstDisplayedScrollingRowIndex">
      <summary>Gets or sets the index of the row that is the first row displayed on the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is less than 0 or greater than the number of rows in the control minus 1.</exception>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property indicates a row with a <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property value of <see langword="false" />.  
  
 -or-  
  
 The specified value when setting this property indicates a column with a <see cref="P:System.Windows.Forms.DataGridViewRow.Frozen" /> property value of <see langword="true" />.</exception>
      <returns>The index of the row that is the first row displayed on the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.Font">
      <summary>Gets or sets the font of the text displayed by the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ForeColor">
      <summary>Gets or sets the foreground color of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the <see cref="T:System.Windows.Forms.DataGridView" />. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.GridColor">
      <summary>Gets or sets the color of the grid lines separating the cells of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Drawing.Color.Empty" />.  
  
 -or-  
  
 The specified value when setting this property has a <see cref="P:System.Drawing.Color.A" /> property value that is less that 255.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> or <see cref="T:System.Drawing.SystemColors" /> that represents the color of the grid lines. The default is <see cref="F:System.Drawing.KnownColor.ControlDarkDark" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.HorizontalScrollBar">
      <summary>Gets the horizontal scroll bar of the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ScrollBar" /> representing the horizontal scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.HorizontalScrollingOffset">
      <summary>Gets or sets the number of pixels by which the control is scrolled horizontally.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is less than 0.</exception>
      <returns>The number of pixels by which the control is scrolled horizontally.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.IsCurrentCellDirty">
      <summary>Gets a value indicating whether the current cell has uncommitted changes.</summary>
      <returns>
        <see langword="true" /> if the current cell has uncommitted changes; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.IsCurrentCellInEditMode">
      <summary>Gets a value indicating whether the currently active cell is being edited.</summary>
      <returns>
        <see langword="true" /> if the current cell is being edited; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.IsCurrentRowDirty">
      <summary>Gets a value indicating whether the current row has uncommitted changes.</summary>
      <returns>
        <see langword="true" /> if the current row has uncommitted changes; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.Item(System.Int32,System.Int32)">
      <summary>Provides an indexer to get or set the cell located at the intersection of the column and row with the specified indexes.</summary>
      <param name="columnIndex">The index of the column containing the cell.</param>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than 0 or greater than the number of columns in the control minus 1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than 0 or greater than the number of rows in the control minus 1.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> at the specified location.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.Item(System.String,System.Int32)">
      <summary>Provides an indexer to get or set the cell located at the intersection of the row with the specified index and the column with the specified name.</summary>
      <param name="columnName">The name of the column containing the cell.</param>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> at the specified location.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.MultiSelect">
      <summary>Gets or sets a value indicating whether the user is allowed to select more than one cell, row, or column of the <see cref="T:System.Windows.Forms.DataGridView" /> at a time.</summary>
      <returns>
        <see langword="true" /> if the user can select more than one cell, row, or column at a time; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.NewRowIndex">
      <summary>Gets the index of the row for new records.</summary>
      <returns>The index of the row for new records, or -1 if <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.Padding">
      <summary>This property is not relevant for this control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> instance.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ReadOnly">
      <summary>Gets or sets a value indicating whether the user can edit the cells of the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property is <see langword="true" />, the current cell is in edit mode, and the current cell contains changes that cannot be committed.</exception>
      <exception cref="T:System.Exception">The specified value when setting this property would cause the control to enter edit mode, but initialization of the editing cell value failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event or the handler has set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>
        <see langword="true" /> if the user cannot edit the cells of the <see cref="T:System.Windows.Forms.DataGridView" /> control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.RowCount">
      <summary>Gets or sets the number of rows displayed in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is less than 0.  
  
 -or-  
  
 The specified value is less than 1 and <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> is set to <see langword="true" />.</exception>
      <exception cref="T:System.InvalidOperationException">When setting this property, the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property is set.</exception>
      <returns>The number of rows to display in the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.RowHeadersBorderStyle">
      <summary>Gets or sets the border style of the row header cells.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewHeaderBorderStyle" /> value.</exception>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Custom" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewHeaderBorderStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle">
      <summary>Gets or sets the default style applied to the row header cells.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the default style applied to the row header cells.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.RowHeadersVisible">
      <summary>Gets or sets a value indicating whether the column that contains row headers is displayed.</summary>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property is <see langword="false" /> and the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property is set to <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders" /> or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders" />.</exception>
      <returns>
        <see langword="true" /> if the column that contains row headers is displayed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.RowHeadersWidth">
      <summary>Gets or sets the width, in pixels, of the column that contains the row headers.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is less than the minimum width of 4 pixels or is greater than the maximum width of 32768 pixels.</exception>
      <returns>The width, in pixels, of the column that contains row headers. The default is 43.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode">
      <summary>Gets or sets a value indicating whether the width of the row headers is adjustable and whether it can be adjusted by the user or is automatically adjusted to fit the contents of the headers.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> value.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> value indicating the mode by which the width of the row headers can be adjusted. The default is <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.Rows">
      <summary>Gets a collection that contains all the rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewRowCollection" /> that contains all the rows in the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle">
      <summary>Gets or sets the default style applied to the row cells of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to apply to the row cells of the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.RowTemplate">
      <summary>Gets or sets the row that represents the template for all the rows in the control.</summary>
      <exception cref="T:System.InvalidOperationException">The specified row when setting this property has its <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property set.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewRow" /> representing the row template.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ScrollBars">
      <summary>Gets or sets the type of scroll bars to display for the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.ScrollBars" /> value.</exception>
      <exception cref="T:System.InvalidOperationException">The value of this property cannot be set because the <see cref="T:System.Windows.Forms.DataGridView" /> is unable to scroll due to a cell change that cannot be committed or canceled.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ScrollBars" /> values. The default is <see cref="F:System.Windows.Forms.ScrollBars.Both" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.SelectedCells">
      <summary>Gets the collection of cells selected by the user.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" /> that represents the cells selected by the user.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.SelectedColumns">
      <summary>Gets the collection of columns selected by the user.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewSelectedColumnCollection" /> that represents the columns selected by the user.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.SelectedRows">
      <summary>Gets the collection of rows selected by the user.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" /> that contains the rows selected by the user.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.SelectionMode">
      <summary>Gets or sets a value indicating how the cells of the <see cref="T:System.Windows.Forms.DataGridView" /> can be selected.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewSelectionMode" /> value.</exception>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect" /> and the <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property of one or more columns is set to <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewSelectionMode" /> values. The default is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ShowCellErrors">
      <summary>Gets or sets a value indicating whether to show cell errors.</summary>
      <returns>
        <see langword="true" /> if a red glyph will appear in a cell that fails validation; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ShowCellToolTips">
      <summary>Gets or sets a value indicating whether or not ToolTips will show when the mouse pointer pauses on a cell or the user navigates to the cell using the keyboard.</summary>
      <returns>
        <see langword="true" /> if cell ToolTips are enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ShowEditingIcon">
      <summary>Gets or sets a value indicating whether or not the editing glyph is visible in the row header of the cell being edited.</summary>
      <returns>
        <see langword="true" /> if the editing glyph is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.ShowRowErrors">
      <summary>Gets or sets a value indicating whether row headers will display error glyphs for each row that contains a data entry error.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.DataGridViewRow" /> indicates there is an error; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.SortedColumn">
      <summary>Gets the column by which the <see cref="T:System.Windows.Forms.DataGridView" /> contents are currently sorted.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> by which the <see cref="T:System.Windows.Forms.DataGridView" /> contents are currently sorted.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.SortOrder">
      <summary>Gets a value indicating whether the items in the <see cref="T:System.Windows.Forms.DataGridView" /> control are sorted in ascending or descending order, or are not sorted.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.SortOrder" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.StandardTab">
      <summary>Gets or sets a value indicating whether the TAB key moves the focus to the next control in the tab order rather than moving focus to the next cell in the control.</summary>
      <returns>
        <see langword="true" /> if the TAB key moves the focus to the next control in the tab order; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.Text">
      <summary>Gets or sets the text associated with the control.</summary>
      <returns>The text associated with the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.TopLeftHeaderCell">
      <summary>Gets or sets the header cell located in the upper left corner of the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" /> located at the upper left corner of the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.UserSetCursor">
      <summary>Gets the default or user-specified value of the <see cref="P:System.Windows.Forms.Control.Cursor" /> property.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Cursor" /> representing the normal value of the <see cref="P:System.Windows.Forms.Control.Cursor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.VerticalScrollBar">
      <summary>Gets the vertical scroll bar of the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ScrollBar" /> representing the vertical scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.VerticalScrollingOffset">
      <summary>Gets the number of pixels by which the control is scrolled vertically.</summary>
      <returns>The number of pixels by which the control is scrolled vertically.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.VirtualMode">
      <summary>Gets or sets a value indicating whether you have provided your own data-management operations for the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.DataGridView" /> uses data-management operations that you provide; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject">
      <summary>Provides information about the <see cref="T:System.Windows.Forms.DataGridView" /> control to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.#ctor(System.Windows.Forms.DataGridView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridView" /> that owns the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetChild(System.Int32)">
      <summary>Returns the child accessible object corresponding to the specified index.</summary>
      <param name="index">The zero-based index of the child accessible object.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the child accessible object corresponding to the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetChildCount">
      <summary>Returns the number of child objects belonging to an accessible object.</summary>
      <returns>The number of child objects belonging to the accessible object.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetFocused">
      <summary>Returns the accessible object of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that has the keyboard focus.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that specifies the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that has the current focus, or <see langword="null" /> if the <see cref="T:System.Windows.Forms.DataGridView" /> does not have focus.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetSelected">
      <summary>Returns an <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the selected cells in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the currently selected cells, or <see langword="null" /> if no cells are selected or if the object itself does not have focus.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.HitTest(System.Int32,System.Int32)">
      <summary>Retrieves the child object at the specified screen coordinates.</summary>
      <param name="x">The horizontal screen coordinate.</param>
      <param name="y">The vertical screen coordinate.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents an object at the given screen coordinates, or <see langword="null" /> if no object is at the specified location.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
      <summary>Navigates to another accessible object.</summary>
      <param name="navigationDirection">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the object positioned at the specified <see cref="T:System.Windows.Forms.AccessibleNavigation" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.Role">
      <summary>Gets the role of the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject" />.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.Table" /> value.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection">
      <summary>Represents a collection of controls contained on a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.#ctor(System.Windows.Forms.DataGridView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridView" /> that owns the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.Clear">
      <summary>Removes all controls from the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.CopyTo(System.Windows.Forms.Control[],System.Int32)">
      <summary>Copies the contents of the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" /> into a <see cref="T:System.Windows.Forms.Control" /> array, starting at the specified index of the target array.</summary>
      <param name="array">The one-dimensional <see cref="T:System.Windows.Forms.Control" /> array that is the destination of the elements copied from the current collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the source collection is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The type of the source element cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.Insert(System.Int32,System.Windows.Forms.Control)">
      <summary>Inserts the specified <see cref="T:System.Windows.Forms.Control" /> into the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" /> at the specified index.</summary>
      <param name="index">The zero-based index at which to insert <paramref name="value" />.</param>
      <param name="value">The <see cref="T:System.Windows.Forms.Control" /> to insert into the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero or greater than or equal to the current number of controls in the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewControlCollection.Remove(System.Windows.Forms.Control)">
      <summary>Removes the specified control from the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.Control" /> to remove from the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" />.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject">
      <summary>Provides information about a row of <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" /> objects to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject" /> class without setting the <see cref="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner" /> property.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.#ctor(System.Windows.Forms.DataGridView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject" /> class, setting the <see cref="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner" /> property to the specified value.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridView" /> that owns the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.GetChild(System.Int32)">
      <summary>Returns the child accessible object corresponding to the specified index.</summary>
      <param name="index">The zero-based index of the accessible child.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner" /> property is not set.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the column header at the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.GetChildCount">
      <summary>Returns the number of children belonging to the accessible object.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner" /> property is not set.</exception>
      <returns>The number of child accessible objects belonging to the accessible object.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
      <summary>Navigates to another accessible object.</summary>
      <param name="navigationDirection">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner" /> property is not set.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the object at the specified <see cref="T:System.Windows.Forms.AccessibleNavigation" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Bounds">
      <summary>Gets the location and size of the accessible object.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner" /> property is not set.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Name">
      <summary>Gets the name of the accessible object.</summary>
      <returns>The string "Top Row".</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridView" /> that contains the row of column headers.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner" /> property has already been set.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridView" /> that contains the row of column headers.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Parent">
      <summary>Gets the parent of the <see cref="T:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner" /> property is not set.</exception>
      <returns>An <see cref="T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject" /> that represents the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Role">
      <summary>Gets the role of the accessible object.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.Row" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Value">
      <summary>Gets the value of an accessible object.</summary>
      <returns>The string "Top Row".</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridView.HitTestInfo">
      <summary>Contains information, such as the row and column indexes, about a specific coordinate pair in the <see cref="T:System.Windows.Forms.DataGridView" /> control. This class cannot be inherited.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridView.HitTestInfo.Nowhere">
      <summary>Specifies that the point is not on a cell or cell header. This field is read-only.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.HitTestInfo.Equals(System.Object)">
      <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</summary>
      <param name="value">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</param>
      <returns>
        <see langword="true" /> if <paramref name="value" /> is a <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" /> in which the values of the <see cref="P:System.Windows.Forms.DataGridView.HitTestInfo.Type" />, <see cref="P:System.Windows.Forms.DataGridView.HitTestInfo.RowIndex" />, and <see cref="P:System.Windows.Forms.DataGridView.HitTestInfo.ColumnIndex" /> properties are the same as the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.HitTestInfo.GetHashCode">
      <summary>Serves as a hash function for a particular type.</summary>
      <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridView.HitTestInfo.ToString">
      <summary>Returns a string that represents a <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</summary>
      <returns>A string that represents a <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.HitTestInfo.ColumnIndex">
      <summary>Gets the index of the column that contains the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</summary>
      <returns>The index of the column in the <see cref="T:System.Windows.Forms.DataGridView" /> that contains the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.HitTestInfo.ColumnX">
      <summary>Gets the x-coordinate of the beginning of the column that contains the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</summary>
      <returns>The x-coordinate of the column in the <see cref="T:System.Windows.Forms.DataGridView" /> that contains the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.HitTestInfo.RowIndex">
      <summary>Gets the index of the row that contains the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</summary>
      <returns>The index of the row in the <see cref="T:System.Windows.Forms.DataGridView" /> that contains the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.HitTestInfo.RowY">
      <summary>Gets the y-coordinate of the top of the row that contains the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</summary>
      <returns>The y-coordinate of the row in the <see cref="T:System.Windows.Forms.DataGridView" /> that contains the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridView.HitTestInfo.Type">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridViewHitTestType" /> that indicates which part of the <see cref="T:System.Windows.Forms.DataGridView" /> the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" /> belong to.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewHitTestType" /> value that indicates the control part at the coordinates described by the current <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle">
      <summary>Contains border styles for the cells in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Equals(System.Object)">
      <summary>Determines whether the specified object is equal to the current <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" />.</summary>
      <param name="other">An <see cref="T:System.Object" /> to be compared.</param>
      <returns>
        <see langword="true" /> if <paramref name="other" /> is a <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> and the values for the <see cref="P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Top" />, <see cref="P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Bottom" />, <see cref="P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Left" />, and <see cref="P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Right" /> properties are equal to their counterpart in the current <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.GetHashCode">
      <summary>Serves as a hash function for a particular type.</summary>
      <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.System#ICloneable#Clone">
      <summary>Creates a new object that is a copy of the current instance.</summary>
      <returns>A copy of the current instance.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewAdvancedBorderStyle.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" />.</summary>
      <returns>A string that represents the <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.All">
      <summary>Gets or sets the border style for all of the borders of a cell.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" /> values.</exception>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.NotSet" />.  
  
 -or-  
  
 The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetDouble" />, <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetPartial" />, or <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.InsetDouble" /> and this <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> instance was retrieved through the <see cref="P:System.Windows.Forms.DataGridView.AdvancedCellBorderStyle" /> property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Bottom">
      <summary>Gets or sets the style for the bottom border of a cell.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" /> values.</exception>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.NotSet" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Left">
      <summary>Gets the style for the left border of a cell.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" />.</exception>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.NotSet" />.  
  
 -or-  
  
 The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.InsetDouble" /> or <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetDouble" /> and this <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> instance has an associated <see cref="T:System.Windows.Forms.DataGridView" /> control with a <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property value of <see langword="true" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Right">
      <summary>Gets the style for the right border of a cell.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" />.</exception>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.NotSet" />.  
  
 -or-  
  
 The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.InsetDouble" /> or <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetDouble" /> and this <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> instance has an associated <see cref="T:System.Windows.Forms.DataGridView" /> control with a <see cref="P:System.Windows.Forms.Control.RightToLeft" /> property value of <see langword="false" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewAdvancedBorderStyle.Top">
      <summary>Gets the style for the top border of a cell.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" />.</exception>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is <see cref="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.NotSet" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle">
      <summary>Specifies the border styles that can be applied to the cells of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Inset">
      <summary>A single-line sunken border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.InsetDouble">
      <summary>A double-line sunken border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.None">
      <summary>No borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.NotSet">
      <summary>The border is not set.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Outset">
      <summary>A single-line raised border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetDouble">
      <summary>A double-line raised border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetPartial">
      <summary>A single-line border containing a raised portion.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Single">
      <summary>A single-line border.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode">
      <summary>Defines values for specifying how the width of a column is adjusted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells">
      <summary>The column width adjusts to fit the contents of all cells in the column, including the header cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader">
      <summary>The column width adjusts to fit the contents of all cells in the column, excluding the header cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader">
      <summary>The column width adjusts to fit the contents of the column header cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells">
      <summary>The column width adjusts to fit the contents of all cells in the column that are in rows currently displayed onscreen, including the header cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader">
      <summary>The column width adjusts to fit the contents of all cells in the column that are in rows currently displayed onscreen, excluding the header cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill">
      <summary>The column width adjusts so that the widths of all columns exactly fills the display area of the control, requiring horizontal scrolling only to keep column widths above the <see cref="P:System.Windows.Forms.DataGridViewColumn.MinimumWidth" /> property values. Relative column widths are determined by the relative <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> property values.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.None">
      <summary>The column width does not automatically adjust.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet">
      <summary>The sizing behavior of the column is inherited from the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" /> property.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeColumnModeChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.#ctor(System.Windows.Forms.DataGridViewColumn,System.Windows.Forms.DataGridViewAutoSizeColumnMode)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs" /> class.</summary>
      <param name="dataGridViewColumn">The column with the <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property that changed.</param>
      <param name="previousMode">The previous <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> value of the column's <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.Column">
      <summary>Gets the column with the <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property that changed.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> with the <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property that changed.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.PreviousMode">
      <summary>Gets the previous value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property of the column.</summary>
      <returns>An <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> value representing the previous value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property of the <see cref="P:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.Column" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeColumnModeChanged" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode">
      <summary>Defines values for specifying how the widths of columns are adjusted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells">
      <summary>The column widths adjust to fit the contents of all cells in the columns, including header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader">
      <summary>The column widths adjust to fit the contents of all cells in the columns, excluding header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.ColumnHeader">
      <summary>The column widths adjust to fit the contents of the column header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells">
      <summary>The column widths adjust to fit the contents of all cells in the columns that are in rows currently displayed onscreen, including header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCellsExceptHeader">
      <summary>The column widths adjust to fit the contents of all cells in the columns that are in rows currently displayed onscreen, excluding header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill">
      <summary>The column widths adjust so that the widths of all columns exactly fill the display area of the control, requiring horizontal scrolling only to keep column widths above the <see cref="P:System.Windows.Forms.DataGridViewColumn.MinimumWidth" /> property values. Relative column widths are determined by the relative <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> property values.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None">
      <summary>The column widths do not automatically adjust.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeColumnsModeChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.#ctor(System.Windows.Forms.DataGridViewAutoSizeColumnMode[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs" /> class.</summary>
      <param name="previousModes">An array of <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> values representing the previous <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property values of each column.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.PreviousModes">
      <summary>Gets an array of the previous values of the column <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> properties.</summary>
      <returns>An array of <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> values representing the previous values of the column <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> properties.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeColumnsModeChanged" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs">
      <summary>Provides data for the <see cref="T:System.Windows.Forms.DataGridView" /><see cref="E:System.Windows.Forms.DataGridView.AutoSizeRowsModeChanged" /> and <see cref="E:System.Windows.Forms.DataGridView.RowHeadersWidthSizeModeChanged" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs.#ctor(System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" /> class.</summary>
      <param name="previousModeAutoSized">
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property was previously set to any <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> value other than <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.None" /> or the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" /> property was previously set to any <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> value other than <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing" /> or <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing" />; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs.PreviousModeAutoSized">
      <summary>Gets a value specifying whether the <see cref="T:System.Windows.Forms.DataGridView" /> was previously set to automatically resize.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property was previously set to any <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> value other than <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.None" /> or the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" /> property was previously set to any <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> value other than <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing" /> or <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeModeEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeRowsModeChanged" /> or <see cref="E:System.Windows.Forms.DataGridView.RowHeadersWidthSizeModeChanged" /> events of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeRowMode">
      <summary>Defines values for specifying how the height of a row is adjusted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowMode.AllCells">
      <summary>The row height adjusts to fit the contents of all cells in the row, including the header cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowMode.AllCellsExceptHeader">
      <summary>The row height adjusts to fit the contents of all cells in the row, excluding the header cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowMode.RowHeader">
      <summary>The row height adjusts to fit the contents of the row header.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode">
      <summary>Defines values for specifying how the heights of rows are adjusted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells">
      <summary>The row heights adjust to fit the contents of all cells in the rows, including header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders">
      <summary>The row heights adjust to fit the contents of all cells in the rows, excluding header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders">
      <summary>The row heights adjust to fit the contents of the row header.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells">
      <summary>The row heights adjust to fit the contents of all cells in rows currently displayed onscreen, including header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCellsExceptHeaders">
      <summary>The row heights adjust to fit the contents of all cells in rows currently displayed onscreen, excluding header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders">
      <summary>The row heights adjust to fit the contents of the row headers currently displayed onscreen.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.None">
      <summary>The row heights do not automatically adjust.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewBand">
      <summary>Represents a linear collection of elements in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewBand.Clone">
      <summary>Creates an exact copy of this band.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewBand" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewBand.Dispose">
      <summary>Releases all resources used by the <see cref="T:System.Windows.Forms.DataGridViewBand" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewBand.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.DataGridViewBand" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewBand.Finalize">
      <summary>Releases the resources associated with the band.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewBand.OnDataGridViewChanged">
      <summary>Called when the band is associated with a different <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewBand.ToString">
      <summary>Returns a string that represents the current band.</summary>
      <returns>A <see cref="T:System.String" /> that represents the current <see cref="T:System.Windows.Forms.DataGridViewBand" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.ContextMenuStrip">
      <summary>Gets or sets the shortcut menu for the band.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with the current <see cref="T:System.Windows.Forms.DataGridViewBand" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle">
      <summary>Gets or sets the default cell style of the band.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> associated with the <see cref="T:System.Windows.Forms.DataGridViewBand" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.DefaultHeaderCellType">
      <summary>Gets or sets the run-time type of the default header cell.</summary>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is not a <see cref="T:System.Type" /> representing <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" /> or a derived type.</exception>
      <returns>A <see cref="T:System.Type" /> that describes the run-time class of the object used as the default header cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.Displayed">
      <summary>Gets a value indicating whether the band is currently displayed onscreen.</summary>
      <returns>
        <see langword="true" /> if the band is currently onscreen; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.Frozen">
      <summary>Gets or sets a value indicating whether the band will move when a user scrolls through the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>
        <see langword="true" /> if the band cannot be scrolled from view; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.HasDefaultCellStyle">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property has been set.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property has been set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.HeaderCellCore">
      <summary>Gets or sets the header cell of the <see cref="T:System.Windows.Forms.DataGridViewBand" />.</summary>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is not a <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" /> and this <see cref="T:System.Windows.Forms.DataGridViewBand" /> instance is of type <see cref="T:System.Windows.Forms.DataGridViewRow" />.  
  
 -or-  
  
 The specified value when setting this property is not a <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" /> and this <see cref="T:System.Windows.Forms.DataGridViewBand" /> instance is of type <see cref="T:System.Windows.Forms.DataGridViewColumn" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" /> representing the header cell of the <see cref="T:System.Windows.Forms.DataGridViewBand" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.Index">
      <summary>Gets the relative position of the band within the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <returns>The zero-based position of the band in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" /> or <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" /> that it is contained within. The default is -1, indicating that there is no associated <see cref="T:System.Windows.Forms.DataGridView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.InheritedStyle">
      <summary>Gets the cell style in effect for the current band, taking into account style inheritance.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> associated with the <see cref="T:System.Windows.Forms.DataGridViewBand" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.IsRow">
      <summary>Gets a value indicating whether the band represents a row.</summary>
      <returns>
        <see langword="true" /> if the band represents a <see cref="T:System.Windows.Forms.DataGridViewRow" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.ReadOnly">
      <summary>Gets or sets a value indicating whether the user can edit the band's cells.</summary>
      <exception cref="T:System.InvalidOperationException">When setting this property, this <see cref="T:System.Windows.Forms.DataGridViewBand" /> instance is a shared <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <returns>
        <see langword="true" /> if the user cannot edit the band's cells; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.Resizable">
      <summary>Gets or sets a value indicating whether the band can be resized in the user interface (UI).</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewTriState" /> values. The default is <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.Selected">
      <summary>Gets or sets a value indicating whether the band is in a selected user interface (UI) state.</summary>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property is <see langword="true" />, but the band has not been added to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 This property is being set on a shared <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <returns>
        <see langword="true" /> if the band is selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.Tag">
      <summary>Gets or sets the object that contains data to associate with the band.</summary>
      <returns>An <see cref="T:System.Object" /> that contains information associated with the band. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBand.Visible">
      <summary>Gets or sets a value indicating whether the band is visible to the user.</summary>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property is <see langword="false" /> and the band is the row for new records.</exception>
      <returns>
        <see langword="true" /> if the band is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewBindingCompleteEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.DataBindingComplete" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewBindingCompleteEventArgs.#ctor(System.ComponentModel.ListChangedType)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewBindingCompleteEventArgs" /> class.</summary>
      <param name="listChangedType">One of the <see cref="T:System.ComponentModel.ListChangedType" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewBindingCompleteEventArgs.ListChangedType">
      <summary>Gets a value specifying how the list changed.</summary>
      <returns>One of the <see cref="T:System.ComponentModel.ListChangedType" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewBindingCompleteEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.DataBindingComplete" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewBindingCompleteEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewButtonCell">
      <summary>Displays a button-like user interface (UI) for use in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewButtonCell" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewButtonCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridViewButtonCell" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridViewButtonCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's error icon, if one is displayed; otherwise, <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.GetValue(System.Int32)">
      <summary>Retrieves the text associated with the button.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The value of the <see cref="T:System.Windows.Forms.DataGridViewButtonCell" /> or the <see cref="P:System.Windows.Forms.DataGridViewButtonColumn.Text" /> value of the owning column if <see cref="P:System.Windows.Forms.DataGridViewButtonCell.UseColumnTextForButtonValue" /> is <see langword="true" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Indicates whether a row is unshared if a key is pressed while the focus is on a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>
        <see langword="true" /> if the user pressed the SPACE key without modifier keys; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Indicates whether a row is unshared when a key is released while the focus is on a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>
        <see langword="true" /> if the user released the SPACE key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether a row will be unshared when the mouse button is held down while the pointer is on a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <returns>
        <see langword="true" /> if the user pressed the left mouse button; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.MouseEnterUnsharesRow(System.Int32)">
      <summary>Indicates whether a row will be unshared when the mouse pointer moves over a cell in the row.</summary>
      <param name="rowIndex">The row index of the current cell, or -1 if the cell is not owned by a row.</param>
      <returns>
        <see langword="true" /> if the cell was the last cell receiving a mouse click; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.MouseLeaveUnsharesRow(System.Int32)">
      <summary>Indicates whether a row will be unshared when the mouse pointer leaves the row.</summary>
      <param name="rowIndex">The row index of the current cell, or -1 if the cell is not owned by a row.</param>
      <returns>
        <see langword="true" /> if the button displayed by the cell is in the pressed state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether a row will be unshared when the mouse button is released while the pointer is on a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <returns>
        <see langword="true" /> if the left mouse button was released; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.OnKeyDown(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Called when a character key is pressed while the focus is on the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The row index of the current cell, or -1 if the cell is not owned by a row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.OnKeyUp(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Called when a character key is released while the focus is on the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The row index of the current cell, or -1 if the cell is not owned by a row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.OnLeave(System.Int32,System.Boolean)">
      <summary>Called when the focus moves from the cell.</summary>
      <param name="rowIndex">The row index of the current cell, or -1 if the cell is not owned by a row.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if focus left the cell as a result of user mouse click; <see langword="false" /> if focus left due to a programmatic cell change.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse button is held down while the pointer is on the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.OnMouseLeave(System.Int32)">
      <summary>Called when the mouse pointer moves out of the cell.</summary>
      <param name="rowIndex">The row index of the current cell, or -1 if the cell is not owned by a row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse pointer moves while it is over the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse button is released while the pointer is on the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewButtonCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the cell.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the cell that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="elementState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the cell that is being painted.</param>
      <param name="formattedValue">The formatted data of the cell that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.ToString">
      <summary>Returns the string representation of the cell.</summary>
      <returns>A <see cref="T:System.String" /> that represents the current cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonCell.EditType">
      <summary>Gets the type of the cell's hosted editing control.</summary>
      <returns>The <see cref="T:System.Type" /> of the underlying editing control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonCell.FlatStyle">
      <summary>Gets or sets the style determining the button's appearance.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.FlatStyle" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.FlatStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonCell.FormattedValueType">
      <summary>Gets the type of the formatted value associated with the cell.</summary>
      <returns>A <see cref="T:System.Type" /> representing the type of the cell's formatted value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonCell.UseColumnTextForButtonValue">
      <summary>Gets or sets a value indicating whether the owning column's text will appear on the button displayed by the cell.</summary>
      <returns>
        <see langword="true" /> if the value of the <see cref="P:System.Windows.Forms.DataGridViewCell.Value" /> property will automatically match the value of the <see cref="P:System.Windows.Forms.DataGridViewButtonColumn.Text" /> property of the owning column; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonCell.ValueType">
      <summary>Gets or sets the data type of the values in the cell.</summary>
      <returns>A <see cref="T:System.Type" /> representing the data type of the value in the cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject">
      <summary>Provides information about a <see cref="T:System.Windows.Forms.DataGridViewButtonCell" /> to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DoDefaultAction">
      <summary>Performs the default action of the <see cref="T:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Windows.Forms.DataGridViewButtonCell" /> returned by the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property does not belong to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridViewButtonCell" /> returned by the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property belongs to a shared row.

-or-

In .NET 5 and later versions, the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.GetChildCount">
      <summary>Gets the number of child accessible objects that belong to the <see cref="T:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject" />.</summary>
      <returns>The value -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DefaultAction">
      <summary>Gets a <see cref="T:System.String" /> that represents the default action of the <see cref="T:System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject" />.</summary>
      <returns>The <see cref="T:System.String" /> "Press" if the <see cref="P:System.Windows.Forms.DataGridViewCell.ReadOnly" /> property is set to <see langword="false" />; otherwise, an empty <see cref="T:System.String" /> ("").</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewButtonColumn">
      <summary>Hosts a collection of <see cref="T:System.Windows.Forms.DataGridViewButtonCell" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonColumn.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewButtonColumn" /> class to the default state.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonColumn.Clone">
      <summary>Creates an exact copy of this column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewButtonColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewButtonColumn" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewButtonColumn.ToString">
      <summary>Gets a string that describes the column.</summary>
      <returns>A <see cref="T:System.String" /> that describes the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonColumn.CellTemplate">
      <summary>Gets or sets the template used to create new cells.</summary>
      <exception cref="T:System.InvalidCastException">The specified value when setting this property could not be cast to a <see cref="T:System.Windows.Forms.DataGridViewButtonCell" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell" /> that all other cells in the column are modeled after.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonColumn.DefaultCellStyle">
      <summary>Gets or sets the column's default cell style.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied as the default style.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonColumn.FlatStyle">
      <summary>Gets or sets the flat-style appearance of the button cells in the column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewButtonColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.FlatStyle" /> value indicating the appearance of the buttons in the column. The default is <see cref="F:System.Windows.Forms.FlatStyle.Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonColumn.Text">
      <summary>Gets or sets the default text displayed on the button cell.</summary>
      <exception cref="T:System.InvalidOperationException">When setting this property, the value of the <see cref="P:System.Windows.Forms.DataGridViewButtonColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.String" /> that contains the text. The default is <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewButtonColumn.UseColumnTextForButtonValue">
      <summary>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.DataGridViewButtonColumn.Text" /> property value is displayed as the button text for cells in this column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewButtonColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.DataGridViewButtonColumn.Text" /> property value is displayed on buttons in the column; <see langword="false" /> if the <see cref="P:System.Windows.Forms.DataGridViewCell.FormattedValue" /> property value of each cell is displayed on its button. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCell">
      <summary>Represents an individual cell in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.AdjustCellBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
      <summary>Modifies the input cell border style according to the specified criteria.</summary>
      <param name="dataGridViewAdvancedBorderStyleInput">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the cell border style to modify.</param>
      <param name="dataGridViewAdvancedBorderStylePlaceholder">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that is used to store intermediate changes to the cell border style.</param>
      <param name="singleVerticalBorderAdded">
        <see langword="true" /> to add a vertical border to the cell; otherwise, <see langword="false" />.</param>
      <param name="singleHorizontalBorderAdded">
        <see langword="true" /> to add a horizontal border to the cell; otherwise, <see langword="false" />.</param>
      <param name="isFirstDisplayedColumn">
        <see langword="true" /> if the hosting cell is in the first visible column; otherwise, <see langword="false" />.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> if the hosting cell is in the first visible row; otherwise, <see langword="false" />.</param>
      <returns>The modified <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.BorderWidths(System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
      <summary>Returns a <see cref="T:System.Drawing.Rectangle" /> that represents the widths of all the cell margins.</summary>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that the margins are to be calculated for.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the widths of all the cell margins.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.ClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Indicates whether the cell's row will be unshared when the cell is clicked.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> containing the data passed to the <see cref="M:System.Windows.Forms.DataGridViewCell.OnClick(System.Windows.Forms.DataGridViewCellEventArgs)" /> method.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.ContentClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Indicates whether the cell's row will be unshared when the cell's content is clicked.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> containing the data passed to the <see cref="M:System.Windows.Forms.DataGridViewCell.OnContentClick(System.Windows.Forms.DataGridViewCellEventArgs)" /> method.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.ContentDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Indicates whether the cell's row will be unshared when the cell's content is double-clicked.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> containing the data passed to the <see cref="M:System.Windows.Forms.DataGridViewCell.OnContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)" /> method.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DetachEditingControl">
      <summary>Removes the cell's editing control from the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <exception cref="T:System.InvalidOperationException">This cell is not associated with a <see cref="T:System.Windows.Forms.DataGridView" />.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.EditingControl" /> property of the associated <see cref="T:System.Windows.Forms.DataGridView" /> has a value of <see langword="null" />. This is the case, for example, when the control is not in edit mode.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.Dispose">
      <summary>Releases all resources used by the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.DataGridViewCell" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Indicates whether the cell's row will be unshared when the cell is double-clicked.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> containing the data passed to the <see cref="M:System.Windows.Forms.DataGridViewCell.OnDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)" /> method.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.EnterUnsharesRow(System.Int32,System.Boolean)">
      <summary>Indicates whether the parent row will be unshared when the focus moves to the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if a user action moved focus to the cell; <see langword="false" /> if a programmatic operation moved focus to the cell.</param>
      <returns>
        <see langword="true" /> if the row will be unshared; otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.Finalize">
      <summary>Releases the unmanaged resources and performs other cleanup operations before the <see cref="T:System.Windows.Forms.DataGridViewCell" /> is reclaimed by garbage collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetClipboardContent(System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)">
      <summary>Retrieves the formatted value of the cell to copy to the <see cref="T:System.Windows.Forms.Clipboard" />.</summary>
      <param name="rowIndex">The zero-based index of the row containing the cell.</param>
      <param name="firstCell">
        <see langword="true" /> to indicate that the cell is in the first column of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="lastCell">
        <see langword="true" /> to indicate that the cell is the last column of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="inFirstRow">
        <see langword="true" /> to indicate that the cell is in the first row of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="inLastRow">
        <see langword="true" /> to indicate that the cell is in the last row of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="format">The current format string of the cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than 0 or greater than or equal to the number of rows in the control.</exception>
      <exception cref="T:System.InvalidOperationException">The value of the cell's <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property is <see langword="null" />.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <exception cref="T:System.Exception">Formatting failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event of the <see cref="T:System.Windows.Forms.DataGridView" /> control or the handler set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the value of the cell to copy to the <see cref="T:System.Windows.Forms.Clipboard" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetContentBounds(System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area using a default <see cref="T:System.Drawing.Graphics" /> and cell style currently in effect for the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified <paramref name="rowIndex" /> is less than 0 or greater than the number of rows in the control minus 1.</exception>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetEditedFormattedValue(System.Int32,System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Returns the current, formatted value of the cell, regardless of whether the cell is in edit mode and the value has not been committed.</summary>
      <param name="rowIndex">The row index of the cell.</param>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the data error context.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified <paramref name="rowIndex" /> is less than 0 or greater than the number of rows in the control minus 1.</exception>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <exception cref="T:System.Exception">Formatting failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event of the <see cref="T:System.Windows.Forms.DataGridView" /> control or the handler set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>The current, formatted value of the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's error icon, if one is displayed; otherwise, <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetErrorText(System.Int32)">
      <summary>Returns a string that represents the error for the cell.</summary>
      <param name="rowIndex">The row index of the cell.</param>
      <returns>A string that describes the error for the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetFormattedValue(System.Object,System.Int32,System.Windows.Forms.DataGridViewCellStyle@,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter,System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Gets the value of the cell as formatted for display.</summary>
      <param name="value">The value to be formatted.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> in effect for the cell.</param>
      <param name="valueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> associated with the value type that provides custom conversion to the formatted value type, or <see langword="null" /> if no such custom conversion is needed.</param>
      <param name="formattedValueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> associated with the formatted value type that provides custom conversion from the value type, or <see langword="null" /> if no such custom conversion is needed.</param>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values describing the context in which the formatted value is needed.</param>
      <exception cref="T:System.Exception">Formatting failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event of the <see cref="T:System.Windows.Forms.DataGridView" /> control or the handler set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>The formatted value of the cell or <see langword="null" /> if the cell does not belong to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetInheritedContextMenuStrip(System.Int32)">
      <summary>Gets the inherited shortcut menu for the current cell.</summary>
      <param name="rowIndex">The row index of the current cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the cell is not <see langword="null" /> and the specified <paramref name="rowIndex" /> is less than 0 or greater than the number of rows in the control minus 1.</exception>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ContextMenuStrip" /> if the parent <see cref="T:System.Windows.Forms.DataGridView" />, <see cref="T:System.Windows.Forms.DataGridViewRow" />, or <see cref="T:System.Windows.Forms.DataGridViewColumn" /> has a <see cref="T:System.Windows.Forms.ContextMenuStrip" /> assigned; otherwise, <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetInheritedState(System.Int32)">
      <summary>Returns a value indicating the current state of the cell as inherited from the state of its row and column.</summary>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <exception cref="T:System.ArgumentException">The cell is not contained within a <see cref="T:System.Windows.Forms.DataGridView" /> control and <paramref name="rowIndex" /> is not -1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is not the index of the row containing this cell.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The cell is contained within a <see cref="T:System.Windows.Forms.DataGridView" /> control and <paramref name="rowIndex" /> is outside the valid range of 0 to the number of rows in the control minus 1.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values representing the current state of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Boolean)">
      <summary>Gets the style applied to the cell.</summary>
      <param name="inheritedCellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be populated with the inherited cell style.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="includeColors">
        <see langword="true" /> to include inherited colors in the returned cell style; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.InvalidOperationException">The cell has no associated <see cref="T:System.Windows.Forms.DataGridView" />.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than 0, or greater than or equal to the number of rows in the parent <see cref="T:System.Windows.Forms.DataGridView" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that includes the style settings of the cell inherited from the cell's parent row, column, and <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetSize(System.Int32)">
      <summary>Gets the size of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="rowIndex" /> is -1</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the cell's dimensions.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.GetValue(System.Int32)">
      <summary>Gets the value of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the cell is not <see langword="null" /> and <paramref name="rowIndex" /> is less than 0 or greater than or equal to the number of rows in the parent <see cref="T:System.Windows.Forms.DataGridView" />.</exception>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the cell is not <see langword="null" /> and the value of the <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> property is less than 0, indicating that the cell is a row header cell.</exception>
      <returns>The value contained in the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Initializes the control used to edit the cell.</summary>
      <param name="rowIndex">The zero-based row index of the cell's location.</param>
      <param name="initialFormattedValue">An <see cref="T:System.Object" /> that represents the value displayed by the cell when editing is started.</param>
      <param name="dataGridViewCellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <exception cref="T:System.InvalidOperationException">There is no associated <see cref="T:System.Windows.Forms.DataGridView" /> or if one is present, it does not have an associated editing control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Indicates whether the parent row is unshared if the user presses a key while the focus is on the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs)">
      <summary>Determines if edit mode should be started based on the given key.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that represents the key that was pressed.</param>
      <returns>
        <see langword="true" /> if edit mode should be started; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.KeyPressUnsharesRow(System.Windows.Forms.KeyPressEventArgs,System.Int32)">
      <summary>Indicates whether a row will be unshared if a key is pressed while a cell in the row has focus.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Indicates whether the parent row is unshared when the user releases a key while the focus is on the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.LeaveUnsharesRow(System.Int32,System.Boolean)">
      <summary>Indicates whether a row will be unshared when the focus leaves a cell in the row.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if a user action moved focus to the cell; <see langword="false" /> if a programmatic operation moved focus to the cell.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MeasureTextHeight(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Int32,System.Windows.Forms.TextFormatFlags)">
      <summary>Gets the height, in pixels, of the specified text, given the specified characteristics.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to render the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> applied to the text.</param>
      <param name="maxWidth">The maximum width of the text.</param>
      <param name="flags">A bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values to apply to the text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="graphics" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="font" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="maxWidth" /> is less than 1.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="flags" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</exception>
      <returns>The height, in pixels, of the text.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MeasureTextHeight(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Int32,System.Windows.Forms.TextFormatFlags,System.Boolean@)">
      <summary>Gets the height, in pixels, of the specified text, given the specified characteristics. Also indicates whether the required width is greater than the specified maximum width.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to render the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> applied to the text.</param>
      <param name="maxWidth">The maximum width of the text.</param>
      <param name="flags">A bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values to apply to the text.</param>
      <param name="widthTruncated">Set to <see langword="true" /> if the required width of the text is greater than <paramref name="maxWidth" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="graphics" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="font" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="maxWidth" /> is less than 1.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="flags" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</exception>
      <returns>The height, in pixels, of the text.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MeasureTextPreferredSize(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Single,System.Windows.Forms.TextFormatFlags)">
      <summary>Gets the ideal height and width of the specified text given the specified characteristics.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to render the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> applied to the text.</param>
      <param name="maxRatio">The maximum width-to-height ratio of the block of text.</param>
      <param name="flags">A bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values to apply to the text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="graphics" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="font" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="maxRatio" /> is less than or equal to 0.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="flags" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the preferred height and width of the text.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MeasureTextSize(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags)">
      <summary>Gets the height and width of the specified text given the specified characteristics.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to render the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> applied to the text.</param>
      <param name="flags">A bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values to apply to the text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="graphics" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="font" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="flags" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the height and width of the text.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MeasureTextWidth(System.Drawing.Graphics,System.String,System.Drawing.Font,System.Int32,System.Windows.Forms.TextFormatFlags)">
      <summary>Gets the width, in pixels, of the specified text given the specified characteristics.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to render the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> applied to the text.</param>
      <param name="maxHeight">The maximum height of the text.</param>
      <param name="flags">A bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values to apply to the text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="graphics" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="font" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="maxHeight" /> is less than 1.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="flags" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</exception>
      <returns>The width, in pixels, of the text.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MouseClickUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether a row will be unshared if the user clicks a mouse button while the pointer is on a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MouseDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether a row will be unshared if the user double-clicks a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether a row will be unshared when the user holds down a mouse button while the pointer is on a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MouseEnterUnsharesRow(System.Int32)">
      <summary>Indicates whether a row will be unshared when the mouse pointer moves over a cell in the row.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MouseLeaveUnsharesRow(System.Int32)">
      <summary>Indicates whether a row will be unshared when the mouse pointer leaves the row.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MouseMoveUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether a row will be unshared when the mouse pointer moves over a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether a row will be unshared when the user releases a mouse button while the pointer is on a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
      <returns>
        <see langword="true" /> if the row will be unshared, otherwise, <see langword="false" />. The base <see cref="T:System.Windows.Forms.DataGridViewCell" /> class always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Called when the cell is clicked.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnContentClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Called when the cell's contents are clicked.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Called when the cell's contents are double-clicked.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnDataGridViewChanged">
      <summary>Called when the <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the cell changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Called when the cell is double-clicked.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnEnter(System.Int32,System.Boolean)">
      <summary>Called when the focus moves to a cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if a user action moved focus to the cell; <see langword="false" /> if a programmatic operation moved focus to the cell.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnKeyDown(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Called when a character key is pressed while the focus is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnKeyPress(System.Windows.Forms.KeyPressEventArgs,System.Int32)">
      <summary>Called when a key is pressed while the focus is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnKeyUp(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Called when a character key is released while the focus is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnLeave(System.Int32,System.Boolean)">
      <summary>Called when the focus moves from a cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if a user action moved focus from the cell; <see langword="false" /> if a programmatic operation moved focus from the cell.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the user clicks a mouse button while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the user double-clicks a mouse button while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the user holds down a mouse button while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnMouseEnter(System.Int32)">
      <summary>Called when the mouse pointer moves over a cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnMouseLeave(System.Int32)">
      <summary>Called when the mouse pointer leaves the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse pointer moves within a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the user releases a mouse button while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="cellState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="formattedValue">The formatted data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.PaintBorder(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
      <summary>Paints the border of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the border.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the area of the border that is being painted.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the current cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles of the border that is being painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.PaintErrorIcon(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.String)">
      <summary>Paints the error icon of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the border.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellValueBounds">The bounding <see cref="T:System.Drawing.Rectangle" /> that encloses the cell's content area.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.ParseFormattedValue(System.Object,System.Windows.Forms.DataGridViewCellStyle,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)">
      <summary>Converts a value formatted for display to an actual cell value.</summary>
      <param name="formattedValue">The display value of the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> in effect for the cell.</param>
      <param name="formattedValueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> for the display value type, or <see langword="null" /> to use the default converter.</param>
      <param name="valueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> for the cell value type, or <see langword="null" /> to use the default converter.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="cellStyle" /> is <see langword="null" />.</exception>
      <exception cref="T:System.FormatException">The <see cref="P:System.Windows.Forms.DataGridViewCell.FormattedValueType" /> property value is <see langword="null" />.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewCell.ValueType" /> property value is <see langword="null" />.  
  
 -or-  
  
 <paramref name="formattedValue" /> cannot be converted.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="formattedValue" /> is <see langword="null" />.  
  
 -or-  
  
 The type of <paramref name="formattedValue" /> does not match the type indicated by the <see cref="P:System.Windows.Forms.DataGridViewCell.FormattedValueType" /> property.</exception>
      <returns>The cell value.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
      <summary>Sets the location and size of the editing control hosted by a cell in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <param name="setLocation">
        <see langword="true" /> to have the control placed as specified by the other arguments; <see langword="false" /> to allow the control to place itself.</param>
      <param name="setSize">
        <see langword="true" /> to specify the size; <see langword="false" /> to allow the control to size itself.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that defines the cell bounds.</param>
      <param name="cellClip">The area that will be used to paint the editing control.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell being edited.</param>
      <param name="singleVerticalBorderAdded">
        <see langword="true" /> to add a vertical border to the cell; otherwise, <see langword="false" />.</param>
      <param name="singleHorizontalBorderAdded">
        <see langword="true" /> to add a horizontal border to the cell; otherwise, <see langword="false" />.</param>
      <param name="isFirstDisplayedColumn">
        <see langword="true" /> if the hosting cell is in the first visible column; otherwise, <see langword="false" />.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> if the hosting cell is in the first visible row; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.InvalidOperationException">The cell is not contained within a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.PositionEditingPanel(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
      <summary>Sets the location and size of the editing panel hosted by the cell, and returns the normal bounds of the editing control within the editing panel.</summary>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that defines the cell bounds.</param>
      <param name="cellClip">The area that will be used to paint the editing panel.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell being edited.</param>
      <param name="singleVerticalBorderAdded">
        <see langword="true" /> to add a vertical border to the cell; otherwise, <see langword="false" />.</param>
      <param name="singleHorizontalBorderAdded">
        <see langword="true" /> to add a horizontal border to the cell; otherwise, <see langword="false" />.</param>
      <param name="isFirstDisplayedColumn">
        <see langword="true" /> if the cell is in the first column currently displayed in the control; otherwise, <see langword="false" />.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> if the cell is in the first row currently displayed in the control; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.InvalidOperationException">The cell has not been added to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the normal bounds of the editing control within the editing panel.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.SetValue(System.Int32,System.Object)">
      <summary>Sets the value of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="value">The cell value to set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than 0 or greater than or equal to the number of rows in the parent <see cref="T:System.Windows.Forms.DataGridView" />.</exception>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0.</exception>
      <returns>
        <see langword="true" /> if the value has been set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.ToString">
      <summary>Returns a string that describes the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.AccessibilityObject">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> assigned to the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> assigned to the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.ColumnIndex">
      <summary>Gets the column index for this cell.</summary>
      <returns>The index of the column that contains the cell; -1 if the cell is not contained within a column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.ContentBounds">
      <summary>Gets the bounding rectangle that encloses the cell's content area.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The row containing the cell is a shared row.  
  
 -or-  
  
 The cell is a column header cell.</exception>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> property is less than 0, indicating that the cell is a row header cell.</exception>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.ContextMenuStrip">
      <summary>Gets or sets the shortcut menu associated with the cell.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.DefaultNewRowValue">
      <summary>Gets the default value for a cell in the row for new records.</summary>
      <returns>An <see cref="T:System.Object" /> representing the default value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.Displayed">
      <summary>Gets a value that indicates whether the cell is currently displayed on-screen.</summary>
      <returns>
        <see langword="true" /> if the cell is on-screen or partially on-screen; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.EditedFormattedValue">
      <summary>Gets the current, formatted value of the cell, regardless of whether the cell is in edit mode and the value has not been committed.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The row containing the cell is a shared row.  
  
 -or-  
  
 The cell is a column header cell.</exception>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <exception cref="T:System.Exception">Formatting failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event of the <see cref="T:System.Windows.Forms.DataGridView" /> control or the handler set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>The current, formatted value of the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.EditType">
      <summary>Gets the type of the cell's hosted editing control.</summary>
      <returns>A <see cref="T:System.Type" /> representing the <see cref="T:System.Windows.Forms.DataGridViewTextBoxEditingControl" /> type.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.ErrorIconBounds">
      <summary>Gets the bounds of the error icon for the cell.</summary>
      <exception cref="T:System.InvalidOperationException">The cell does not belong to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The row containing the cell is a shared row.  
  
 -or-  
  
 The cell is a column header cell.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the error icon for the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.ErrorText">
      <summary>Gets or sets the text describing an error condition associated with the cell.</summary>
      <returns>The text that describes an error condition associated with the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.FormattedValue">
      <summary>Gets the value of the cell as formatted for display.</summary>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The row containing the cell is a shared row.  
  
 -or-  
  
 The cell is a column header cell.</exception>
      <exception cref="T:System.Exception">Formatting failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event of the <see cref="T:System.Windows.Forms.DataGridView" /> control or the handler set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" />.</exception>
      <returns>The formatted value of the cell or <see langword="null" /> if the cell does not belong to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.FormattedValueType">
      <summary>Gets the type of the formatted value associated with the cell.</summary>
      <returns>A <see cref="T:System.Type" /> representing the type of the cell's formatted value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.Frozen">
      <summary>Gets a value indicating whether the cell is frozen.</summary>
      <returns>
        <see langword="true" /> if the cell is frozen; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.HasStyle">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.DataGridViewCell.Style" /> property has been set.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.DataGridViewCell.Style" /> property has been set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.InheritedState">
      <summary>Gets the current state of the cell as inherited from the state of its row and column.</summary>
      <exception cref="T:System.ArgumentException">The cell is not contained within a <see cref="T:System.Windows.Forms.DataGridView" /> control and the value of its <see cref="P:System.Windows.Forms.DataGridViewCell.RowIndex" /> property is not -1.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The cell is contained within a <see cref="T:System.Windows.Forms.DataGridView" /> control and the value of its <see cref="P:System.Windows.Forms.DataGridViewCell.RowIndex" /> property is -1.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values representing the current state of the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.InheritedStyle">
      <summary>Gets the style currently applied to the cell.</summary>
      <exception cref="T:System.InvalidOperationException">The cell does not belong to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The row containing the cell is a shared row.  
  
 -or-  
  
 The cell is a column header cell.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> currently applied to the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.IsInEditMode">
      <summary>Gets a value indicating whether this cell is currently being edited.</summary>
      <exception cref="T:System.InvalidOperationException">The row containing the cell is a shared row.</exception>
      <returns>
        <see langword="true" /> if the cell is in edit mode; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.OwningColumn">
      <summary>Gets the column that contains this cell.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> that contains the cell, or <see langword="null" /> if the cell is not in a column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.OwningRow">
      <summary>Gets the row that contains this cell.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow" /> that contains the cell, or <see langword="null" /> if the cell is not in a row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.PreferredSize">
      <summary>Gets the size, in pixels, of a rectangular area into which the cell can fit.</summary>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The row containing the cell is a shared row.  
  
 -or-  
  
 The cell is a column header cell.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> containing the height and width, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.ReadOnly">
      <summary>Gets or sets a value indicating whether the cell's data can be edited.</summary>
      <exception cref="T:System.InvalidOperationException">There is no owning row when setting this property.  
  
 -or-  
  
 The owning row is shared when setting this property.</exception>
      <returns>
        <see langword="true" /> if the cell's data cannot be edited; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.Resizable">
      <summary>Gets a value indicating whether the cell can be resized.</summary>
      <returns>
        <see langword="true" /> if the cell can be resized; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.RowIndex">
      <summary>Gets the index of the cell's parent row.</summary>
      <returns>The index of the row that contains the cell; -1 if there is no owning row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.Selected">
      <summary>Gets or sets a value indicating whether the cell has been selected.</summary>
      <exception cref="T:System.InvalidOperationException">There is no associated <see cref="T:System.Windows.Forms.DataGridView" /> when setting this property.  
  
 -or-  
  
 The owning row is shared when setting this property.</exception>
      <returns>
        <see langword="true" /> if the cell has been selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.Size">
      <summary>Gets the size of the cell.</summary>
      <exception cref="T:System.InvalidOperationException">The row containing the cell is a shared row.  
  
 -or-  
  
 The cell is a column header cell.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> set to the owning row's height and the owning column's width.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.Style">
      <summary>Gets or sets the style for the cell.</summary>
      <returns>The style associated with the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.Tag">
      <summary>Gets or sets the object that contains supplemental data about the cell.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the cell. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.ToolTipText">
      <summary>Gets or sets the ToolTip text associated with this cell.</summary>
      <returns>The ToolTip text associated with the cell. The default is <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.Value">
      <summary>Gets or sets the value associated with this cell.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="P:System.Windows.Forms.DataGridViewCell.RowIndex" /> is outside the valid range of 0 to the number of rows in the control minus 1.</exception>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCell.ColumnIndex" /> is less than 0, indicating that the cell is a row header cell.</exception>
      <returns>Gets or sets the data to be displayed by the cell. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.ValueType">
      <summary>Gets or sets the data type of the values in the cell.</summary>
      <returns>A <see cref="T:System.Type" /> representing the data type of the value in the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.Visible">
      <summary>Gets a value indicating whether the cell is in a row or column that has been hidden.</summary>
      <returns>
        <see langword="true" /> if the cell is visible; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject">
      <summary>Provides information about a <see cref="T:System.Windows.Forms.DataGridViewCell" /> to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> class without initializing the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> class, setting the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property to the specified <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DoDefaultAction">
      <summary>Performs the default action associated with the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.  
  
 -or-  
  
 The value of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> property is not <see langword="null" /> and the <see cref="P:System.Windows.Forms.DataGridViewCell.RowIndex" /> property of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> returned by the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is equal to -1.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetChild(System.Int32)">
      <summary>Returns the accessible object corresponding to the specified index.</summary>
      <param name="index">The zero-based index of the child accessible object.</param>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the accessible child corresponding to the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetChildCount">
      <summary>Returns the number of children that belong to the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The value 1 if the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that owns <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> is being edited; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetFocused">
      <summary>Returns the child accessible object that has keyboard focus.</summary>
      <returns>
        <see langword="null" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetSelected">
      <summary>Returns the child accessible object that is currently selected.</summary>
      <returns>
        <see langword="null" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
      <summary>Navigates to another accessible object.</summary>
      <param name="navigationDirection">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> that represents the <see cref="T:System.Windows.Forms.DataGridViewCell" /> at the specified <see cref="T:System.Windows.Forms.AccessibleNavigation" /> value.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)">
      <summary>Modifies the selection or moves the keyboard focus of the accessible object.</summary>
      <param name="flags">One of the <see cref="T:System.Windows.Forms.AccessibleSelection" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Bounds">
      <summary>Gets the location and size of the accessible object.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DefaultAction">
      <summary>Gets a string that describes the default action of the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The string "Edit".</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Name">
      <summary>Gets the name of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The name of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner">
      <summary>Gets or sets the cell that owns the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">When setting this property, the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property has already been set.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Parent">
      <summary>Gets the parent of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The parent of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Role">
      <summary>Gets the role of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.Cell" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.State">
      <summary>Gets the state of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.AccessibleStates" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Value">
      <summary>Gets or sets a string representing the formatted value of the owning cell.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.String" /> representation of the cell value.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellBorderStyle">
      <summary>Specifies the border styles that can be applied to the cells of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.Custom">
      <summary>A border that has been customized.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.None">
      <summary>No borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.Raised">
      <summary>A three-dimensional raised border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.RaisedHorizontal">
      <summary>A horizontal three-dimensional raised border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.RaisedVertical">
      <summary>A vertical three-dimensional raised border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.Single">
      <summary>A single line border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal">
      <summary>A horizontal single-line border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.SingleVertical">
      <summary>A vertical single-line border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.Sunken">
      <summary>A three-dimensional sunken border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.SunkenHorizontal">
      <summary>A horizontal three-dimensional sunken border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellBorderStyle.SunkenVertical">
      <summary>A vertical three-dimensional sunken border.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellCancelEventArgs">
      <summary>Provides data for <see cref="E:System.Windows.Forms.DataGridView.CellBeginEdit" /> and <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCancelEventArgs.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellCancelEventArgs" /> class.</summary>
      <param name="columnIndex">The index of the column containing the cell that the event occurs for.</param>
      <param name="rowIndex">The index of the row containing the cell that the event occurs for.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than -1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than -1.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCancelEventArgs.ColumnIndex">
      <summary>Gets the column index of the cell that the event occurs for.</summary>
      <returns>The column index of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that the event occurs for.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCancelEventArgs.RowIndex">
      <summary>Gets the row index of the cell that the event occurs for.</summary>
      <returns>The row index of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that the event occurs for.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellCancelEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CellBeginEdit" /> and <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /> events of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellCollection">
      <summary>Represents a collection of cells in a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridViewCellCollection.CollectionChanged">
      <summary>Occurs when the collection is changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.#ctor(System.Windows.Forms.DataGridViewRow)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> class.</summary>
      <param name="dataGridViewRow">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> that owns the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.Add(System.Windows.Forms.DataGridViewCell)">
      <summary>Adds a cell to the collection.</summary>
      <param name="dataGridViewCell">A <see cref="T:System.Windows.Forms.DataGridViewCell" /> to add to the collection.</param>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 <paramref name="dataGridViewCell" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <returns>The position in which to insert the new element.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.AddRange(System.Windows.Forms.DataGridViewCell[])">
      <summary>Adds an array of cells to the collection.</summary>
      <param name="dataGridViewCells">The array of <see cref="T:System.Windows.Forms.DataGridViewCell" /> objects to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewCells" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 At least one value in <paramref name="dataGridViewCells" /> is <see langword="null" />.  
  
 -or-  
  
 At least one cell in <paramref name="dataGridViewCells" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridViewRow" />.  
  
 -or-  
  
 At least two values in <paramref name="dataGridViewCells" /> are references to the same <see cref="T:System.Windows.Forms.DataGridViewCell" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.Clear">
      <summary>Clears all cells from the collection.</summary>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.Contains(System.Windows.Forms.DataGridViewCell)">
      <summary>Determines whether the specified cell is contained in the collection.</summary>
      <param name="dataGridViewCell">A <see cref="T:System.Windows.Forms.DataGridViewCell" /> to locate in the collection.</param>
      <returns>
        <see langword="true" /> if <paramref name="dataGridViewCell" /> is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.CopyTo(System.Windows.Forms.DataGridViewCell[],System.Int32)">
      <summary>Copies the entire collection of cells into an array at a specified location within the array.</summary>
      <param name="array">The destination array to which the contents will be copied.</param>
      <param name="index">The index of the element in <paramref name="array" /> at which to start copying.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.IndexOf(System.Windows.Forms.DataGridViewCell)">
      <summary>Returns the index of the specified cell.</summary>
      <param name="dataGridViewCell">The cell to locate in the collection.</param>
      <returns>The zero-based index of the value of <paramref name="dataGridViewCell" /> parameter, if it is found in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewCell)">
      <summary>Inserts a cell into the collection at the specified index.</summary>
      <param name="index">The zero-based index at which to place <paramref name="dataGridViewCell" />.</param>
      <param name="dataGridViewCell">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> to insert.</param>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 <paramref name="dataGridViewCell" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridViewCellCollection.CollectionChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.Remove(System.Windows.Forms.DataGridViewCell)">
      <summary>Removes the specified cell from the collection.</summary>
      <param name="cell">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> to remove from the collection.</param>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="cell" /> could not be found in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.RemoveAt(System.Int32)">
      <summary>Removes the cell at the specified index.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> to be removed.</param>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to the specified array, starting at the specified index.</summary>
      <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IEnumerable#GetEnumerator">
      <summary>Returns an enumerator that iterates through a collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an item to the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> to add to the collection.</param>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.DataGridViewCell" />.</exception>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 <paramref name="value" /> represents a cell that already belongs to a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <returns>The position into which the new element was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Clear">
      <summary>Clears the collection.</summary>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the collection contains the specified value.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" />.</param>
      <returns>
        <see langword="true" /> if the <paramref name="value" /> is found in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Determines the index of a specific item in a collection.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" />.</param>
      <returns>The index of value if found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the collection at the specified position.</summary>
      <param name="index">The zero-based index at which value should be inserted.</param>
      <param name="value">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> to insert into the <see cref="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Insert(System.Int32,System.Object)" />.</param>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.DataGridViewCell" />.</exception>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 <paramref name="dataGridViewCell" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of a specific object from the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> to remove from the collection.</param>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.DataGridViewCell" />.</exception>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="cell" /> could not be found in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Removes the <see cref="T:System.Windows.Forms.DataGridViewCell" /> at the specified index.</summary>
      <param name="index">The position at which to remove the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</param>
      <exception cref="T:System.InvalidOperationException">The row that owns this <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCollection.Item(System.Int32)">
      <summary>Gets or sets the cell at the provided index location. In C#, this property is the indexer for the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> class.</summary>
      <param name="index">The zero-based index of the cell to get or set.</param>
      <exception cref="T:System.ArgumentNullException">The specified value when setting this property is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The specified cell when setting this property already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 The specified cell when setting this property already belongs to a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
 -or-  
  
 <paramref name="index" /> is equal to or greater than the number of cells in the collection.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> stored at the given index.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCollection.Item(System.String)">
      <summary>Gets or sets the cell in the column with the provided name. In C#, this property is the indexer for the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> class.</summary>
      <param name="columnName">The name of the column in which to get or set the cell.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="columnName" /> does not match the name of any columns in the control.</exception>
      <exception cref="T:System.ArgumentNullException">The specified value when setting this property is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The specified cell when setting this property already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 The specified cell when setting this property already belongs to a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> stored in the column with the given name.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCollection.List">
      <summary>Gets an <see cref="T:System.Collections.ArrayList" /> containing <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> objects.</summary>
      <returns>
        <see cref="T:System.Collections.ArrayList" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#Count">
      <summary>Gets the number of elements contained in the collection.</summary>
      <returns>The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#IsReadOnly">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the element at the specified index.</summary>
      <param name="index">The index of the item to get or set.</param>
      <exception cref="T:System.InvalidCastException">The specified value when setting this property is not a <see cref="T:System.Windows.Forms.DataGridViewCell" />.</exception>
      <exception cref="T:System.ArgumentNullException">The specified value when setting this property is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The specified cell when setting this property already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 The specified cell when setting this property already belongs to a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
 -or-  
  
 <paramref name="index" /> is equal to or greater than the number of cells in the collection.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs" /> class.</summary>
      <param name="columnIndex">The column index of cell that the event occurred for.</param>
      <param name="rowIndex">The row index of the cell that the event occurred for.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.ContextMenuStrip">
      <summary>Gets or sets the shortcut menu for the cell that raised the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> for the cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler">
      <summary>Represents the method that will handle a <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs.ErrorText">
      <summary>Gets or sets the message that is displayed when the cell is selected.</summary>
      <returns>The error message.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellEventArgs">
      <summary>Provides data for <see cref="T:System.Windows.Forms.DataGridView" /> events related to cell and row operations.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellEventArgs.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> class.</summary>
      <param name="columnIndex">The index of the column containing the cell that the event occurs for.</param>
      <param name="rowIndex">The index of the row containing the cell that the event occurs for.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than -1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than -1.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex">
      <summary>Gets a value indicating the column index of the cell that the event occurs for.</summary>
      <returns>The index of the column containing the cell that the event occurs for.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex">
      <summary>Gets a value indicating the row index of the cell that the event occurs for.</summary>
      <returns>The index of the row containing the cell that the event occurs for.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellEventHandler">
      <summary>Represents the method that will handle <see cref="T:System.Windows.Forms.DataGridView" /> events related to cell and row operations.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellFormattingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellFormatting" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellFormattingEventArgs.#ctor(System.Int32,System.Int32,System.Object,System.Type,System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellFormattingEventArgs" /> class.</summary>
      <param name="columnIndex">The column index of the cell that caused the event.</param>
      <param name="rowIndex">The row index of the cell that caused the event.</param>
      <param name="value">The cell's contents.</param>
      <param name="desiredType">The type to convert <paramref name="value" /> to.</param>
      <param name="cellStyle">The style of the cell that caused the event.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than -1  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than -1.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.CellStyle">
      <summary>Gets or sets the style of the cell that is being formatted.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the display style of the cell being formatted. The default is the value of the cell's <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.ColumnIndex">
      <summary>Gets the column index of the cell that is being formatted.</summary>
      <returns>The column index of the cell that is being formatted.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.FormattingApplied">
      <summary>Gets or sets a value indicating whether the cell value has been successfully formatted.</summary>
      <returns>
        <see langword="true" /> if the formatting for the cell value has been handled; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.RowIndex">
      <summary>Gets the row index of the cell that is being formatted.</summary>
      <returns>The row index of the cell that is being formatted.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellFormattingEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CellFormatting" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellFormattingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellMouseEventArgs">
      <summary>Provides data for mouse events raised by a <see cref="T:System.Windows.Forms.DataGridView" /> whenever the mouse is moved within a <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellMouseEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.MouseEventArgs)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> class.</summary>
      <param name="columnIndex">The cell's zero-based column index.</param>
      <param name="rowIndex">The cell's zero-based row index.</param>
      <param name="localX">The x-coordinate of the mouse, in pixels.</param>
      <param name="localY">The y-coordinate of the mouse, in pixels.</param>
      <param name="e">The originating <see cref="T:System.Windows.Forms.MouseEventArgs" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than -1.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than -1.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex">
      <summary>Gets the zero-based column index of the cell.</summary>
      <returns>An integer specifying the column index.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellMouseEventArgs.RowIndex">
      <summary>Gets the zero-based row index of the cell.</summary>
      <returns>An integer specifying the row index.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellMouseEventHandler">
      <summary>Represents the method that will handle mouse-related events raised by a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellPaintingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellPainting" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.#ctor(System.Windows.Forms.DataGridView,System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellPaintingEventArgs" /> class.</summary>
      <param name="dataGridView">The <see cref="T:System.Windows.Forms.DataGridView" /> that contains the cell to be painted.</param>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="columnIndex">The column index of the cell that is being painted.</param>
      <param name="cellState">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="formattedValue">The formatted data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values specifying the parts to paint.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridView" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="graphics" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="cellStyle" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="paintParts" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.Paint(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the specified parts of the cell for the area in the specified bounds.</summary>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area of the <see cref="T:System.Windows.Forms.DataGridView" /> to be painted.</param>
      <param name="paintParts">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values specifying the parts to paint.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.RowIndex" /> is less than -1 or greater than or equal to the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ColumnIndex" /> is less than -1 or greater than or equal to the number of columns in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintBackground(System.Drawing.Rectangle,System.Boolean)">
      <summary>Paints the cell background for the area in the specified bounds.</summary>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area of the <see cref="T:System.Windows.Forms.DataGridView" /> to be painted.</param>
      <param name="cellsPaintSelectionBackground">
        <see langword="true" /> to paint the background of the specified bounds with the color of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" />; <see langword="false" /> to paint the background of the specified bounds with the color of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" />.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.RowIndex" /> is less than -1 or greater than or equal to the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ColumnIndex" /> is less than -1 or greater than or equal to the number of columns in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintContent(System.Drawing.Rectangle)">
      <summary>Paints the cell content for the area in the specified bounds.</summary>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area of the <see cref="T:System.Windows.Forms.DataGridView" /> to be painted.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.RowIndex" /> is less than -1 or greater than or equal to the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ColumnIndex" /> is less than -1 or greater than or equal to the number of columns in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.AdvancedBorderStyle">
      <summary>Gets the border style of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the border style of the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.CellBounds">
      <summary>Get the bounds of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.CellStyle">
      <summary>Gets the cell style of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains the cell style of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ClipBounds">
      <summary>Gets the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ColumnIndex">
      <summary>Gets the column index of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>The column index of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.ErrorText">
      <summary>Gets a string that represents an error message for the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>A string that represents an error message for the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.FormattedValue">
      <summary>Gets the formatted value of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>The formatted value of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> used to paint the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> used to paint the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintParts">
      <summary>The cell parts that are to be painted.</summary>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values specifying the parts to be painted.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.RowIndex">
      <summary>Gets the row index of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>The row index of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.State">
      <summary>Gets the state of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellPaintingEventArgs.Value">
      <summary>Gets the value of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <returns>The value of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellPaintingEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CellPainting" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellPaintingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellParsingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellParsingEventArgs.#ctor(System.Int32,System.Int32,System.Object,System.Type,System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellParsingEventArgs" /> class.</summary>
      <param name="rowIndex">The row index of the cell that was changed.</param>
      <param name="columnIndex">The column index of the cell that was changed.</param>
      <param name="value">The new value.</param>
      <param name="desiredType">The type of the new value.</param>
      <param name="inheritedCellStyle">The style applied to the cell that was changed.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellParsingEventArgs.ColumnIndex">
      <summary>Gets the column index of the cell data that requires parsing.</summary>
      <returns>The column index of the cell that was changed.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellParsingEventArgs.InheritedCellStyle">
      <summary>Gets or sets the style applied to the edited cell.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the current style of the cell being edited. The default value is the value of the cell <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellParsingEventArgs.ParsingApplied">
      <summary>Gets or sets a value indicating whether a cell's value has been successfully parsed.</summary>
      <returns>
        <see langword="true" /> if the cell's value has been successfully parsed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellParsingEventArgs.RowIndex">
      <summary>Gets the row index of the cell that requires parsing.</summary>
      <returns>The row index of the cell that was changed.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellParsingEventHandler">
      <summary>Represents the method that will handle a <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellParsingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellStateChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellStateChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStateChangedEventArgs.#ctor(System.Windows.Forms.DataGridViewCell,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellStateChangedEventArgs" /> class.</summary>
      <param name="dataGridViewCell">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> that has a changed state.</param>
      <param name="stateChanged">One of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values indicating the state that has changed on the cell.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewCell" /> is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStateChangedEventArgs.Cell">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that has a changed state.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> whose state has changed.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStateChangedEventArgs.StateChanged">
      <summary>Gets the state that has changed on the cell.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values indicating the state that has changed on the cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellStateChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CellStateChanged" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellStateChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellStyle">
      <summary>Represents the formatting and style information applied to individual cells within a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyle.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> class using default property values.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyle.#ctor(System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> class using the property values of the specified <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</summary>
      <param name="dataGridViewCellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> used as a template to provide initial property values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewCellStyle" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyle.ApplyStyle(System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Applies the specified <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to the current <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</summary>
      <param name="dataGridViewCellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to apply to the current <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewCellStyle" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyle.Clone">
      <summary>Creates an exact copy of this <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents an exact copy of this cell style.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyle.Equals(System.Object)">
      <summary>Returns a value indicating whether this instance is equivalent to the specified object.</summary>
      <param name="o">An object to compare with this instance, or <see langword="null" />.</param>
      <returns>
        <see langword="true" /> if <paramref name="o" /> is a <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> and has the same property values as this instance; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyle.GetHashCode">
      <summary>Serves as a hash function for a particular type.</summary>
      <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyle.System#ICloneable#Clone">
      <summary>Creates an exact copy of this <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents an exact copy of this cell style.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyle.ToString">
      <summary>Returns a string indicating the current property settings of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</summary>
      <returns>A string indicating the current property settings of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.Alignment">
      <summary>Gets or sets a value indicating the position of the cell content within a <see cref="T:System.Windows.Forms.DataGridView" /> cell.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The property value is not a valid <see cref="T:System.Windows.Forms.DataGridViewContentAlignment" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewContentAlignment" /> values. The default is <see cref="F:System.Windows.Forms.DataGridViewContentAlignment.NotSet" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.BackColor">
      <summary>Gets or sets the background color of a <see cref="T:System.Windows.Forms.DataGridView" /> cell.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of a cell. The default is <see cref="F:System.Drawing.Color.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue">
      <summary>Gets or sets the value saved to the data source when the user enters a null value into a cell.</summary>
      <returns>The value saved to the data source when the user specifies a null cell value. The default is <see cref="F:System.DBNull.Value" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.Font">
      <summary>Gets or sets the font applied to the textual content of a <see cref="T:System.Windows.Forms.DataGridView" /> cell.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> applied to the cell text. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.ForeColor">
      <summary>Gets or sets the foreground color of a <see cref="T:System.Windows.Forms.DataGridView" /> cell.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the foreground color of a cell. The default is <see cref="F:System.Drawing.Color.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.Format">
      <summary>Gets or sets the format string applied to the textual content of a <see cref="T:System.Windows.Forms.DataGridView" /> cell.</summary>
      <returns>A string that indicates the format of the cell value. The default is <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.FormatProvider">
      <summary>Gets or sets the object used to provide culture-specific formatting of <see cref="T:System.Windows.Forms.DataGridView" /> cell values.</summary>
      <returns>An <see cref="T:System.IFormatProvider" /> used for cell formatting. The default is <see cref="P:System.Globalization.CultureInfo.CurrentUICulture" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.IsDataSourceNullValueDefault">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue" /> property has been set.</summary>
      <returns>
        <see langword="true" /> if the value of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue" /> property is the default value; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.IsFormatProviderDefault">
      <summary>Gets a value that indicates whether the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.FormatProvider" /> property has been set.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.FormatProvider" /> property is the default value; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.IsNullValueDefault">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.NullValue" /> property has been set.</summary>
      <returns>
        <see langword="true" /> if the value of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.NullValue" /> property is the default value; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.NullValue">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.DataGridView" /> cell display value corresponding to a cell value of <see cref="F:System.DBNull.Value" /> or <see langword="null" />.</summary>
      <returns>The object used to indicate a null value in a cell. The default is <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.Padding">
      <summary>Gets or sets the space between the edge of a <see cref="T:System.Windows.Forms.DataGridViewCell" /> and its content.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that represents the space between the edge of a <see cref="T:System.Windows.Forms.DataGridViewCell" /> and its content.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor">
      <summary>Gets or sets the background color used by a <see cref="T:System.Windows.Forms.DataGridView" /> cell when it is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of a selected cell. The default is <see cref="F:System.Drawing.Color.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.SelectionForeColor">
      <summary>Gets or sets the foreground color used by a <see cref="T:System.Windows.Forms.DataGridView" /> cell when it is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the foreground color of a selected cell. The default is <see cref="F:System.Drawing.Color.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.Tag">
      <summary>Gets or sets an object that contains additional data related to the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</summary>
      <returns>An object that contains additional data. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode">
      <summary>Gets or sets a value indicating whether textual content in a <see cref="T:System.Windows.Forms.DataGridView" /> cell is wrapped to subsequent lines or truncated when it is too long to fit on a single line.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The property value is not a valid <see cref="T:System.Windows.Forms.DataGridViewTriState" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewTriState" /> values. The default is <see cref="F:System.Windows.Forms.DataGridViewTriState.NotSet" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellStyleContentChanged" /> event.</summary>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs.CellStyle">
      <summary>Gets the changed <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</summary>
      <returns>The changed <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs.CellStyleScope">
      <summary>Gets the scope that is affected by the changed cell style.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyleScopes" /> that indicates which <see cref="T:System.Windows.Forms.DataGridView" /> entity owns the cell style that changed.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CellStyleContentChanged" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellStyleConverter">
      <summary>Converts <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> objects to and from other data types.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyleConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellStyleConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyleConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns whether this converter can convert the object to the specified type, using the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you want to convert to.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellStyleConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the given value object to the specified type, using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" />. If null is passed, the current culture is assumed.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <param name="destinationType">The <see cref="T:System.Type" /> to convert the value parameter to.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellStyleScopes">
      <summary>Specifies the <see cref="T:System.Windows.Forms.DataGridView" /> entity that owns the cell style that was changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellStyleScopes.AlternatingRows">
      <summary>One or more values of the object returned by the <see cref="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle" /> property changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellStyleScopes.Cell">
      <summary>One or more values of the object returned by the <see cref="P:System.Windows.Forms.DataGridViewCell.Style" /> property changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellStyleScopes.Column">
      <summary>One or more values of the object returned by the <see cref="P:System.Windows.Forms.DataGridViewColumn.DefaultCellStyle" /> property changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellStyleScopes.ColumnHeaders">
      <summary>One or more values of the object returned by the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" /> property changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellStyleScopes.DataGridView">
      <summary>One or more values of the object returned by the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellStyleScopes.None">
      <summary>The owning entity is unspecified.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellStyleScopes.Row">
      <summary>One or more values of the object returned by the <see cref="P:System.Windows.Forms.DataGridViewRow.DefaultCellStyle" /> property changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellStyleScopes.RowHeaders">
      <summary>One or more values of the object returned by the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> property changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewCellStyleScopes.Rows">
      <summary>One or more values of the object returned by the <see cref="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle" /> property changed.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event.</summary>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs.ToolTipText">
      <summary>Gets or sets the ToolTip text.</summary>
      <returns>The current ToolTip text.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellValidatingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellValidating" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellValidatingEventArgs.ColumnIndex">
      <summary>Gets the column index of the cell that needs to be validated.</summary>
      <returns>A zero-based integer that specifies the column index of the cell that needs to be validated.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellValidatingEventArgs.FormattedValue">
      <summary>Gets the formatted contents of the cell that needs to be validated.</summary>
      <returns>A reference to the formatted value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellValidatingEventArgs.RowIndex">
      <summary>Gets the row index of the cell that needs to be validated.</summary>
      <returns>A zero-based integer that specifies the row index of the cell that needs to be validated.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellValidatingEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CellValidating" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <param name="sender">A reference to the event sender.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellValidatingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellValueEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.CellValueNeeded" /> and <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> events of the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCellValueEventArgs.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCellValueEventArgs" /> class.</summary>
      <param name="columnIndex">The index of the column containing the cell that the event occurs for.</param>
      <param name="rowIndex">The index of the row containing the cell that the event occurs for.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than 0.  
  
 -or-  
  
 <paramref name="rowIndex" /> is less than 0.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellValueEventArgs.ColumnIndex">
      <summary>Gets a value indicating the column index of the cell that the event occurs for.</summary>
      <returns>The index of the column containing the cell that the event occurs for.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellValueEventArgs.RowIndex">
      <summary>Gets a value indicating the row index of the cell that the event occurs for.</summary>
      <returns>The index of the row containing the cell that the event occurs for.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCellValueEventArgs.Value">
      <summary>Gets or sets the value of the cell that the event occurs for.</summary>
      <returns>An <see cref="T:System.Object" /> representing the cell's value.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCellValueEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CellValueNeeded" /> event or <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellValueEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCheckBoxCell">
      <summary>Displays a check box user interface (UI) to use in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" /> class to its default state.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.#ctor(System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" /> class, enabling binary or ternary state.</summary>
      <param name="threeState">
        <see langword="true" /> to enable ternary state; <see langword="false" /> to enable binary state.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.ContentClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Indicates whether the row containing the cell will be unshared when the cell content is clicked.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains data about the mouse click.</param>
      <returns>
        <see langword="true" /> if the cell is in edit mode; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.ContentDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Indicates whether the row containing the cell will be unshared when the cell content is double-clicked.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains data about the double-click.</param>
      <returns>
        <see langword="true" /> if the cell is in edit mode; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.GetEditingCellFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Gets the formatted value of the cell while it is in edit mode.</summary>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that describes the context in which any formatting error occurs.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridViewCheckBoxCell.FormattedValueType" /> property value is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Object" /> representing the formatted value of the editing cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's error icon, if one is displayed; otherwise, <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.GetFormattedValue(System.Object,System.Int32,System.Windows.Forms.DataGridViewCellStyle@,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter,System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Gets the formatted value of the cell's data.</summary>
      <param name="value">The value to be formatted.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> in effect for the cell.</param>
      <param name="valueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> associated with the value type that provides custom conversion to the formatted value type, or <see langword="null" /> if no such custom conversion is needed.</param>
      <param name="formattedValueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> associated with the formatted value type that provides custom conversion from the value type, or <see langword="null" /> if no such custom conversion is needed.</param>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values describing the context in which the formatted value is needed.</param>
      <returns>The value of the cell's data after formatting has been applied or <see langword="null" /> if the cell is not part of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Indicates whether the row containing the cell is unshared when a key is pressed while the cell has focus.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains data about the key press.</param>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <returns>
        <see langword="true" /> if the SPACE key is pressed and the CTRL, ALT, and SHIFT keys are all not pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Indicates whether the row containing the cell is unshared when a key is released while the cell has focus.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains data about the key press.</param>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <returns>
        <see langword="true" /> if the SPACE key is released; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether the row containing the cell will be unshared when the mouse button is pressed while the pointer is over the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains data about the mouse click.</param>
      <returns>Always <see langword="true" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.MouseEnterUnsharesRow(System.Int32)">
      <summary>Indicates whether the row containing the cell will be unshared when the mouse pointer moves over the cell.</summary>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <returns>
        <see langword="true" /> if the cell was the last cell receiving a mouse click; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.MouseLeaveUnsharesRow(System.Int32)">
      <summary>Indicates whether the row containing the cell will be unshared when the mouse pointer leaves the cell.</summary>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <returns>
        <see langword="true" /> if the button is not in the normal state; <see langword="false" /> if the button is in the pressed state.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether the row containing the cell will be unshared when the mouse button is released while the pointer is over the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains data about the mouse click.</param>
      <returns>Always <see langword="true" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.OnContentClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Called when the cell's contents are clicked.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.OnContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Called when the cell's contents are double-clicked.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.OnKeyDown(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Called when a character key is pressed while the focus is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The row index of the current cell, or -1 if the cell is not owned by a row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.OnKeyUp(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Called when a character key is released while the focus is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The row index of the current cell, or -1 if the cell is not owned by a row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.OnLeave(System.Int32,System.Boolean)">
      <summary>Called when the focus moves from a cell.</summary>
      <param name="rowIndex">The row index of the current cell, or -1 if the cell is not owned by a row.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if the cell was left as a result of user mouse click rather than a programmatic cell change; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse button is held down while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseLeave(System.Int32)">
      <summary>Called when the mouse pointer moves from a cell.</summary>
      <param name="rowIndex">The row index of the current cell or -1 if the cell is not owned by a row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse pointer moves within a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse button is released while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the cell.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the cell that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="elementState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the cell that is being painted.</param>
      <param name="formattedValue">The formatted data of the cell that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.ParseFormattedValue(System.Object,System.Windows.Forms.DataGridViewCellStyle,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)">
      <summary>Converts a value formatted for display to an actual cell value.</summary>
      <param name="formattedValue">The display value of the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> in effect for the cell.</param>
      <param name="formattedValueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> for the display value type, or <see langword="null" /> to use the default converter.</param>
      <param name="valueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> for the cell value type, or <see langword="null" /> to use the default converter.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="cellStyle" /> is <see langword="null" />.</exception>
      <exception cref="T:System.FormatException">The <see cref="P:System.Windows.Forms.DataGridViewCell.FormattedValueType" /> property value is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="formattedValue" /> is <see langword="null" />.  
  
-or-
  
 The type of <paramref name="formattedValue" /> does not match the type indicated by the <see cref="P:System.Windows.Forms.DataGridViewCell.FormattedValueType" /> property.</exception>
      <returns>The cell value.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.PrepareEditingCellForEdit(System.Boolean)">
      <summary>This method is not meaningful for this type.</summary>
      <param name="selectAll">This parameter is ignored.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.ToString">
      <summary>Returns the string representation of the cell.</summary>
      <returns>A <see cref="T:System.String" /> that represents the current cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellFormattedValue">
      <summary>Gets or sets the formatted value of the control hosted by the cell when it is in edit mode.</summary>
      <exception cref="T:System.ArgumentException">The <see cref="P:System.Windows.Forms.DataGridViewCheckBoxCell.FormattedValueType" /> property value is <see langword="null" />.  
  
 -or-  
  
 The assigned value is <see langword="null" /> or is not of the type indicated by the <see cref="P:System.Windows.Forms.DataGridViewCheckBoxCell.FormattedValueType" /> property.  
  
 -or-  
  
 The assigned value is not of type <see cref="T:System.Boolean" /> nor of type <see cref="T:System.Windows.Forms.CheckState" />.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridViewCheckBoxCell.FormattedValueType" /> property value is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Object" /> representing the cell's value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellValueChanged">
      <summary>Gets or sets a flag indicating that the value has been changed for this cell.</summary>
      <returns>
        <see langword="true" /> if the cell's value has changed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.EditType">
      <summary>Gets the type of the cell's hosted editing control.</summary>
      <returns>The <see cref="T:System.Type" /> of the underlying editing control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.FalseValue">
      <summary>Gets or sets the underlying value corresponding to a cell value of <see langword="false" />.</summary>
      <returns>An <see cref="T:System.Object" /> corresponding to a cell value of <see langword="false" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.FlatStyle">
      <summary>Gets or sets the flat style appearance of the check box user interface (UI).</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.FlatStyle" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.FlatStyle" /> values. The default is <see cref="F:System.Windows.Forms.FlatStyle.Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.FormattedValueType">
      <summary>Gets the type of the cell display value.</summary>
      <returns>A <see cref="T:System.Type" /> representing the display type of the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.IndeterminateValue">
      <summary>Gets or sets the underlying value corresponding to an indeterminate or <see langword="null" /> cell value.</summary>
      <returns>An <see cref="T:System.Object" /> corresponding to an indeterminate or <see langword="null" /> cell value. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.ThreeState">
      <summary>Gets or sets a value indicating whether ternary mode has been enabled for the hosted check box control.</summary>
      <returns>
        <see langword="true" /> if ternary mode is enabled; <see langword="false" /> if binary mode is enabled. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.TrueValue">
      <summary>Gets or sets the underlying value corresponding to a cell value of <see langword="true" />.</summary>
      <returns>An <see cref="T:System.Object" /> corresponding to a cell value of <see langword="true" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.ValueType">
      <summary>Gets the data type of the values in the cell.</summary>
      <returns>The <see cref="T:System.Type" /> of the underlying value of the cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject">
      <summary>Provides information about a <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" /> to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DoDefaultAction">
      <summary>Performs the default action of the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" /> returned by the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property does not belong to a <see langword="DataGridView" /> control.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" /> returned by the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property belongs to a shared row.

-or-

.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.GetChildCount">
      <summary>Gets the number of child accessible objects that belong to the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject" />.</summary>
      <returns>The value -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DefaultAction">
      <summary>Gets a string that represents the default action of the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A description of the default action.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.State">
      <summary>Gets the state of this <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleStates" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewCheckBoxColumn">
      <summary>Hosts a collection of <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxColumn.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxColumn" /> class to the default state.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxColumn.#ctor(System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewCheckBoxColumn" /> and configures it to display check boxes with two or three states.</summary>
      <param name="threeState">
        <see langword="true" /> to display check boxes with three states; <see langword="false" /> to display check boxes with two states.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewCheckBoxColumn.ToString">
      <summary>Gets a string that describes the column.</summary>
      <returns>A <see cref="T:System.String" /> that describes the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate">
      <summary>Gets or sets the template used to create new cells.</summary>
      <exception cref="T:System.InvalidCastException">The property is set to a value that is not of type <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell" /> that all other cells in the column are modeled after. The default value is a new <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" /> instance.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxColumn.DefaultCellStyle">
      <summary>Gets or sets the column's default cell style.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied as the default style.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxColumn.FalseValue">
      <summary>Gets or sets the underlying value corresponding to a cell value of <see langword="false" />, which appears as an unchecked box.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Object" /> representing a value that the cells in this column will treat as a <see langword="false" /> value. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxColumn.FlatStyle">
      <summary>Gets or sets the flat style appearance of the check box cells.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.FlatStyle" /> value indicating the appearance of cells in the column. The default is <see cref="F:System.Windows.Forms.FlatStyle.Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxColumn.IndeterminateValue">
      <summary>Gets or sets the underlying value corresponding to an indeterminate or <see langword="null" /> cell value, which appears as a disabled checkbox.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Object" /> representing a value that the cells in this column will treat as an indeterminate value. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxColumn.ThreeState">
      <summary>Gets or sets a value indicating whether the hosted check box cells will allow three check states rather than two.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the hosted <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" /> objects are able to have a third, indeterminate, state; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewCheckBoxColumn.TrueValue">
      <summary>Gets or sets the underlying value corresponding to a cell value of <see langword="true" />, which appears as a checked box.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Object" /> representing a value that the cell will treat as a <see langword="true" /> value. The default is <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewClipboardCopyMode">
      <summary>Defines constants that indicate whether content is copied from a <see cref="T:System.Windows.Forms.DataGridView" /> control to the Clipboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewClipboardCopyMode.Disable">
      <summary>Copying to the Clipboard is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewClipboardCopyMode.EnableAlwaysIncludeHeaderText">
      <summary>The text values of selected cells can be copied to the Clipboard. Header text is included for rows and columns that contain selected cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithAutoHeaderText">
      <summary>The text values of selected cells can be copied to the Clipboard. Row or column header text is included for rows or columns that contain selected cells only when the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property is set to <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect" /> and at least one header is selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithoutHeaderText">
      <summary>The text values of selected cells can be copied to the Clipboard. Header text is not included.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumn">
      <summary>Represents a column in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridViewColumn.Disposed">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.DataGridViewColumn" /> is disposed.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumn.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumn" /> class to the default state.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumn.#ctor(System.Windows.Forms.DataGridViewCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumn" /> class using an existing <see cref="T:System.Windows.Forms.DataGridViewCell" /> as a template.</summary>
      <param name="cellTemplate">An existing <see cref="T:System.Windows.Forms.DataGridViewCell" /> to use as a template.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumn.Clone">
      <summary>Creates an exact copy of this band.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewBand" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumn.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.DataGridViewBand" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumn.GetPreferredWidth(System.Windows.Forms.DataGridViewAutoSizeColumnMode,System.Boolean)">
      <summary>Calculates the ideal width of the column based on the specified criteria.</summary>
      <param name="autoSizeColumnMode">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> value that specifies an automatic sizing mode.</param>
      <param name="fixedHeight">
        <see langword="true" /> to calculate the width of the column based on the current row heights; <see langword="false" /> to calculate the width with the expectation that the row heights will be adjusted.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="autoSizeColumnMode" /> is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet" />, <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.None" />, or <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeColumnMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> value.</exception>
      <returns>The ideal width, in pixels, of the column.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumn.ToString">
      <summary>Gets a string that describes the column.</summary>
      <returns>A <see cref="T:System.String" /> that describes the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode">
      <summary>Gets or sets the mode by which the column automatically adjusts its width.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is a <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> that is not valid.</exception>
      <exception cref="T:System.InvalidOperationException">The specified value when setting this property results in an <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader" /> for a visible column when column headers are hidden.  
  
 -or-  
  
 The specified value when setting this property results in an <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill" /> for a visible column that is frozen.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> value that determines whether the column will automatically adjust its width and how it will determine its preferred width. The default is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.CellTemplate">
      <summary>Gets or sets the template used to create new cells.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell" /> that all other cells in the column are modeled after. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.CellType">
      <summary>Gets the run-time type of the cell template.</summary>
      <returns>The <see cref="T:System.Type" /> of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> used as a template for this column. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.ContextMenuStrip">
      <summary>Gets or sets the shortcut menu for the column.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with the current <see cref="T:System.Windows.Forms.DataGridViewColumn" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.DataPropertyName">
      <summary>Gets or sets the name of the data source property or database column to which the <see cref="T:System.Windows.Forms.DataGridViewColumn" /> is bound.</summary>
      <returns>The case-insensitive name of the property or database column associated with the <see cref="T:System.Windows.Forms.DataGridViewColumn" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.DefaultCellStyle">
      <summary>Gets or sets the column's default cell style.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the default style of the cells in the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex">
      <summary>Gets or sets the display order of the column relative to the currently displayed columns.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> is not <see langword="null" /> and the specified value when setting this property is less than 0 or greater than or equal to the number of columns in the control.  
  
 -or-  
  
 <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> is <see langword="null" /> and the specified value when setting this property is less than -1.  
  
 -or-  
  
 The specified value when setting this property is equal to <see cref="F:System.Int32.MaxValue">Int32.MaxValue</see>.</exception>
      <returns>The zero-based position of the column as it is displayed in the associated <see cref="T:System.Windows.Forms.DataGridView" />, or -1 if the band is not contained within a control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.DividerWidth">
      <summary>Gets or sets the width, in pixels, of the column divider.</summary>
      <returns>The thickness, in pixels, of the divider (the column's right margin).</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.FillWeight">
      <summary>Gets or sets a value that represents the width of the column when it is in fill mode relative to the widths of other fill-mode columns in the control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is less than or equal to 0.</exception>
      <returns>A <see cref="T:System.Single" /> representing the width of the column when it is in fill mode relative to the widths of other fill-mode columns. The default is 100.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.Frozen">
      <summary>Gets or sets a value indicating whether a column will move when a user scrolls the <see cref="T:System.Windows.Forms.DataGridView" /> control horizontally.</summary>
      <returns>
        <see langword="true" /> to freeze the column; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.HeaderCell">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" /> that represents the column header.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" /> that represents the header cell for the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.HeaderText">
      <summary>Gets or sets the caption text on the column's header cell.</summary>
      <returns>A <see cref="T:System.String" /> with the desired text. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode">
      <summary>Gets the sizing mode in effect for the column.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> value in effect for the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.InheritedStyle">
      <summary>Gets the cell style currently applied to the column.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the cell style used to display the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.IsDataBound">
      <summary>Gets a value indicating whether the column is bound to a data source.</summary>
      <returns>
        <see langword="true" /> if the column is connected to a data source; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.MinimumWidth">
      <summary>Gets or sets the minimum width, in pixels, of the column.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 2 or greater than <see cref="F:System.Int32.MaxValue">Int32.MaxValue</see>.</exception>
      <returns>The number of pixels, from 2 to <see cref="F:System.Int32.MaxValue">Int32.MaxValue</see>, that specifies the minimum width of the column. The default is 5.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.Name">
      <summary>Gets or sets the name of the column.</summary>
      <returns>A <see cref="T:System.String" /> that contains the name of the column. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.ReadOnly">
      <summary>Gets or sets a value indicating whether the user can edit the column's cells.</summary>
      <exception cref="T:System.InvalidOperationException">This property is set to <see langword="false" /> for a column that is bound to a read-only data source.</exception>
      <returns>
        <see langword="true" /> if the user cannot edit the column's cells; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.Resizable">
      <summary>Gets or sets a value indicating whether the column is resizable.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewTriState" /> values. The default is <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.Site">
      <summary>Gets or sets the site of the column.</summary>
      <returns>The <see cref="T:System.ComponentModel.ISite" /> associated with the column, if any.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.SortMode">
      <summary>Gets or sets the sort mode for the column.</summary>
      <exception cref="T:System.InvalidOperationException">The value assigned to the property conflicts with <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewColumnSortMode" /> that specifies the criteria used to order the rows based on the cell values in a column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.ToolTipText">
      <summary>Gets or sets the text used for ToolTips.</summary>
      <returns>The text to display as a ToolTip for the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.ValueType">
      <summary>Gets or sets the data type of the values in the column's cells.</summary>
      <returns>A <see cref="T:System.Type" /> that describes the run-time class of the values stored in the column's cells.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.Visible">
      <summary>Gets or sets a value indicating whether the column is visible.</summary>
      <returns>
        <see langword="true" /> if the column is visible; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumn.Width">
      <summary>Gets or sets the current width of the column.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is greater than 65536.</exception>
      <returns>The width, in pixels, of the column. The default is 100.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.DataGridViewColumn" /> objects in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridViewColumnCollection.CollectionChanged">
      <summary>Occurs when the collection changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.#ctor(System.Windows.Forms.DataGridView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" /> class for the given <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="dataGridView">The <see cref="T:System.Windows.Forms.DataGridView" /> that created this collection.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.Add(System.String,System.String)">
      <summary>Adds a <see cref="T:System.Windows.Forms.DataGridViewTextBoxColumn" /> with the given column name and column header text to the collection.</summary>
      <param name="columnName">The name by which the column will be referred.</param>
      <param name="headerText">The text for the column's header.</param>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect" />, which conflicts with the default column <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" />.  
  
 -or-  
  
 The default column <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> property value of 100 would cause the combined <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> values of all columns in the control to exceed 65535.</exception>
      <returns>The index of the column.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.Add(System.Windows.Forms.DataGridViewColumn)">
      <summary>Adds the given column to the collection.</summary>
      <param name="dataGridViewColumn">The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> to add.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewColumn" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 <paramref name="dataGridViewColumn" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 The <paramref name="dataGridViewColumn" /><see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" /> and the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect" />. Use the control <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#BeginInit" /> and <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#EndInit" /> methods to temporarily set conflicting property values.  
  
 -or-  
  
 The <paramref name="dataGridViewColumn" /><see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader" /> and the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> property value is <see langword="false" />.  
  
 -or-  
  
 <paramref name="dataGridViewColumn" /> has an <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill" /> and a <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value of <see langword="true" />.  
  
 -or-  
  
 <paramref name="dataGridViewColumn" /> has a <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> property value that would cause the combined <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> values of all columns in the control to exceed 65535.  
  
 -or-  
  
 <paramref name="dataGridViewColumn" /> has <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> and <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property values that would display it among a set of adjacent columns with the opposite <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> control contains at least one row and <paramref name="dataGridViewColumn" /> has a <see cref="P:System.Windows.Forms.DataGridViewColumn.CellType" /> property value of <see langword="null" />.</exception>
      <returns>The index of the column.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.AddRange(System.Windows.Forms.DataGridViewColumn[])">
      <summary>Adds a range of columns to the collection.</summary>
      <param name="dataGridViewColumns">An array of <see cref="T:System.Windows.Forms.DataGridViewColumn" /> objects to add.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewColumns" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 At least one of the values in <paramref name="dataGridViewColumns" /> is <see langword="null" />.  
  
 -or-  
  
 At least one of the columns in <paramref name="dataGridViewColumns" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 At least one of the columns in <paramref name="dataGridViewColumns" /> has a <see cref="P:System.Windows.Forms.DataGridViewColumn.CellType" /> property value of <see langword="null" /> and the <see cref="T:System.Windows.Forms.DataGridView" /> control contains at least one row.  
  
 -or-  
  
 At least one of the columns in <paramref name="dataGridViewColumns" /> has a <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" /> and the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect" />. Use the control <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#BeginInit" /> and <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#EndInit" /> methods to temporarily set conflicting property values.  
  
 -or-  
  
 At least one of the columns in <paramref name="dataGridViewColumns" /> has an <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader" /> and the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> property value is <see langword="false" />.  
  
 -or-  
  
 At least one of the columns in <paramref name="dataGridViewColumns" /> has an <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill" /> and a <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value of <see langword="true" />.  
  
 -or-  
  
 The columns in <paramref name="dataGridViewColumns" /> have <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> property values that would cause the combined <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> values of all columns in the control to exceed 65535.  
  
 -or-  
  
 At least two of the values in <paramref name="dataGridViewColumns" /> are references to the same <see cref="T:System.Windows.Forms.DataGridViewColumn" />.  
  
 -or-  
  
 At least one of the columns in <paramref name="dataGridViewColumns" /> has <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> and <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property values that would display it among a set of adjacent columns with the opposite <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.Clear">
      <summary>Clears the collection.</summary>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /></exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.Contains(System.String)">
      <summary>Determines whether the collection contains the column referred to by the given name.</summary>
      <param name="columnName">The name of the column to look for.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="columnName" /> is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the column is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.Contains(System.Windows.Forms.DataGridViewColumn)">
      <summary>Determines whether the collection contains the given column.</summary>
      <param name="dataGridViewColumn">The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> to look for.</param>
      <returns>
        <see langword="true" /> if the given column is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.CopyTo(System.Windows.Forms.DataGridViewColumn[],System.Int32)">
      <summary>Copies the items from the collection to the given array.</summary>
      <param name="array">The destination <see cref="T:System.Windows.Forms.DataGridViewColumn" /> array.</param>
      <param name="index">The index of the destination array at which to start copying.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.GetColumnCount(System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the number of columns that meet the given filter requirements.</summary>
      <param name="includeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter for inclusion.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The number of columns that meet the filter requirements.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.GetColumnsWidth(System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the width, in pixels, required to display all of the columns that meet the given filter requirements.</summary>
      <param name="includeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter for inclusion.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The width, in pixels, that is necessary to display all of the columns that meet the filter requirements.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.GetFirstColumn(System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the first column in display order that meets the given inclusion-filter requirements.</summary>
      <param name="includeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represents the filter for inclusion.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The first column in display order that meets the given filter requirements, or <see langword="null" /> if no column is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.GetFirstColumn(System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the first column in display order that meets the given inclusion-filter and exclusion-filter requirements.</summary>
      <param name="includeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter to apply for inclusion.</param>
      <param name="excludeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter to apply for exclusion.</param>
      <exception cref="T:System.ArgumentException">At least one of the filter values is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The first column in display order that meets the given filter requirements, or <see langword="null" /> if no column is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.GetLastColumn(System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the last column in display order that meets the given filter requirements.</summary>
      <param name="includeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter to apply for inclusion.</param>
      <param name="excludeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter to apply for exclusion.</param>
      <exception cref="T:System.ArgumentException">At least one of the filter values is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The last displayed column in display order that meets the given filter requirements, or <see langword="null" /> if no column is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.GetNextColumn(System.Windows.Forms.DataGridViewColumn,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Gets the first column after the given column in display order that meets the given filter requirements.</summary>
      <param name="dataGridViewColumnStart">The column from which to start searching for the next column.</param>
      <param name="includeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter to apply for inclusion.</param>
      <param name="excludeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter to apply for exclusion.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewColumnStart" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">At least one of the filter values is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The next column that meets the given filter requirements, or <see langword="null" /> if no column is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.GetPreviousColumn(System.Windows.Forms.DataGridViewColumn,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Gets the last column prior to the given column in display order that meets the given filter requirements.</summary>
      <param name="dataGridViewColumnStart">The column from which to start searching for the previous column.</param>
      <param name="includeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter to apply for inclusion.</param>
      <param name="excludeFilter">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that represent the filter to apply for exclusion.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewColumnStart" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">At least one of the filter values is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The previous column that meets the given filter requirements, or <see langword="null" /> if no column is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.IndexOf(System.Windows.Forms.DataGridViewColumn)">
      <summary>Gets the index of the given <see cref="T:System.Windows.Forms.DataGridViewColumn" /> in the collection.</summary>
      <param name="dataGridViewColumn">The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> to return the index of.</param>
      <returns>The index of the given <see cref="T:System.Windows.Forms.DataGridViewColumn" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewColumn)">
      <summary>Inserts a column at the given index in the collection.</summary>
      <param name="columnIndex">The zero-based index at which to insert the given column.</param>
      <param name="dataGridViewColumn">The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> to insert.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewColumn" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 <paramref name="dataGridViewColumn" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 The <paramref name="dataGridViewColumn" /><see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" /> and the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect" />. Use the control <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#BeginInit" /> and <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#EndInit" /> methods to temporarily set conflicting property values.  
  
 -or-  
  
 The <paramref name="dataGridViewColumn" /><see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader" /> and the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> property value is <see langword="false" />.  
  
 -or-  
  
 <paramref name="dataGridViewColumn" /> has an <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill" /> and a <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value of <see langword="true" />.  
  
 -or-  
  
 <paramref name="dataGridViewColumn" /> has <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> and <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property values that would display it among a set of adjacent columns with the opposite <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> control contains at least one row and <paramref name="dataGridViewColumn" /> has a <see cref="P:System.Windows.Forms.DataGridViewColumn.CellType" /> property value of <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridViewColumnCollection.CollectionChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.Remove(System.String)">
      <summary>Removes the column with the specified name from the collection.</summary>
      <param name="columnName">The name of the column to delete.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="columnName" /> does not match the name of any column in the collection.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="columnName" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /></exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.Remove(System.Windows.Forms.DataGridViewColumn)">
      <summary>Removes the specified column from the collection.</summary>
      <param name="dataGridViewColumn">The column to delete.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="dataGridViewColumn" /> is not in the collection.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewColumn" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /></exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.RemoveAt(System.Int32)">
      <summary>Removes the column at the given index in the collection.</summary>
      <param name="index">The index of the column to delete.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero or greater than the number of columns in the control minus one.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /></exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire contents of the collection to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the current collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the source collection is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The type of the source element cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IEnumerable#GetEnumerator">
      <summary>Returns an enumerator that iterates through the collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an object to the end of the collection.</summary>
      <param name="value">The <see cref="T:System.Object" /> to add to the end of the collection. The value can be <see langword="null" />.</param>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.DataGridViewColumn" />.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The column indicated by <paramref name="value" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of the column indicated by <paramref name="value" /> is <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" /> and the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect" />. Use the control <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#BeginInit" /> and <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#EndInit" /> methods to temporarily set conflicting property values.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value of the column indicated by <paramref name="value" /> is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader" /> and the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> property value is <see langword="false" />.  
  
 -or-  
  
 The column indicated by <paramref name="value" /> has an <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill" /> and a <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value of <see langword="true" />.  
  
 -or-  
  
 The column indicated by <paramref name="value" /> has a <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> property value that would cause the combined <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> values of all columns in the control to exceed 65535.  
  
 -or-  
  
 The column indicated by <paramref name="value" /> has <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> and <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property values that would display it among a set of adjacent columns with the opposite <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> control contains at least one row and the column indicated by <paramref name="value" /> has a <see cref="P:System.Windows.Forms.DataGridViewColumn.CellType" /> property value of <see langword="null" />.</exception>
      <returns>The index at which <paramref name="value" /> has been added.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Clear">
      <summary>Removes all elements from the collection.</summary>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /></exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether an object is in the collection.</summary>
      <param name="value">The <see cref="T:System.Object" /> to locate in the collection. The value can be <see langword="null" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if <paramref name="value" /> is found in the <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Determines the index of a specific item in the collection.</summary>
      <param name="value">The <see cref="T:System.Object" /> to locate in the collection. The value can be <see langword="null" />.</param>
      <returns>The zero-based index of the first occurrence of <paramref name="value" /> within the collection, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an element into the collection at the specified index.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The <see cref="T:System.Object" /> to insert. The value can be <see langword="null" />.</param>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.DataGridViewColumn" />.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The column indicated by <paramref name="value" /> already belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of the column indicated by <paramref name="value" /> is <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" /> and the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value is <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect" />. Use the control <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#BeginInit" /> and <see cref="M:System.Windows.Forms.DataGridView.System#ComponentModel#ISupportInitialize#EndInit" /> methods to temporarily set conflicting property values.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value of the column indicated by <paramref name="value" /> is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader" /> and the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> property value is <see langword="false" />.  
  
 -or-  
  
 The column indicated by <paramref name="value" /> has an <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill" /> and a <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value of <see langword="true" />.  
  
 -or-  
  
 The column indicated by <paramref name="value" /> has a <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> property value that would cause the combined <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> values of all columns in the control to exceed 65535.  
  
 -or-  
  
 The column indicated by <paramref name="value" /> has <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> and <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property values that would display it among a set of adjacent columns with the opposite <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" /> property value.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> control contains at least one row and the column indicated by <paramref name="value" /> has a <see cref="P:System.Windows.Forms.DataGridViewColumn.CellType" /> property value of <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of the specified object from the collection.</summary>
      <param name="value">The <see cref="T:System.Object" /> to remove from the collection. The value can be <see langword="null" />.</param>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.DataGridViewColumn" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="value" /> is not in the collection.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /></exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Removes the element with the specified index from the collection.</summary>
      <param name="index">The location of the element to delete.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero or greater than the number of columns in the control minus one.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new columns from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
-   Updating column <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property values.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /></exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.DataGridView">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridView" /> upon which the collection performs column-related operations.</summary>
      <returns>
        <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.Item(System.Int32)">
      <summary>Gets or sets the column at the given index in the collection.</summary>
      <param name="index">The zero-based index of the column to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero or greater than the number of columns in the collection minus one.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> at the given index.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.Item(System.String)">
      <summary>Gets or sets the column of the given name in the collection.</summary>
      <param name="columnName">The name of the column to get or set.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="columnName" /> is <see langword="null" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> identified by the <paramref name="columnName" /> parameter.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.List">
      <summary>Gets the list of elements contained in the <see cref="T:System.Windows.Forms.BaseCollection" /> instance.</summary>
      <returns>An <see cref="T:System.Collections.ArrayList" /> containing the elements of the collection. This property returns <see langword="null" /> unless overridden in a derived class.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#Count">
      <summary>Gets the number of elements in the collection.</summary>
      <returns>The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An <see cref="T:System.Object" /> that can be used to synchronize access to the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the element at the specified index.</summary>
      <param name="index">The zero-based index of the column to get.</param>
      <exception cref="T:System.NotSupportedException">This property is being set.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">When getting this property, <paramref name="index" /> is less than zero or greater than the number of columns in the collection minus one.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute">
      <summary>Specifies whether a column type is visible in the <see cref="T:System.Windows.Forms.DataGridView" /> designer. This class cannot be inherited.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Default">
      <summary>The default <see cref="T:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute" /> value, which is <see cref="F:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Yes" />, indicating that the column is visible in the <see cref="T:System.Windows.Forms.DataGridView" /> designer.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.No">
      <summary>A <see cref="T:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute" /> value indicating that the column is not visible in the <see cref="T:System.Windows.Forms.DataGridView" /> designer.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Yes">
      <summary>A <see cref="T:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute" /> value indicating that the column is visible in the <see cref="T:System.Windows.Forms.DataGridView" /> designer.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute" /> class using the default <see cref="P:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Visible" /> property value of <see langword="true" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.#ctor(System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute" /> class using the specified value to initialize the <see cref="P:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Visible" /> property.</summary>
      <param name="visible">The value of the <see cref="P:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Visible" /> property.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Equals(System.Object)">
      <summary>Gets a value indicating whether this object is equivalent to the specified object.</summary>
      <param name="obj">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />.</param>
      <returns>
        <see langword="true" /> to indicate that the specified object is a <see cref="T:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute" /> instance with the same <see cref="P:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Visible" /> property value as this instance; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.GetHashCode">
      <summary>Returns the hash code for this instance.</summary>
      <returns>A 32-bit signed integer hash code.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.IsDefaultAttribute">
      <summary>Gets a value indicating whether this attribute instance is equal to the <see cref="F:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Default" /> attribute value.</summary>
      <returns>
        <see langword="true" /> to indicate that this instance is equal to the <see cref="F:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Default" /> instance; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Visible">
      <summary>Gets a value indicating whether the column type is visible in the <see cref="T:System.Windows.Forms.DataGridView" /> designer.</summary>
      <returns>
        <see langword="true" /> to indicate that the column type is visible in the <see cref="T:System.Windows.Forms.DataGridView" /> designer; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.ColumnDividerDoubleClick" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs.#ctor(System.Int32,System.Windows.Forms.HandledMouseEventArgs)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs" /> class.</summary>
      <param name="columnIndex">The index of the column next to the column divider that was double-clicked.</param>
      <param name="e">A new <see cref="T:System.Windows.Forms.HandledMouseEventArgs" /> containing the inherited event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is less than -1.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs.ColumnIndex">
      <summary>The index of the column next to the column divider that was double-clicked.</summary>
      <returns>The index of the column next to the divider.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.ColumnDividerDoubleClick" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnEventArgs">
      <summary>Provides data for column-related events of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnEventArgs.#ctor(System.Windows.Forms.DataGridViewColumn)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> class.</summary>
      <param name="dataGridViewColumn">The column that the event occurs for.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewColumn" /> is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnEventArgs.Column">
      <summary>Gets the column that the event occurs for.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> that the event occurs for.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnEventHandler">
      <summary>Represents the method that will handle column-related events of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnHeaderCell">
      <summary>Represents a column header in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetClipboardContent(System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)">
      <summary>Retrieves the formatted value of the cell to copy to the <see cref="T:System.Windows.Forms.Clipboard" />.</summary>
      <param name="rowIndex">The zero-based index of the row containing the cell.</param>
      <param name="firstCell">
        <see langword="true" /> to indicate that the cell is in the first column of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="lastCell">
        <see langword="true" /> to indicate that the cell is the last column of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="inFirstRow">
        <see langword="true" /> to indicate that the cell is in the first row of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="inLastRow">
        <see langword="true" /> to indicate that the cell is in the last row of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="format">The current format string of the cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not -1.</exception>
      <returns>A <see cref="T:System.Object" /> that represents the value of the cell to copy to the <see cref="T:System.Windows.Forms.Clipboard" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> object and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not -1.</exception>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetInheritedContextMenuStrip(System.Int32)">
      <summary>Retrieves the inherited shortcut menu for the specified row.</summary>
      <param name="rowIndex">The index of the row to get the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> of. The index must be -1 to indicate the row of column headers.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not -1.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> of the column headers if one exists; otherwise, the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> inherited from <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Boolean)">
      <summary>Gets the style applied to the cell.</summary>
      <param name="inheritedCellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be populated with the inherited cell style.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="includeColors">
        <see langword="true" /> to include inherited colors in the returned cell style; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not -1.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that includes the style settings of the cell inherited from the cell's parent row, column, and <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not -1.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.GetValue(System.Int32)">
      <summary>Gets the value of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not -1.</exception>
      <returns>The value contained in the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the cell.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the cell that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="dataGridViewElementState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the cell that is being painted.</param>
      <param name="formattedValue">The formatted data of the cell that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.SetValue(System.Int32,System.Object)">
      <summary>Sets the value of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="value">The cell value to set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not -1.</exception>
      <returns>
        <see langword="true" /> if the value has been set; otherwise <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.ToString">
      <summary>Returns the string representation of the cell.</summary>
      <returns>A string that represents the current cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection">
      <summary>Gets or sets a value indicating which sort glyph is displayed.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.SortOrder" /> value.</exception>
      <exception cref="T:System.InvalidOperationException">When setting this property, the value of either the <see cref="P:System.Windows.Forms.DataGridViewCell.OwningColumn" /> property or the <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the cell is <see langword="null" />.  
  
 -or-  
  
 When changing the value of this property, the specified value is not <see cref="F:System.Windows.Forms.SortOrder.None" /> and the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property of the owning column is <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.NotSortable" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.SortOrder" /> value representing the current glyph. The default is <see cref="F:System.Windows.Forms.SortOrder.None" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject">
      <summary>Provides information about a <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" /> to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewColumnHeaderCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DoDefaultAction">
      <summary>Performs the default action associated with the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
      <summary>Navigates to another accessible object.</summary>
      <param name="navigationDirection">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</param>
      <exception cref="T:System.InvalidOperationException">.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>An object that's in the specified direction.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)">
      <summary>Modifies the column selection depending on the selection mode.</summary>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.AccessibleSelection" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Bounds">
      <summary>Gets the location and size of the accessible object.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The bounds of the accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DefaultAction">
      <summary>Gets a string that describes the default action of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The default action of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" /></returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Name">
      <summary>Gets the name of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The name of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Parent">
      <summary>Gets the parent of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The parent of the <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Role">
      <summary>Gets the role of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" />.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.RowHeader" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.State">
      <summary>Gets the state of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.AccessibleStates" /> values. The default is <see cref="F:System.Windows.Forms.AccessibleStates.Selectable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Value">
      <summary>Gets the value of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" />.</summary>
      <returns>The value of the <see cref="T:System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode">
      <summary>Defines values for specifying how the height of the column headers is adjusted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize">
      <summary>The column header height adjusts to fit the contents of all the column header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing">
      <summary>Users cannot adjust the column header height with the mouse.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.EnableResizing">
      <summary>Users can adjust the column header height with the mouse.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnSortMode">
      <summary>Defines how a <see cref="T:System.Windows.Forms.DataGridView" /> column can be sorted by the user.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic">
      <summary>The user can sort the column by clicking the column header (or pressing F3 on a cell) unless the column headers are used for selection. A sorting glyph will be displayed automatically.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewColumnSortMode.NotSortable">
      <summary>The column can only be sorted programmatically, but it is not intended for sorting, so the column header will not include space for a sorting glyph.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewColumnSortMode.Programmatic">
      <summary>The column can only be sorted programmatically, and the column header will include space for a sorting glyph.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.ColumnStateChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.#ctor(System.Windows.Forms.DataGridViewColumn,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs" /> class.</summary>
      <param name="dataGridViewColumn">The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> whose state has changed.</param>
      <param name="stateChanged">One of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentNullException">.NET 6+ only: <paramref name="dataGridViewColumn" /> is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.Column">
      <summary>Gets the column whose state changed.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> whose state changed.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.StateChanged">
      <summary>Gets the new column state.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewColumnStateChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.ColumnStateChanged" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewComboBoxCell">
      <summary>Displays a combo box in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.CreateAccessibilityInstance">
      <summary>Creates a new <see cref="T:System.Windows.Forms.AccessibleObject" /> for this <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> instance.</summary>
      <returns>A <see cref="T:System.Windows.Forms.AccessibleObject" /> instance that supports the <see cref="T:System.Windows.Automation.ControlType" /> UI Automation property.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.DetachEditingControl">
      <summary>Removes the cell's editing control from the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's error icon, if one is displayed; otherwise, <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.GetFormattedValue(System.Object,System.Int32,System.Windows.Forms.DataGridViewCellStyle@,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter,System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Gets the formatted value of the cell's data.</summary>
      <param name="value">The value to be formatted.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> in effect for the cell.</param>
      <param name="valueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> associated with the value type that provides custom conversion to the formatted value type, or <see langword="null" /> if no such custom conversion is needed.</param>
      <param name="formattedValueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> associated with the formatted value type that provides custom conversion from the value type, or <see langword="null" /> if no such custom conversion is needed.</param>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values describing the context in which the formatted value is needed.</param>
      <exception cref="T:System.Exception">Formatting failed and either there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event of the <see cref="T:System.Windows.Forms.DataGridView" /> control or the handler set the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException" /> property to <see langword="true" />. The exception object can typically be cast to type <see cref="T:System.FormatException" /> for type conversion errors or to type <see cref="T:System.ArgumentException" /> if <paramref name="value" /> cannot be found in the <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> or the <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.Items" /> collection.</exception>
      <returns>The value of the cell's data after formatting has been applied or <see langword="null" /> if the cell is not part of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Attaches and initializes the hosted editing control.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="initialFormattedValue">The initial value to be displayed in the control.</param>
      <param name="dataGridViewCellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that determines the appearance of the hosted control.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs)">
      <summary>Determines if edit mode should be started based on the given key.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that represents the key that was pressed.</param>
      <returns>
        <see langword="true" /> if edit mode should be started; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.OnDataGridViewChanged">
      <summary>Called when the <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the cell changes.</summary>
      <exception cref="T:System.ArgumentException">The <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property is not <see langword="null" /> and the value of either the <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DisplayMember" /> property or the <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.ValueMember" /> property is not <see langword="null" /> or <see cref="F:System.String.Empty" /> and does not name a valid property or column in the data source.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.OnEnter(System.Int32,System.Boolean)">
      <summary>Called when the focus moves to a cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if a user action moved focus to the cell; <see langword="false" /> if a programmatic operation moved focus to the cell.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.OnLeave(System.Int32,System.Boolean)">
      <summary>Called when the focus moves from a cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if a user action moved focus from the cell; <see langword="false" /> if a programmatic operation moved focus from the cell.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the user clicks a mouse button while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.OnMouseEnter(System.Int32)">
      <summary>Called when the mouse pointer moves over a cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.OnMouseLeave(System.Int32)">
      <summary>Called when the mouse pointer leaves the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse pointer moves within a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the cell.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the cell that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="elementState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the cell that is being painted.</param>
      <param name="formattedValue">The formatted data of the cell that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ParseFormattedValue(System.Object,System.Windows.Forms.DataGridViewCellStyle,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)">
      <summary>Converts a value formatted for display to an actual cell value.</summary>
      <param name="formattedValue">The display value of the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> in effect for the cell.</param>
      <param name="formattedValueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> for the display value type, or null to use the default converter.</param>
      <param name="valueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> for the cell value type, or null to use the default converter.</param>
      <returns>The cell value.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ToString">
      <summary>Returns a string that describes the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.AutoComplete">
      <summary>Gets or sets a value indicating whether the cell will match the characters being entered in the cell with a selection from the drop-down list.</summary>
      <returns>
        <see langword="true" /> if automatic completion is activated; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource">
      <summary>Gets or sets the data source whose data contains the possible selections shown in the drop-down list.</summary>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is not <see langword="null" /> and is not of type <see cref="T:System.Collections.IList" /> nor <see cref="T:System.ComponentModel.IListSource" />.</exception>
      <returns>An <see cref="T:System.Collections.IList" /> or <see cref="T:System.ComponentModel.IListSource" /> that contains a collection of values used to supply data to the drop-down list. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.DisplayMember">
      <summary>Gets or sets a string that specifies where to gather selections to display in the drop-down list.</summary>
      <exception cref="T:System.ArgumentException">The <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property is not <see langword="null" /> and the specified value when setting this property is not <see langword="null" /> or <see cref="F:System.String.Empty" /> and does not name a valid property or column in the data source.</exception>
      <returns>A string specifying the name of a property or column in the data source specified in the <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property. The default value is <see cref="F:System.String.Empty" />, which indicates that the <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DisplayMember" /> property will not be used.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyle">
      <summary>Gets or sets a value that determines how the combo box is displayed when it is not in edit mode.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.DataGridViewComboBoxDisplayStyle" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewComboBoxDisplayStyle" /> values. The default is <see cref="F:System.Windows.Forms.DataGridViewComboBoxDisplayStyle.DropDownButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyleForCurrentCellOnly">
      <summary>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyle" /> property value applies to the cell only when it is the current cell in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <returns>
        <see langword="true" /> if the display style applies to the cell only when it is the current cell; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.DropDownWidth">
      <summary>Gets or sets the width of the of the drop-down list portion of a combo box.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value is less than one.</exception>
      <returns>The width, in pixels, of the drop-down list. The default is 1.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.EditType">
      <summary>Gets the type of the cell's hosted editing control.</summary>
      <returns>The <see cref="T:System.Type" /> of the underlying editing control. This property always returns <see cref="T:System.Windows.Forms.DataGridViewComboBoxEditingControl" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.FlatStyle">
      <summary>Gets or sets the flat style appearance of the cell.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not a valid <see cref="T:System.Windows.Forms.FlatStyle" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.FlatStyle" /> values. The default value is <see cref="F:System.Windows.Forms.FlatStyle.Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.FormattedValueType">
      <summary>Gets the class type of the formatted value associated with the cell.</summary>
      <returns>The type of the cell's formatted value. This property always returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.Items">
      <summary>Gets the objects that represent the selection displayed in the drop-down list.</summary>
      <returns>An <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" /> containing the selection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.MaxDropDownItems">
      <summary>Gets or sets the maximum number of items shown in the drop-down list.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 1 or greater than 100 when setting this property.</exception>
      <returns>The number of drop-down list items to allow. The minimum is 1 and the maximum is 100; the default is 8.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.Sorted">
      <summary>Gets or sets a value indicating whether the items in the combo box are automatically sorted.</summary>
      <exception cref="T:System.ArgumentException">An attempt was made to sort a cell that is attached to a data source.</exception>
      <returns>
        <see langword="true" /> if the combo box is sorted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.ValueMember">
      <summary>Gets or sets a string that specifies where to gather the underlying values used in the drop-down list.</summary>
      <exception cref="T:System.ArgumentException">The <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property is not <see langword="null" /> and the specified value when setting this property is not <see langword="null" /> or <see cref="F:System.String.Empty" /> and does not name a valid property or column in the data source.</exception>
      <returns>A string specifying the name of a property or column. The default value is <see cref="F:System.String.Empty" />, which indicates that this property is ignored.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.ValueType">
      <summary>Gets or sets the data type of the values in the cell.</summary>
      <returns>A <see cref="T:System.Type" /> representing the data type of the value in the cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject">
      <summary>Represents the accessibility object for the current <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> object.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)">
      <summary>Instantiates a new instance of the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> control to which this object belongs.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection">
      <summary>Represents the collection of selection choices in a <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.#ctor(System.Windows.Forms.DataGridViewComboBoxCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> that owns the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Add(System.Object)">
      <summary>Adds an item to the list of items for a <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</summary>
      <param name="item">An object representing the item to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="item" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The cell's <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property value is not <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The cell is in a shared row.</exception>
      <returns>The position into which the new element was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.AddRange(System.Object[])">
      <summary>Adds one or more items to the list of items for a <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</summary>
      <param name="items">One or more objects that represent items for the drop-down list.  
  
 -or-  
  
 An <see cref="T:System.Array" /> of <see cref="T:System.Object" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="items" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">One or more of the items in the <paramref name="items" /> array is <see langword="null" />.

-or-

The cell is in a shared row.</exception>
      <exception cref="T:System.ArgumentException">The cell's <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property value is not <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.AddRange(System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection)">
      <summary>Adds the items of an existing <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" /> to the list of items in a <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" /> to load into this collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">One or more of the items in the <paramref name="value" /> collection is <see langword="null" />.

-or-

The cell is in a shared row.</exception>
      <exception cref="T:System.ArgumentException">The cell's <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property value is not <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Clear">
      <summary>Clears all items from the collection.</summary>
      <exception cref="T:System.ArgumentException">The collection contains at least one item and the cell's <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property value is not <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The collection contains at least one item and the cell is in a shared row.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Contains(System.Object)">
      <summary>Determines whether the specified item is contained in the collection.</summary>
      <param name="value">An object representing the item to locate in the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the <paramref name="item" /> is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.CopyTo(System.Object[],System.Int32)">
      <summary>Copies the entire collection into an existing array of objects at a specified location within the array.</summary>
      <param name="destination">The destination array to which the contents will be copied.</param>
      <param name="arrayIndex">The index of the element in <paramref name="destination" /> at which to start copying.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destination" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="arrayIndex" /> is less than 0 or equal to or greater than the length of <paramref name="destination" />.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of <paramref name="destination" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="destination" /> is multidimensional.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through a <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" />.</summary>
      <returns>An enumerator of type <see cref="T:System.Collections.IEnumerator" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.IndexOf(System.Object)">
      <summary>Returns the index of the specified item in the collection.</summary>
      <param name="value">An object representing the item to locate in the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <returns>The zero-based index of the <paramref name="value" /> parameter if it is found in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the collection at the specified index.</summary>
      <param name="index">The zero-based index at which to place <paramref name="item" /> within an unsorted <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</param>
      <param name="item">An object representing the item to insert.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="item" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than the number of items in the collection.</exception>
      <exception cref="T:System.ArgumentException">The cell's <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property value is not <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The cell is in a shared row.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Remove(System.Object)">
      <summary>Removes the specified object from the collection.</summary>
      <param name="value">An object representing the item to remove from the collection.</param>
      <exception cref="T:System.ArgumentException">The cell's <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property value is not <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The cell is in a shared row.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.RemoveAt(System.Int32)">
      <summary>Removes the object at the specified index.</summary>
      <param name="index">The zero-based index of the object to be removed.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than the number of items in the collection minus one.</exception>
      <exception cref="T:System.ArgumentException">The cell's <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property value is not <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The cell is in a shared row.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to the specified array, starting at the specified index.</summary>
      <param name="destination">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destination" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or equal to or greater than the length of <paramref name="destination" />.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="destination" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="destination" /> is multidimensional.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an object to the collection.</summary>
      <param name="item">The object to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="item" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The cell's <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property value is not <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The cell is in a shared row.</exception>
      <returns>The position in which to insert the new element.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Item(System.Int32)">
      <summary>Gets or sets the item at the current index location. In C#, this property is the indexer for the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" /> class.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than the number of items in the collection minus one.</exception>
      <exception cref="T:System.ArgumentNullException">The specified value when setting this property is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">When setting this property, the cell's <see cref="P:System.Windows.Forms.DataGridViewComboBoxCell.DataSource" /> property value is not <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">When setting this property, the cell is in a shared row.</exception>
      <returns>The <see cref="T:System.Object" /> stored at the given index.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewComboBoxColumn">
      <summary>Represents a column of <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxColumn.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewTextBoxColumn" /> class to the default state.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxColumn.Clone">
      <summary>Creates an exact copy of this column.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewComboBoxColumn" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxColumn.ToString">
      <summary>Gets a string that describes the column.</summary>
      <returns>A <see cref="T:System.String" /> that describes the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.AutoComplete">
      <summary>Gets or sets a value indicating whether cells in the column will match the characters being entered in the cell with one from the possible selections.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if auto completion is activated; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate">
      <summary>Gets or sets the template used to create cells.</summary>
      <exception cref="T:System.InvalidCastException">When setting this property to a value that is not of type <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell" /> that all other cells in the column are modeled after. The default value is a new <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.DataSource">
      <summary>Gets or sets the data source that populates the selections for the combo boxes.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>An object that represents a data source. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.DisplayMember">
      <summary>Gets or sets a string that specifies the property or column from which to retrieve strings for display in the combo boxes.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.String" /> that specifies the name of a property or column in the data source specified in the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.DataSource" /> property. The default is <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyle">
      <summary>Gets or sets a value that determines how the combo box is displayed when not editing.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewComboBoxDisplayStyle" /> value indicating the combo box appearance. The default is <see cref="F:System.Windows.Forms.DataGridViewComboBoxDisplayStyle.DropDownButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyleForCurrentCellOnly">
      <summary>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyle" /> property value applies only to the current cell in the <see cref="T:System.Windows.Forms.DataGridView" /> control when the current cell is in this column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the display style applies only to the current cell; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.DropDownWidth">
      <summary>Gets or sets the width of the drop-down lists of the combo boxes.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>The width, in pixels, of the drop-down lists. The default is 1.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.FlatStyle">
      <summary>Gets or sets the flat style appearance of the column's cells.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.FlatStyle" /> value indicating the cell appearance. The default is <see cref="F:System.Windows.Forms.FlatStyle.Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.Items">
      <summary>Gets the collection of objects used as selections in the combo boxes.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection" /> that represents the selections in the combo boxes.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.MaxDropDownItems">
      <summary>Gets or sets the maximum number of items in the drop-down list of the cells in the column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>The maximum number of drop-down list items, from 1 to 100. The default is 8.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.Sorted">
      <summary>Gets or sets a value indicating whether the items in the combo box are sorted.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the combo box is sorted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxColumn.ValueMember">
      <summary>Gets or sets a string that specifies the property or column from which to get values that correspond to the selections in the drop-down list.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.String" /> that specifies the name of a property or column used in the <see cref="P:System.Windows.Forms.DataGridViewComboBoxColumn.DataSource" /> property. The default is <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewComboBoxDisplayStyle">
      <summary>Defines constants that indicate how a <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> is displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox">
      <summary>When it is not in edit mode, the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> mimics the appearance of a <see cref="T:System.Windows.Forms.ComboBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewComboBoxDisplayStyle.DropDownButton">
      <summary>When it is not in edit mode, the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> is displayed with a drop-down button but does not otherwise mimic the appearance of a <see cref="T:System.Windows.Forms.ComboBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewComboBoxDisplayStyle.Nothing">
      <summary>When it is not in edit mode, the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> is displayed without a drop-down button.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewComboBoxEditingControl">
      <summary>Represents the hosted combo box control in a <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxEditingControl.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewComboBoxEditingControl" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Changes the control's user interface (UI) to be consistent with the specified cell style.</summary>
      <param name="dataGridViewCellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to use as a pattern for the UI.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later versions: The <paramref name="dataGridViewCellStyle" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxEditingControl.CreateAccessibilityInstance">
      <summary>Creates a new <see cref="T:System.Windows.Forms.AccessibleObject" /> for this <see cref="T:System.Windows.Forms.DataGridViewComboBoxEditingControl" /> instance.</summary>
      <returns>A new accessibility object.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
      <summary>Determines whether the specified key is a regular input key that the editing control should process or a special key that the <see cref="T:System.Windows.Forms.DataGridView" /> should process.</summary>
      <param name="keyData">A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key that was pressed.</param>
      <param name="dataGridViewWantsInputKey">
        <see langword="true" /> to indicate that the <see cref="T:System.Windows.Forms.DataGridView" /> control can process the key; otherwise, <see langword="false" />.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key that should be handled by the editing control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Retrieves the formatted value of the cell.</summary>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the data error context.</param>
      <returns>An <see cref="T:System.Object" /> that represents the formatted version of the cell contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxEditingControl.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxEditingControl.OnSelectedIndexChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.SelectedIndexChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewComboBoxEditingControl.PrepareEditingControlForEdit(System.Boolean)">
      <summary>Prepares the currently selected cell for editing.</summary>
      <param name="selectAll">
        <see langword="true" /> to select all of the cell's content; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlDataGridView">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.DataGridView" /> that contains the combo box control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridView" /> that contains the <see cref="T:System.Windows.Forms.DataGridViewComboBoxCell" /> that contains this control; otherwise, <see langword="null" /> if there is no associated <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlFormattedValue">
      <summary>Gets or sets the formatted representation of the current value of the control.</summary>
      <returns>An object representing the current value of this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlRowIndex">
      <summary>Gets or sets the index of the owning cell's parent row.</summary>
      <returns>The index of the row that contains the owning cell; -1 if there is no owning row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlValueChanged">
      <summary>Gets or sets a value indicating whether the current value of the control has changed.</summary>
      <returns>
        <see langword="true" /> if the value of the control has changed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingPanelCursor">
      <summary>Gets the cursor used during editing.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor image used by the mouse pointer during editing.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewComboBoxEditingControl.RepositionEditingControlOnValueChange">
      <summary>Gets a value indicating whether the cell contents need to be repositioned whenever the value changes.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewContentAlignment">
      <summary>Defines constants that indicate the alignment of content within a <see cref="T:System.Windows.Forms.DataGridView" /> cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.BottomCenter">
      <summary>The content is aligned vertically at the bottom and horizontally at the center of a cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.BottomLeft">
      <summary>The content is aligned vertically at the bottom and horizontally at the left of a cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.BottomRight">
      <summary>The content is aligned vertically at the bottom and horizontally at the right of a cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter">
      <summary>The content is aligned at the vertical and horizontal center of a cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft">
      <summary>The content is aligned vertically at the middle and horizontally at the left of a cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.MiddleRight">
      <summary>The content is aligned vertically at the middle and horizontally at the right of a cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.NotSet">
      <summary>The alignment is not set.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.TopCenter">
      <summary>The content is aligned vertically at the top and horizontally at the center of a cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.TopLeft">
      <summary>The content is aligned vertically at the top and horizontally at the left of a cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewContentAlignment.TopRight">
      <summary>The content is aligned vertically at the top and horizontally at the right of a cell.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewDataErrorContexts">
      <summary>Represents the state of a data-bound <see cref="T:System.Windows.Forms.DataGridView" /> control when a data error occurred.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.ClipboardContent">
      <summary>A data error occurred when copying content to the Clipboard. This value indicates that the cell value could not be converted to a string.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.Commit">
      <summary>A data error occurred when committing changes to the data store. This value indicates that data entered in a cell could not be committed to the underlying data store.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.CurrentCellChange">
      <summary>A data error occurred when the selection cursor moved to another cell. This value indicates that a user selected a cell when the previously selected cell had an error condition.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.Display">
      <summary>A data error occurred when displaying a cell that was populated by a data source. This value indicates that the value from the data source cannot be displayed by the cell, or a mapping that translates the value from the data source to the cell is missing.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.Formatting">
      <summary>A data error occurred when trying to format data that is either being sent to a data store, or being loaded from a data store. This value indicates that a change to a cell failed to format correctly. Either the new cell value needs to be corrected or the cell's formatting needs to change.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.InitialValueRestoration">
      <summary>A data error occurred when restoring a cell to its previous value. This value indicates that a cell tried to cancel an edit and the rollback to the initial value failed. This can occur if the cell formatting changed so that it is incompatible with the initial value.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.LeaveControl">
      <summary>A data error occurred when the <see cref="T:System.Windows.Forms.DataGridView" /> lost focus. This value indicates that the <see cref="T:System.Windows.Forms.DataGridView" /> could not commit user changes after losing focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.Parsing">
      <summary>A data error occurred when parsing new data. This value indicates that the <see cref="T:System.Windows.Forms.DataGridView" /> could not parse new data that was entered by the user or loaded from the underlying data store.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.PreferredSize">
      <summary>A data error occurred when calculating the preferred size of a cell. This value indicates that the <see cref="T:System.Windows.Forms.DataGridView" /> failed to calculate the preferred width or height of a cell when programmatically resizing a column or row. This can occur if the cell failed to format its value.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.RowDeletion">
      <summary>A data error occurred when deleting a row. This value indicates that the underlying data store threw an exception when a data-bound <see cref="T:System.Windows.Forms.DataGridView" /> deleted a row.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewDataErrorContexts.Scroll">
      <summary>A data error occurred when scrolling a new region into view. This value indicates that a cell with data errors scrolled into view programmatically or with the scroll bar.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewDataErrorEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewDataErrorEventArgs.#ctor(System.Exception,System.Int32,System.Int32,System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewDataErrorEventArgs" /> class.</summary>
      <param name="exception">The exception that occurred.</param>
      <param name="columnIndex">The column index of the cell that raised the <see cref="E:System.Windows.Forms.DataGridView.DataError" />.</param>
      <param name="rowIndex">The row index of the cell that raised the <see cref="E:System.Windows.Forms.DataGridView.DataError" />.</param>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values indicating the context in which the error occurred.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.Context">
      <summary>Gets details about the state of the <see cref="T:System.Windows.Forms.DataGridView" /> when the error occurred.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the context in which the error occurred.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.Exception">
      <summary>Gets the exception that represents the error.</summary>
      <returns>An <see cref="T:System.Exception" /> that represents the error.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException">
      <summary>Gets or sets a value indicating whether to throw the exception after the <see cref="T:System.Windows.Forms.DataGridViewDataErrorEventHandler" /> delegate is finished with it.</summary>
      <exception cref="T:System.ArgumentException">When setting this property to <see langword="true" />, the <see cref="P:System.Windows.Forms.DataGridViewDataErrorEventArgs.Exception" /> property value is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the exception should be thrown; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewDataErrorEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewDataErrorEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.EditingControlShowing" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.#ctor(System.Windows.Forms.Control,System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs" /> class.</summary>
      <param name="control">A <see cref="T:System.Windows.Forms.Control" /> in which the user will edit the selected cell's contents.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> representing the style of the cell being edited.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> or <paramref name="cellStyle" /> is null.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.CellStyle">
      <summary>Gets or sets the cell style of the edited cell.</summary>
      <exception cref="T:System.ArgumentNullException">The specified value when setting this property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> representing the style of the cell being edited.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.Control">
      <summary>The control shown to the user for editing the selected cell's value.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Control" /> that displays an area for the user to enter or change the selected cell's value.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewEditingControlShowingEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.EditingControlShowing" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewEditMode">
      <summary>Specifies how a user starts cell editing in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewEditMode.EditOnEnter">
      <summary>Editing begins when the cell receives focus. This mode is useful when pressing the TAB key to enter values across a row, or when pressing the ENTER key to enter values down a column.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewEditMode.EditOnF2">
      <summary>Editing begins when F2 is pressed while the cell has focus. This mode places the selection point at the end of the cell contents.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewEditMode.EditOnKeystroke">
      <summary>Editing begins when any alphanumeric key is pressed while the cell has focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewEditMode.EditOnKeystrokeOrF2">
      <summary>Editing begins when any alphanumeric key or F2 is pressed while the cell has focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewEditMode.EditProgrammatically">
      <summary>Editing begins only when the <see cref="M:System.Windows.Forms.DataGridView.BeginEdit(System.Boolean)" /> method is called.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewElement">
      <summary>Provides the base class for elements of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewElement.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewElement" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewElement.OnDataGridViewChanged">
      <summary>Called when the element is associated with a different <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewElement.RaiseCellClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewElement.RaiseCellContentClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContentClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewElement.RaiseCellContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContentDoubleClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewElement.RaiseCellValueChanged(System.Windows.Forms.DataGridViewCellEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValueChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewElement.RaiseDataError(System.Windows.Forms.DataGridViewDataErrorEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewDataErrorEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewElement.RaiseMouseWheel(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewElement.DataGridView">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridView" /> control associated with this element.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridView" /> control that contains this element. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewElement.State">
      <summary>Gets the user interface (UI) state of the element.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values representing the state.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewElementStates">
      <summary>Specifies the user interface (UI) state of a element within a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewElementStates.Displayed">
      <summary>Indicates the an element is currently displayed onscreen.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewElementStates.Frozen">
      <summary>Indicates that an element cannot be scrolled through the UI.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewElementStates.None">
      <summary>Indicates that an element is in its default state.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewElementStates.ReadOnly">
      <summary>Indicates that an element will not accept user input to change its value.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewElementStates.Resizable">
      <summary>Indicates that an element can be resized through the UI. This value is ignored except when combined with the <see cref="F:System.Windows.Forms.DataGridViewElementStates.ResizableSet" /> value.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewElementStates.ResizableSet">
      <summary>Indicates that an element does not inherit the resizable state of its parent.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewElementStates.Selected">
      <summary>Indicates that an element is in a selected (highlighted) UI state.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewElementStates.Visible">
      <summary>Indicates that an element is visible (displayable).</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewHeaderBorderStyle">
      <summary>Specifies the border style that can be applied to the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle" /> and <see cref="P:System.Windows.Forms.DataGridView.RowHeadersBorderStyle" /> properties of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Custom">
      <summary>A border that has been customized.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.None">
      <summary>No borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Raised">
      <summary>A three-dimensional raised border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Single">
      <summary>A single-line border.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken">
      <summary>A three-dimensional sunken border.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewHeaderCell">
      <summary>Contains functionality common to row header cells and column header cells.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.GetInheritedContextMenuStrip(System.Int32)">
      <summary>Gets the shortcut menu of the header cell.</summary>
      <param name="rowIndex">Ignored by this implementation.</param>
      <returns>A <see cref="T:System.Windows.Forms.ContextMenuStrip" /> if the <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" /> or <see cref="T:System.Windows.Forms.DataGridView" /> has a shortcut menu assigned; otherwise, <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.GetInheritedState(System.Int32)">
      <summary>Returns a value indicating the current state of the cell as inherited from the state of its row or column.</summary>
      <param name="rowIndex">The index of the row containing the cell or -1 if the cell is not a row header cell or is not contained within a <see cref="T:System.Windows.Forms.DataGridView" /> control.</param>
      <exception cref="T:System.ArgumentException">The cell is a row header cell, the cell is not contained within a <see cref="T:System.Windows.Forms.DataGridView" /> control, and <paramref name="rowIndex" /> is not -1.  
  
-or-
  
 The cell is a row header cell, the cell is contained within a <see cref="T:System.Windows.Forms.DataGridView" /> control, and <paramref name="rowIndex" /> is outside the valid range of 0 to the number of rows in the control minus 1.  
  
-or-
  
 The cell is a row header cell and <paramref name="rowIndex" /> is not the index of the row containing this cell.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The cell is a column header cell or the control's <see cref="P:System.Windows.Forms.DataGridView.TopLeftHeaderCell" /> and <paramref name="rowIndex" /> is not -1.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values representing the current state of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.GetSize(System.Int32)">
      <summary>Gets the size of the cell.</summary>
      <param name="rowIndex">The row index of the header cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property for this cell is <see langword="null" /> and <paramref name="rowIndex" /> does not equal -1.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.OwningColumn" /> property for this cell is not <see langword="null" /> and <paramref name="rowIndex" /> does not equal -1.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.OwningRow" /> property for this cell is not <see langword="null" /> and <paramref name="rowIndex" /> is less than zero or greater than or equal to the number of rows in the control.  
  
 -or-  
  
 The values of the <see cref="P:System.Windows.Forms.DataGridViewCell.OwningColumn" /> and <see cref="P:System.Windows.Forms.DataGridViewCell.OwningRow" /> properties of this cell are both <see langword="null" /> and <paramref name="rowIndex" /> does not equal -1.</exception>
      <exception cref="T:System.ArgumentException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.OwningRow" /> property for this cell is not <see langword="null" /> and <paramref name="rowIndex" /> indicates a row other than the <see cref="P:System.Windows.Forms.DataGridViewCell.OwningRow" />.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the size of the header cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.GetValue(System.Int32)">
      <summary>Gets the value of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is not -1.</exception>
      <returns>The value of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether a row will be unshared when the mouse button is held down while the pointer is on a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the mouse position.</param>
      <returns>
        <see langword="true" /> if the user clicks with the left mouse button, visual styles are enabled, and the <see cref="P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles" /> property is <see langword="true" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.MouseEnterUnsharesRow(System.Int32)">
      <summary>Indicates whether a row will be unshared when the mouse pointer moves over a cell in the row.</summary>
      <param name="rowIndex">The index of the row that the mouse pointer entered.</param>
      <returns>
        <see langword="true" /> if visual styles are enabled, and the <see cref="P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles" /> property is <see langword="true" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.MouseLeaveUnsharesRow(System.Int32)">
      <summary>Indicates whether a row will be unshared when the mouse pointer leaves the row.</summary>
      <param name="rowIndex">The index of the row that the mouse pointer left.</param>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.DataGridViewHeaderCell.ButtonState" /> property value is not <see cref="F:System.Windows.Forms.ButtonState.Normal" />, visual styles are enabled, and the <see cref="P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles" /> property is <see langword="true" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether a row will be unshared when the mouse button is released while the pointer is on a cell in the row.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the mouse position.</param>
      <returns>
        <see langword="true" /> if the left mouse button was released, visual styles are enabled, and the <see cref="P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles" /> property is <see langword="true" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse button is held down while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the mouse position.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.OnMouseEnter(System.Int32)">
      <summary>Called when the mouse pointer enters the cell.</summary>
      <param name="rowIndex">The index of the row containing the cell.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.OnMouseLeave(System.Int32)">
      <summary>Called when the mouse pointer leaves the cell.</summary>
      <param name="rowIndex">The index of the row containing the cell.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse button is released while the pointer is over the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the mouse position.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the cell.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the cell that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="dataGridViewElementState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the cell that is being painted.</param>
      <param name="formattedValue">The formatted data of the cell that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewHeaderCell.ToString">
      <summary>Returns a string that describes the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewHeaderCell.ButtonState">
      <summary>Gets the buttonlike visual state of the header cell.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ButtonState" /> values; the default is <see cref="F:System.Windows.Forms.ButtonState.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewHeaderCell.Displayed">
      <summary>Gets a value that indicates whether the cell is currently displayed on-screen.</summary>
      <returns>
        <see langword="true" /> if the cell is on-screen or partially on-screen; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewHeaderCell.FormattedValueType">
      <summary>Gets the type of the formatted value of the cell.</summary>
      <returns>A <see cref="T:System.Type" /> object representing the <see cref="T:System.String" /> type.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewHeaderCell.Frozen">
      <summary>Gets a value indicating whether the cell is frozen.</summary>
      <returns>
        <see langword="true" /> if the cell is frozen; otherwise, <see langword="false" />. The default is <see langword="false" /> if the cell is detached from a <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewHeaderCell.ReadOnly">
      <summary>Gets a value indicating whether the header cell is read-only.</summary>
      <exception cref="T:System.InvalidOperationException">An operation tries to set this property.</exception>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewHeaderCell.Resizable">
      <summary>Gets a value indicating whether the cell is resizable.</summary>
      <returns>
        <see langword="true" /> if this cell can be resized; otherwise, <see langword="false" />. The default is <see langword="false" /> if the cell is not attached to a <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewHeaderCell.Selected">
      <summary>Gets or sets a value indicating whether the cell is selected.</summary>
      <exception cref="T:System.InvalidOperationException">This property is being set.</exception>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewHeaderCell.ValueType">
      <summary>Gets the type of the value stored in the cell.</summary>
      <returns>A <see cref="T:System.Type" /> object representing the <see cref="T:System.String" /> type.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewHeaderCell.Visible">
      <summary>Gets a value indicating whether or not the cell is visible.</summary>
      <returns>
        <see langword="true" /> if the cell is visible; otherwise, <see langword="false" />. The default is <see langword="false" /> if the cell is detached from a <see cref="T:System.Windows.Forms.DataGridView" /></returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewHitTestType">
      <summary>Specifies a location in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHitTestType.Cell">
      <summary>A cell in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHitTestType.ColumnHeader">
      <summary>A column header in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHitTestType.HorizontalScrollBar">
      <summary>The horizontal scroll bar of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHitTestType.None">
      <summary>An empty part of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHitTestType.RowHeader">
      <summary>A row header in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHitTestType.TopLeftHeader">
      <summary>The top left column header in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewHitTestType.VerticalScrollBar">
      <summary>The vertical scroll bar of the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewImageCell">
      <summary>Displays a graphic in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewImageCell" /> class, configuring it for use with cell values other than <see cref="T:System.Drawing.Icon" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.#ctor(System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewImageCell" /> class, optionally configuring it for use with <see cref="T:System.Drawing.Icon" /> cell values.</summary>
      <param name="valueIsIcon">The cell will display an <see cref="T:System.Drawing.Icon" /> value.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewImageCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridViewImageCell" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridViewImageCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's error icon, if one is displayed; otherwise, <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.GetFormattedValue(System.Object,System.Int32,System.Windows.Forms.DataGridViewCellStyle@,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter,System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Returns a graphic as it would be displayed in the cell.</summary>
      <param name="value">The value to be formatted.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> in effect for the cell.</param>
      <param name="valueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> associated with the value type that provides custom conversion to the formatted value type, or <see langword="null" /> if no such custom conversion is needed.</param>
      <param name="formattedValueTypeConverter">A <see cref="T:System.ComponentModel.TypeConverter" /> associated with the formatted value type that provides custom conversion from the value type, or <see langword="null" /> if no such custom conversion is needed.</param>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values describing the context in which the formatted value is needed.</param>
      <returns>An object that represents the formatted image.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.GetValue(System.Int32)">
      <summary>Gets the value of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The value contained in the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewImageCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the cell.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the cell that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="elementState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the cell that is being painted.</param>
      <param name="formattedValue">The formatted data of the cell that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.ToString">
      <summary>Returns a string that describes the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.DefaultNewRowValue">
      <summary>Gets the default value that is used when creating a new row.</summary>
      <returns>An object containing a default image placeholder, or <see langword="null" /> to display an empty cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.Description">
      <summary>Gets or sets the text associated with the image.</summary>
      <returns>The text associated with the image displayed in the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.EditType">
      <summary>Gets the type of the cell's hosted editing control.</summary>
      <returns>The <see cref="T:System.Type" /> of the underlying editing control. As implemented in this class, this property is always <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.FormattedValueType">
      <summary>Gets the type of the formatted value associated with the cell.</summary>
      <returns>A <see cref="T:System.Type" /> object representing display value type of the cell, which is the <see cref="T:System.Drawing.Image" /> type if the <see cref="P:System.Windows.Forms.DataGridViewImageCell.ValueIsIcon" /> property is set to <see langword="false" /> or the <see cref="T:System.Drawing.Icon" /> type otherwise.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.ImageLayout">
      <summary>Gets or sets the graphics layout for the cell.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The supplied <see cref="T:System.Windows.Forms.DataGridViewImageCellLayout" /> value is invalid.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewImageCellLayout" /> for this cell. The default is <see cref="F:System.Windows.Forms.DataGridViewImageCellLayout.NotSet" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.ValueIsIcon">
      <summary>Gets or sets a value indicating whether this cell displays an <see cref="T:System.Drawing.Icon" /> value.</summary>
      <returns>
        <see langword="true" /> if this cell displays an <see cref="T:System.Drawing.Icon" /> value; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.ValueType">
      <summary>Gets or sets the data type of the values in the cell.</summary>
      <returns>The <see cref="T:System.Type" /> of the cell's value.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject">
      <summary>Provides information about a <see cref="T:System.Windows.Forms.DataGridViewImageCell" /> to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DoDefaultAction">
      <summary>Performs the default action of the <see cref="T:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.GetChildCount">
      <summary>Gets the number of child accessible objects that belong to the <see cref="T:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject" />.</summary>
      <returns>The value -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DefaultAction">
      <summary>Gets a string that represents the default action of the <see cref="T:System.Windows.Forms.DataGridViewImageCell" />.</summary>
      <returns>An empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Description">
      <summary>Gets the text associated with the image in the image cell.</summary>
      <returns>The text associated with the image in the image cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Value">
      <summary>Gets a string representing the formatted value of the owning cell.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.String" /> representation of the cell value.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewImageCellLayout">
      <summary>Specifies the layout for an image contained in a <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewImageCellLayout.Normal">
      <summary>The graphic is displayed centered using its native resolution.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewImageCellLayout.NotSet">
      <summary>The layout specification has not been set.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewImageCellLayout.Stretch">
      <summary>The graphic is stretched by the percentages required to fit the width and height of the containing cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewImageCellLayout.Zoom">
      <summary>The graphic is uniformly enlarged until it fills the width or height of the containing cell.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewImageColumn">
      <summary>Hosts a collection of <see cref="T:System.Windows.Forms.DataGridViewImageCell" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageColumn.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewImageColumn" /> class, configuring it for use with cell values of type <see cref="T:System.Drawing.Image" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageColumn.#ctor(System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewImageColumn" /> class, optionally configuring it for use with <see cref="T:System.Drawing.Icon" /> cell values.</summary>
      <param name="valuesAreIcons">
        <see langword="true" /> to indicate that the <see cref="P:System.Windows.Forms.DataGridViewCell.Value" /> property of cells in this column will be set to values of type <see cref="T:System.Drawing.Icon" />; <see langword="false" /> to indicate that they will be set to values of type <see cref="T:System.Drawing.Image" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageColumn.Clone">
      <summary>Creates an exact copy of this column.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewImageColumn" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewImageColumn.ToString">
      <summary>Gets a string that describes the column.</summary>
      <returns>A <see cref="T:System.String" /> that describes the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageColumn.CellTemplate">
      <summary>Gets or sets the template used to create new cells.</summary>
      <exception cref="T:System.InvalidCastException">The set type is not compatible with type <see cref="T:System.Windows.Forms.DataGridViewImageCell" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell" /> that all other cells in the column are modeled after.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageColumn.DefaultCellStyle">
      <summary>Gets or sets the column's default cell style.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied as the default style.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageColumn.Description">
      <summary>Gets or sets a string that describes the column's image.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewImageColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>The textual description of the column image. The default is <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageColumn.Icon">
      <summary>Gets or sets the icon displayed in the cells of this column when the cell's <see cref="P:System.Windows.Forms.DataGridViewCell.Value" /> property is not set and the cell's <see cref="P:System.Windows.Forms.DataGridViewImageCell.ValueIsIcon" /> property is set to <see langword="true" />.</summary>
      <returns>The <see cref="T:System.Drawing.Icon" /> to display. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageColumn.Image">
      <summary>Gets or sets the image displayed in the cells of this column when the cell's <see cref="P:System.Windows.Forms.DataGridViewCell.Value" /> property is not set and the cell's <see cref="P:System.Windows.Forms.DataGridViewImageCell.ValueIsIcon" /> property is set to <see langword="false" />.</summary>
      <returns>The <see cref="T:System.Drawing.Image" /> to display. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageColumn.ImageLayout">
      <summary>Gets or sets the image layout in the cells for this column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewImageColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewImageCellLayout" /> that specifies the cell layout. The default is <see cref="F:System.Windows.Forms.DataGridViewImageCellLayout.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewImageColumn.ValuesAreIcons">
      <summary>Gets or sets a value indicating whether cells in this column display <see cref="T:System.Drawing.Icon" /> values.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewImageColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if cells display values of type <see cref="T:System.Drawing.Icon" />; <see langword="false" /> if cells display values of type <see cref="T:System.Drawing.Image" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewLinkCell">
      <summary>Represents a cell that contains a link.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewLinkCell" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewLinkCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridViewLinkCell" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridViewLinkCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's error icon, if one is displayed; otherwise, <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.GetValue(System.Int32)">
      <summary>Gets the value of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The value contained in the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Indicates whether the row containing the cell will be unshared when a key is released and the cell has focus.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains data about the key press.</param>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <returns>
        <see langword="true" /> if the SPACE key was released, the <see cref="P:System.Windows.Forms.DataGridViewLinkCell.TrackVisitedState" /> property is <see langword="true" />, the <see cref="P:System.Windows.Forms.DataGridViewLinkCell.LinkVisited" /> property is <see langword="false" />, and the CTRL, ALT, and SHIFT keys are not pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether the row containing the cell will be unshared when the mouse button is pressed while the pointer is over the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains data about the mouse click.</param>
      <returns>
        <see langword="true" /> if the mouse pointer is over the link; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.MouseLeaveUnsharesRow(System.Int32)">
      <summary>Indicates whether the row containing the cell will be unshared when the mouse pointer leaves the cell.</summary>
      <param name="rowIndex">The index of the row containing the cell.</param>
      <returns>
        <see langword="true" /> if the link displayed by the cell is not in the normal state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.MouseMoveUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether the row containing the cell will be unshared when the mouse pointer moves over the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains data about the mouse click.</param>
      <returns>
        <see langword="true" /> if the mouse pointer is over the link and the link is has not yet changed color to reflect the hover state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Indicates whether the row containing the cell will be unshared when the mouse button is released while the pointer is over the cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains data about the mouse click.</param>
      <returns>
        <see langword="true" /> if the mouse pointer is over the link; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.OnKeyUp(System.Windows.Forms.KeyEventArgs,System.Int32)">
      <summary>Called when a character key is released while the focus is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the user holds down a mouse button while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.OnMouseLeave(System.Int32)">
      <summary>Called when the mouse pointer leaves the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the mouse pointer moves within a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called when the user releases a mouse button while the pointer is on a cell.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="cellState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="formattedValue">The formatted data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.ToString">
      <summary>Returns a string that describes the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.ActiveLinkColor">
      <summary>Gets or sets the color used to display an active link.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to display a link that is being selected. The default value is the user's Internet Explorer setting for the color of links in the hover state.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.EditType">
      <summary>Gets the type of the cell's hosted editing control.</summary>
      <returns>Always <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.FormattedValueType">
      <summary>Gets the display <see cref="T:System.Type" /> of the cell value.</summary>
      <returns>The display <see cref="T:System.Type" /> of the cell value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.LinkBehavior">
      <summary>Gets or sets a value that represents the behavior of a link.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.LinkBehavior" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.LinkBehavior" /> values. The default is <see cref="F:System.Windows.Forms.LinkBehavior.SystemDefault" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.LinkColor">
      <summary>Gets or sets the color used to display an inactive and unvisited link.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to initially display a link. The default value is the user's Internet Explorer setting for the link color.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.LinkVisited">
      <summary>Gets or sets a value indicating whether the link was visited.</summary>
      <returns>
        <see langword="true" /> if the link has been visited; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.TrackVisitedState">
      <summary>Gets or sets a value indicating whether the link changes color when it is visited.</summary>
      <returns>
        <see langword="true" /> if the link changes color when it is selected; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.UseColumnTextForLinkValue">
      <summary>Gets or sets a value indicating whether the column <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.Text" /> property value is displayed as the link text.</summary>
      <returns>
        <see langword="true" /> if the column <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.Text" /> property value is displayed as the link text; <see langword="false" /> if the cell <see cref="P:System.Windows.Forms.DataGridViewCell.FormattedValue" /> property value is displayed as the link text. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.ValueType">
      <summary>Gets or sets the data type of the values in the cell.</summary>
      <returns>A <see cref="T:System.Type" /> representing the data type of the value in the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.VisitedLinkColor">
      <summary>Gets or sets the color used to display a link that has been previously visited.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to display a link that has been visited. The default value is the user's Internet Explorer setting for the visited link color.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject">
      <summary>Provides information about a <see cref="T:System.Windows.Forms.DataGridViewLinkCell" /> control to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DoDefaultAction">
      <summary>Performs the default action of the <see cref="T:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The cell returned by the <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property has a <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property value that is not <see langword="null" /> and a <see cref="P:System.Windows.Forms.DataGridViewCell.RowIndex" /> property value of -1, indicating that the cell is in a shared row.

-or-

.NET 5 and later versions: The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.GetChildCount">
      <summary>Gets the number of child accessible objects that belong to the <see cref="T:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject" />.</summary>
      <returns>The value -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DefaultAction">
      <summary>Gets a string that represents the default action of the <see cref="T:System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject" />.</summary>
      <returns>The string "Click".</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewLinkColumn">
      <summary>Represents a column of cells that contain links in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkColumn.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewLinkColumn" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkColumn.Clone">
      <summary>Creates an exact copy of this column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewLinkColumn" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewLinkColumn.ToString">
      <summary>Gets a string that describes the column.</summary>
      <returns>A <see cref="T:System.String" /> that describes the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkColumn.ActiveLinkColor">
      <summary>Gets or sets the color used to display an active link within cells in the column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to display a link that is being selected. The default value is the user's Internet Explorer setting for the color of links in the hover state.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate">
      <summary>Gets or sets the template used to create new cells.</summary>
      <exception cref="T:System.InvalidCastException">When setting this property to a value that is not of type <see cref="T:System.Windows.Forms.DataGridViewLinkCell" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell" /> that all other cells in the column are modeled after. The default value is a new <see cref="T:System.Windows.Forms.DataGridViewLinkCell" /> instance.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkColumn.LinkBehavior">
      <summary>Gets or sets a value that represents the behavior of links within cells in the column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.LinkBehavior" /> value indicating the link behavior. The default is <see cref="F:System.Windows.Forms.LinkBehavior.SystemDefault" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkColumn.LinkColor">
      <summary>Gets or sets the color used to display an unselected link within cells in the column.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to initially display a link. The default value is the user's Internet Explorer setting for the link color.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkColumn.Text">
      <summary>Gets or sets the link text displayed in a column's cells if <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.UseColumnTextForLinkValue" /> is <see langword="true" />.</summary>
      <exception cref="T:System.InvalidOperationException">When setting this property, the value of the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.String" /> containing the link text.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkColumn.TrackVisitedState">
      <summary>Gets or sets a value indicating whether the link changes color if it has been visited.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the link changes color when it is selected; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkColumn.UseColumnTextForLinkValue">
      <summary>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.Text" /> property value is displayed as the link text.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.Text" /> property value is displayed as the link text; <see langword="false" /> if the cell <see cref="P:System.Windows.Forms.DataGridViewCell.FormattedValue" /> property value is displayed as the link text. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewLinkColumn.VisitedLinkColor">
      <summary>Gets or sets the color used to display a link that has been previously visited.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewLinkColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to display a link that has been visited. The default value is the user's Internet Explorer setting for the visited link color.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewPaintParts">
      <summary>Defines values for specifying the parts of a <see cref="T:System.Windows.Forms.DataGridViewCell" /> that are to be painted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewPaintParts.All">
      <summary>All parts of the cell should be painted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewPaintParts.Background">
      <summary>The background of the cell should be painted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewPaintParts.Border">
      <summary>The border of the cell should be painted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewPaintParts.ContentBackground">
      <summary>The background of the cell content should be painted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewPaintParts.ContentForeground">
      <summary>The foreground of the cell content should be painted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewPaintParts.ErrorIcon">
      <summary>The cell error icon should be painted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewPaintParts.Focus">
      <summary>The focus rectangle should be painted around the cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewPaintParts.None">
      <summary>Nothing should be painted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewPaintParts.SelectionBackground">
      <summary>The background of the cell should be painted when the cell is selected.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRow">
      <summary>Represents a row in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> class without using a template.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.AdjustRowHeaderBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
      <summary>Modifies an input row header border style according to the specified criteria.</summary>
      <param name="dataGridViewAdvancedBorderStyleInput">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the row header border style to modify.</param>
      <param name="dataGridViewAdvancedBorderStylePlaceholder">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that is used to store intermediate changes to the row header border style.</param>
      <param name="singleVerticalBorderAdded">
        <see langword="true" /> to add a single vertical border to the result; otherwise, <see langword="false" />.</param>
      <param name="singleHorizontalBorderAdded">
        <see langword="true" /> to add a single horizontal border to the result; otherwise, <see langword="false" />.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> if the row is the first row displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, <see langword="false" />.</param>
      <param name="isLastVisibleRow">
        <see langword="true" /> if the row is the last row in the <see cref="T:System.Windows.Forms.DataGridView" /> that has its <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property set to <see langword="true" />; otherwise, <see langword="false" />.</param>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the new border style used.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.Clone">
      <summary>Creates an exact copy of this row.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.CreateCells(System.Windows.Forms.DataGridView)">
      <summary>Clears the existing cells and sets their template according to the supplied <see cref="T:System.Windows.Forms.DataGridView" /> template.</summary>
      <param name="dataGridView">A <see cref="T:System.Windows.Forms.DataGridView" /> that acts as a template for cell styles.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridView" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">A row that already belongs to the <see cref="T:System.Windows.Forms.DataGridView" /> was added.  
  
 -or-  
  
 A column that has no cell template was added.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.CreateCells(System.Windows.Forms.DataGridView,System.Object[])">
      <summary>Clears the existing cells and sets their template and values.</summary>
      <param name="dataGridView">A <see cref="T:System.Windows.Forms.DataGridView" /> that acts as a template for cell styles.</param>
      <param name="values">An array of objects that initialize the reset cells.</param>
      <exception cref="T:System.ArgumentNullException">Either of the parameters is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">A row that already belongs to the <see cref="T:System.Windows.Forms.DataGridView" /> was added.  
  
 -or-  
  
 A column that has no cell template was added.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.CreateCellsInstance">
      <summary>Constructs a new collection of cells based on this row.</summary>
      <returns>The newly created <see cref="T:System.Windows.Forms.DataGridViewCellCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.DrawFocus(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewCellStyle,System.Boolean)">
      <summary>Draws a focus rectangle around the specified bounds.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be painted.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="rowState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the row.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> used to paint the focus rectangle.</param>
      <param name="cellsPaintSelectionBackground">
        <see langword="true" /> to use the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> property of <paramref name="cellStyle" /> as the color of the focus rectangle; <see langword="false" /> to use the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> property of <paramref name="cellStyle" /> as the color of the focus rectangle.</param>
      <exception cref="T:System.InvalidOperationException">The row has not been added to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="graphics" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="cellStyle" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.GetContextMenuStrip(System.Int32)">
      <summary>Gets the shortcut menu for the row.</summary>
      <param name="rowIndex">The index of the current row.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="rowIndex" /> is -1.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than zero or greater than or equal to the number of rows in the control minus one.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ContextMenuStrip" /> that belongs to the <see cref="T:System.Windows.Forms.DataGridViewRow" /> at the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.GetErrorText(System.Int32)">
      <summary>Gets the error text for the row at the specified index.</summary>
      <param name="rowIndex">The index of the row that contains the error.</param>
      <exception cref="T:System.InvalidOperationException">The row belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The row belongs to a <see cref="T:System.Windows.Forms.DataGridView" /> control and <paramref name="rowIndex" /> is less than zero or greater than the number of rows in the control minus one.</exception>
      <returns>A string that describes the error of the row at the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.GetPreferredHeight(System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode,System.Boolean)">
      <summary>Calculates the ideal height of the specified row based on the specified criteria.</summary>
      <param name="rowIndex">The index of the row whose preferred height is calculated.</param>
      <param name="autoSizeRowMode">A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> that specifies an automatic sizing mode.</param>
      <param name="fixedWidth">
        <see langword="true" /> to calculate the preferred height for a fixed cell width; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="autoSizeRowMode" /> is not a valid <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> value.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="rowIndex" /> is not in the valid range of 0 to the number of rows in the control minus 1.</exception>
      <returns>The ideal height of the row, in pixels.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.GetState(System.Int32)">
      <summary>Returns a value indicating the current state of the row.</summary>
      <param name="rowIndex">The index of the row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The row has been added to a <see cref="T:System.Windows.Forms.DataGridView" /> control, but the <paramref name="rowIndex" /> value is not in the valid range of 0 to the number of rows in the control minus 1.</exception>
      <exception cref="T:System.ArgumentException">The row is not a shared row, but the <paramref name="rowIndex" /> value does not match the row's <see cref="P:System.Windows.Forms.DataGridViewBand.Index" /> property value.  
  
 -or-  
  
 The row has not been added to a <see cref="T:System.Windows.Forms.DataGridView" /> control, but the <paramref name="rowIndex" /> value does not match the row's <see cref="P:System.Windows.Forms.DataGridViewBand.Index" /> property value.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values indicating the row state.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Boolean,System.Boolean)">
      <summary>Paints the current row.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be painted.</param>
      <param name="rowBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="rowState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the row.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> to indicate whether the current row is the first row displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, <see langword="false" />.</param>
      <param name="isLastVisibleRow">
        <see langword="true" /> to indicate whether the current row is the last row in the <see cref="T:System.Windows.Forms.DataGridView" /> that has the <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property set to <see langword="true" />; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.InvalidOperationException">The row has not been added to a <see cref="T:System.Windows.Forms.DataGridView" /> control.  
  
 -or-  
  
 The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and <paramref name="rowIndex" /> is less than zero or greater than the number of rows in the control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.PaintCells(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Boolean,System.Boolean,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the cells in the current row.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be painted.</param>
      <param name="rowBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="rowState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the row.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> to indicate whether the current row is the first row displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, <see langword="false" />.</param>
      <param name="isLastVisibleRow">
        <see langword="true" /> to indicate whether the current row is the last row in the <see cref="T:System.Windows.Forms.DataGridView" /> that has the <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property set to <see langword="true" />; otherwise, <see langword="false" />.</param>
      <param name="paintParts">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values indicating the parts of the cells to paint.</param>
      <exception cref="T:System.InvalidOperationException">The row has not been added to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="paintParts" /> in not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.PaintHeader(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Boolean,System.Boolean,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the header cell of the current row.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be painted.</param>
      <param name="rowBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="rowState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the row.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> to indicate that the current row is the first row displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, <see langword="false" />.</param>
      <param name="isLastVisibleRow">
        <see langword="true" /> to indicate that the current row is the last row in the <see cref="T:System.Windows.Forms.DataGridView" /> that has the <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property set to <see langword="true" />; otherwise, <see langword="false" />.</param>
      <param name="paintParts">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values indicating the parts of the cells to paint.</param>
      <exception cref="T:System.InvalidOperationException">The row has not been added to a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="paintParts" /> in not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.SetValues(System.Object[])">
      <summary>Sets the values of the row's cells.</summary>
      <param name="values">One or more objects that represent the cell values in the row.  
  
 -or-  
  
 An <see cref="T:System.Array" /> of <see cref="T:System.Object" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="values" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">This method is called when the associated <see cref="T:System.Windows.Forms.DataGridView" /> is operating in virtual mode.  
  
 -or-  
  
 This row is a shared row.</exception>
      <returns>
        <see langword="true" /> if all values have been set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.ToString">
      <summary>Gets a human-readable string that describes the row.</summary>
      <returns>A <see cref="T:System.String" /> that describes this row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.AccessibilityObject">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" /> assigned to the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" /> assigned to the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.Cells">
      <summary>Gets the collection of cells that populate the row.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> that contains all of the cells in the row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip">
      <summary>Gets or sets the shortcut menu for the row.</summary>
      <exception cref="T:System.InvalidOperationException">When getting the value of this property, the row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with the current <see cref="T:System.Windows.Forms.DataGridViewRow" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DataBoundItem">
      <summary>Gets the data-bound object that populated the row.</summary>
      <returns>The data-bound <see cref="T:System.Object" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DefaultCellStyle">
      <summary>Gets or sets the default styles for the row, which are used to render cells in the row unless the styles are overridden.</summary>
      <exception cref="T:System.InvalidOperationException">When setting this property, the row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied as the default style.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.Displayed">
      <summary>Gets a value indicating whether this row is displayed on the screen.</summary>
      <exception cref="T:System.InvalidOperationException">The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>
        <see langword="true" /> if the row is currently displayed on the screen; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DividerHeight">
      <summary>Gets or sets the height, in pixels, of the row divider.</summary>
      <exception cref="T:System.InvalidOperationException">When setting this property, the row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>The height, in pixels, of the divider (the row's bottom margin).</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.ErrorText">
      <summary>Gets or sets the error message text for row-level errors.</summary>
      <exception cref="T:System.InvalidOperationException">When getting the value of this property, the row is a shared row in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</exception>
      <returns>A <see cref="T:System.String" /> containing the error message.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.Frozen">
      <summary>Gets or sets a value indicating whether the row is frozen.</summary>
      <exception cref="T:System.InvalidOperationException">The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>
        <see langword="true" /> if the row is frozen; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.HeaderCell">
      <summary>Gets or sets the row's header cell.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" /> that represents the header cell of row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.Height">
      <summary>Gets or sets the current height of the row.</summary>
      <exception cref="T:System.InvalidOperationException">When setting this property, the row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>The height, in pixels, of the row. The default is the height of the default font plus 9 pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.InheritedStyle">
      <summary>Gets the cell style in effect for the row.</summary>
      <exception cref="T:System.InvalidOperationException">The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that specifies the formatting and style information for the cells in the row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.IsNewRow">
      <summary>Gets a value indicating whether the row is the row for new records.</summary>
      <returns>
        <see langword="true" /> if the row is the last row in the <see cref="T:System.Windows.Forms.DataGridView" />, which is used for the entry of a new row of data; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.MinimumHeight">
      <summary>Gets or sets the minimum height of the row.</summary>
      <exception cref="T:System.InvalidOperationException">When setting this property, the row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is less than 2.</exception>
      <returns>The minimum row height in pixels, ranging from 2 to <see cref="F:System.Int32.MaxValue">Int32.MaxValue</see>. The default is 3.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.ReadOnly">
      <summary>Gets or sets a value indicating whether the row is read-only.</summary>
      <exception cref="T:System.InvalidOperationException">The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>
        <see langword="true" /> if the row is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.Resizable">
      <summary>Gets or sets a value indicating whether users can resize the row or indicating that the behavior is inherited from the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToResizeRows" /> property.</summary>
      <exception cref="T:System.InvalidOperationException">The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewTriState" /> value that indicates whether the row can be resized or whether it can be resized only when the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToResizeRows" /> property is set to <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.Selected">
      <summary>Gets or sets a value indicating whether the row is selected.</summary>
      <exception cref="T:System.InvalidOperationException">The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>
        <see langword="true" /> if the row is selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.State">
      <summary>Gets the current state of the row.</summary>
      <exception cref="T:System.InvalidOperationException">The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values indicating the row state.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.Visible">
      <summary>Gets or sets a value indicating whether the row is visible.</summary>
      <exception cref="T:System.InvalidOperationException">The row is in a <see cref="T:System.Windows.Forms.DataGridView" /> control and is a shared row.</exception>
      <returns>
        <see langword="true" /> if the row is visible; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject">
      <summary>Provides information about a <see cref="T:System.Windows.Forms.DataGridViewRow" /> to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" /> class without setting the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.#ctor(System.Windows.Forms.DataGridViewRow)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" /> class, setting the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property to the specified <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetChild(System.Int32)">
      <summary>Returns the accessible child corresponding to the specified index.</summary>
      <param name="index">The zero-based index of the accessible child.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="index" /> is less than 0.  
  
 -or-  
  
 The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> that represents the <see cref="T:System.Windows.Forms.DataGridViewCell" /> corresponding to the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetChildCount">
      <summary>Returns the number of children belonging to the accessible object.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The number of child accessible objects that belong to the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" /> corresponds to the number of visible columns in the <see cref="T:System.Windows.Forms.DataGridView" />. If the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersVisible" /> property is <see langword="true" />, the <see cref="M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetChildCount" /> method includes the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" /> in the count of child accessible objects.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetFocused">
      <summary>Returns the accessible object that has keyboard focus.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject" /> if the cell indicated by the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property has keyboard focus and is in the current <see cref="T:System.Windows.Forms.DataGridViewRow" />; otherwise, <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetSelected">
      <summary>Gets an accessible object that represents the currently selected <see cref="T:System.Windows.Forms.DataGridViewCell" /> objects.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>An accessible object that represents the currently selected <see cref="T:System.Windows.Forms.DataGridViewCell" /> objects in the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
      <summary>Navigates to another accessible object.</summary>
      <param name="navigationDirection">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents an object in the specified direction.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)">
      <summary>Modifies the selection or moves the keyboard focus of the accessible object.</summary>
      <param name="flags">One of the <see cref="T:System.Windows.Forms.AccessibleSelection" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Bounds">
      <summary>Gets the location and size of the accessible object.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Name">
      <summary>Gets the name of the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The name of the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.DataGridViewRow" /> to which this <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" /> applies.</summary>
      <exception cref="T:System.InvalidOperationException">When setting this property, the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property has already been set.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow" /> that owns this <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Parent">
      <summary>Gets the parent of the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject" /> that belongs to the <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Role">
      <summary>Gets the role of the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" />.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.Row" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.State">
      <summary>Gets the state of the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.AccessibleStates" /> values. The default is the bitwise combination of the <see cref="F:System.Windows.Forms.AccessibleStates.Selectable" /> and <see cref="F:System.Windows.Forms.AccessibleStates.Focusable" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Value">
      <summary>Gets the value of the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner" /> property is <see langword="null" />.</exception>
      <returns>The value of the <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowCancelEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.UserDeletingRow" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCancelEventArgs.#ctor(System.Windows.Forms.DataGridViewRow)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowCancelEventArgs" /> class.</summary>
      <param name="dataGridViewRow">The row the user is deleting.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCancelEventArgs.Row">
      <summary>Gets the row that the user is deleting.</summary>
      <returns>The row that the user deleted.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowCancelEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.UserDeletingRow" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowCollection">
      <summary>A collection of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects.</summary>
    </member>
    <member name="E:System.Windows.Forms.DataGridViewRowCollection.CollectionChanged">
      <summary>Occurs when the contents of the collection change.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.#ctor(System.Windows.Forms.DataGridView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" /> class.</summary>
      <param name="dataGridView">The <see cref="T:System.Windows.Forms.DataGridView" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Add">
      <summary>Adds a new row to the collection.</summary>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 This operation would add a frozen row after unfrozen rows.</exception>
      <exception cref="T:System.ArgumentException">The row returned by the <see cref="P:System.Windows.Forms.DataGridView.RowTemplate" /> property has more cells than there are columns in the control.</exception>
      <returns>The index of the new row.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Add(System.Int32)">
      <summary>Adds the specified number of new rows to the collection.</summary>
      <param name="count">The number of rows to add to the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="count" /> is less than 1.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 The row returned by the <see cref="P:System.Windows.Forms.DataGridView.RowTemplate" /> property has more cells than there are columns in the control.  
  
 -or-  
  
 This operation would add frozen rows after unfrozen rows.</exception>
      <returns>The index of the last row that was added.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Add(System.Object[])">
      <summary>Adds a new row to the collection, and populates the cells with the specified objects.</summary>
      <param name="values">A variable number of objects that populate the cells of the new <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="values" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is set to <see langword="true" />.  
  
-or-
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 The row returned by the <see cref="P:System.Windows.Forms.DataGridView.RowTemplate" /> property has more cells than there are columns in the control.  
  
 -or-  
  
 This operation would add a frozen row after unfrozen rows.</exception>
      <returns>The index of the new row.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Add(System.Windows.Forms.DataGridViewRow)">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.DataGridViewRow" /> to the collection.</summary>
      <param name="dataGridViewRow">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> to add to the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the <paramref name="dataGridViewRow" /> is not <see langword="null" />.  
  
 -or-  
  
 <paramref name="dataGridViewRow" /> has a <see cref="P:System.Windows.Forms.DataGridViewRow.Selected" /> property value of <see langword="true" />.  
  
 -or-  
  
 This operation would add a frozen row after unfrozen rows.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewRow" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="dataGridViewRow" /> has more cells than there are columns in the control.</exception>
      <returns>The index of the new <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.AddCopies(System.Int32,System.Int32)">
      <summary>Adds the specified number of rows to the collection based on the row at the specified index.</summary>
      <param name="indexSource">The index of the row on which to base the new rows.</param>
      <param name="count">The number of rows to add to the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="indexSource" /> is less than zero or greater than or equal to the number of rows in the control.  
  
 -or-  
  
 <paramref name="count" /> is less than zero.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 This operation would add a frozen row after unfrozen rows.</exception>
      <returns>The index of the last row that was added.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.AddCopy(System.Int32)">
      <summary>Adds a new row based on the row at the specified index.</summary>
      <param name="indexSource">The index of the row on which to base the new row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="indexSource" /> is less than zero or greater than or equal to the number of rows in the collection.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 This operation would add a frozen row after unfrozen rows.</exception>
      <returns>The index of the new row.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.AddRange(System.Windows.Forms.DataGridViewRow[])">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects to the collection.</summary>
      <param name="dataGridViewRows">An array of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects to be added to the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewRows" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="dataGridViewRows" /> contains only one row, and the row it contains has more cells than there are columns in the control.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 At least one entry in the <paramref name="dataGridViewRows" /> array is <see langword="null" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 At least one row in the <paramref name="dataGridViewRows" /> array has a <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property value that is not <see langword="null" />.  
  
 -or-  
  
 At least one row in the <paramref name="dataGridViewRows" /> array has a <see cref="P:System.Windows.Forms.DataGridViewRow.Selected" /> property value of <see langword="true" />.  
  
 -or-  
  
 Two or more rows in the <paramref name="dataGridViewRows" /> array are identical.  
  
 -or-  
  
 At least one row in the <paramref name="dataGridViewRows" /> array contains one or more cells of a type that is incompatible with the type of the corresponding column in the control.  
  
 -or-  
  
 At least one row in the <paramref name="dataGridViewRows" /> array contains more cells than there are columns in the control.  
  
 -or-  
  
 This operation would add frozen rows after unfrozen rows.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Clear">
      <summary>Clears the collection.</summary>
      <exception cref="T:System.InvalidOperationException">The collection is data bound and the underlying data source does not support clearing the row data.  
  
 -or-  
  
 The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents the row collection from being modified:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /></exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Contains(System.Windows.Forms.DataGridViewRow)">
      <summary>Determines whether the specified <see cref="T:System.Windows.Forms.DataGridViewRow" /> is in the collection.</summary>
      <param name="dataGridViewRow">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> to locate in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.DataGridViewRow" /> is in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.CopyTo(System.Windows.Forms.DataGridViewRow[],System.Int32)">
      <summary>Copies the items from the collection into the specified <see cref="T:System.Windows.Forms.DataGridViewRow" /> array, starting at the specified index.</summary>
      <param name="array">A <see cref="T:System.Windows.Forms.DataGridViewRow" /> array that is the destination of the items copied from the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetFirstRow(System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the index of the first <see cref="T:System.Windows.Forms.DataGridViewRow" /> that meets the specified criteria.</summary>
      <param name="includeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The index of the first <see cref="T:System.Windows.Forms.DataGridViewRow" /> that has the attributes specified by <paramref name="includeFilter" />; -1 if no row is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetFirstRow(System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the index of the first <see cref="T:System.Windows.Forms.DataGridViewRow" /> that meets the specified inclusion and exclusion criteria.</summary>
      <param name="includeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <param name="excludeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentException">One or both of the specified filter values is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The index of the first <see cref="T:System.Windows.Forms.DataGridViewRow" /> that has the attributes specified by <paramref name="includeFilter" />, and does not have the attributes specified by <paramref name="excludeFilter" />; -1 if no row is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetLastRow(System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the index of the last <see cref="T:System.Windows.Forms.DataGridViewRow" /> that meets the specified criteria.</summary>
      <param name="includeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The index of the last <see cref="T:System.Windows.Forms.DataGridViewRow" /> that has the attributes specified by <paramref name="includeFilter" />; -1 if no row is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetNextRow(System.Int32,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the index of the next <see cref="T:System.Windows.Forms.DataGridViewRow" /> that meets the specified criteria.</summary>
      <param name="indexStart">The index of the row where the method should begin to look for the next <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="includeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="indexStart" /> is less than -1.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The index of the first <see cref="T:System.Windows.Forms.DataGridViewRow" /> after <paramref name="indexStart" /> that has the attributes specified by <paramref name="includeFilter" />, or -1 if no row is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetNextRow(System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the index of the next <see cref="T:System.Windows.Forms.DataGridViewRow" /> that meets the specified inclusion and exclusion criteria.</summary>
      <param name="indexStart">The index of the row where the method should begin to look for the next <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="includeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <param name="excludeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="indexStart" /> is less than -1.</exception>
      <exception cref="T:System.ArgumentException">One or both of the specified filter values is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The index of the next <see cref="T:System.Windows.Forms.DataGridViewRow" /> that has the attributes specified by <paramref name="includeFilter" />, and does not have the attributes specified by <paramref name="excludeFilter" />; -1 if no row is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetPreviousRow(System.Int32,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the index of the previous <see cref="T:System.Windows.Forms.DataGridViewRow" /> that meets the specified criteria.</summary>
      <param name="indexStart">The index of the row where the method should begin to look for the previous <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="includeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="indexStart" /> is greater than the number of rows in the collection.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The index of the previous <see cref="T:System.Windows.Forms.DataGridViewRow" /> that has the attributes specified by <paramref name="includeFilter" />; -1 if no row is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetPreviousRow(System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the index of the previous <see cref="T:System.Windows.Forms.DataGridViewRow" /> that meets the specified inclusion and exclusion criteria.</summary>
      <param name="indexStart">The index of the row where the method should begin to look for the previous <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="includeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <param name="excludeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="indexStart" /> is greater than the number of rows in the collection.</exception>
      <exception cref="T:System.ArgumentException">One or both of the specified filter values is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The index of the previous <see cref="T:System.Windows.Forms.DataGridViewRow" /> that has the attributes specified by <paramref name="includeFilter" />, and does not have the attributes specified by <paramref name="excludeFilter" />; -1 if no row is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetRowCount(System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the number of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects in the collection that meet the specified criteria.</summary>
      <param name="includeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The number of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" /> that have the attributes specified by <paramref name="includeFilter" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetRowsHeight(System.Windows.Forms.DataGridViewElementStates)">
      <summary>Returns the cumulative height of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects that meet the specified criteria.</summary>
      <param name="includeFilter">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="includeFilter" /> is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values.</exception>
      <returns>The cumulative height of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" /> that have the attributes specified by <paramref name="includeFilter" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.GetRowState(System.Int32)">
      <summary>Gets the state of the row with the specified index.</summary>
      <param name="rowIndex">The index of the row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than zero and greater than the number of rows in the collection minus one.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values indicating the state of the specified row.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.IndexOf(System.Windows.Forms.DataGridViewRow)">
      <summary>Returns the index of a specified item in the collection.</summary>
      <param name="dataGridViewRow">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> to locate in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <returns>The index of <paramref name="value" /> if it is a <see cref="T:System.Windows.Forms.DataGridViewRow" /> found in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Insert(System.Int32,System.Int32)">
      <summary>Inserts the specified number of rows into the collection at the specified location.</summary>
      <param name="rowIndex">The position at which to insert the rows.</param>
      <param name="count">The number of rows to insert into the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than zero or greater than the number of rows in the collection.  
  
 -or-  
  
 <paramref name="count" /> is less than 1.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 <paramref name="rowIndex" /> is equal to the number of rows in the collection and the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is set to <see langword="true" />.  
  
 -or-  
  
 The row returned by the <see cref="P:System.Windows.Forms.DataGridView.RowTemplate" /> property has more cells than there are columns in the control.  
  
 -or-  
  
 This operation would insert a frozen row after unfrozen rows or an unfrozen row before frozen rows.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Insert(System.Int32,System.Object[])">
      <summary>Inserts a row into the collection at the specified position, and populates the cells with the specified objects.</summary>
      <param name="rowIndex">The position at which to insert the row.</param>
      <param name="values">A variable number of objects that populate the cells of the new row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than zero or greater than the number of rows in the collection.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="values" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is set to <see langword="true" />.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 <paramref name="rowIndex" /> is equal to the number of rows in the collection and the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is set to <see langword="true" />.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the row returned by the control's <see cref="P:System.Windows.Forms.DataGridView.RowTemplate" /> property is not <see langword="null" />.  
  
 -or-  
  
 This operation would insert a frozen row after unfrozen rows or an unfrozen row before frozen rows.</exception>
      <exception cref="T:System.ArgumentException">The row returned by the control's <see cref="P:System.Windows.Forms.DataGridView.RowTemplate" /> property has more cells than there are columns in the control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewRow)">
      <summary>Inserts the specified <see cref="T:System.Windows.Forms.DataGridViewRow" /> into the collection.</summary>
      <param name="rowIndex">The position at which to insert the row.</param>
      <param name="dataGridViewRow">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> to insert into the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than zero or greater than the number of rows in the collection.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewRow" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 <paramref name="rowIndex" /> is equal to the number of rows in the collection and the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is set to <see langword="true" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of <paramref name="dataGridViewRow" /> is not <see langword="null" />.  
  
 -or-  
  
 <paramref name="dataGridViewRow" /> has a <see cref="P:System.Windows.Forms.DataGridViewRow.Selected" /> property value of <see langword="true" />.  
  
 -or-  
  
 This operation would insert a frozen row after unfrozen rows or an unfrozen row before frozen rows.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="dataGridViewRow" /> has more cells than there are columns in the control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.InsertCopies(System.Int32,System.Int32,System.Int32)">
      <summary>Inserts rows into the collection at the specified position.</summary>
      <param name="indexSource">The index of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> on which to base the new rows.</param>
      <param name="indexDestination">The position at which to insert the rows.</param>
      <param name="count">The number of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects to add to the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="indexSource" /> is less than zero or greater than the number of rows in the collection minus one.  
  
 -or-  
  
 <paramref name="indexDestination" /> is less than zero or greater than the number of rows in the collection.  
  
 -or-  
  
 <paramref name="count" /> is less than 1.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 <paramref name="indexDestination" /> is equal to the number of rows in the collection and <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> is <see langword="true" />.  
  
 -or-  
  
 This operation would insert frozen rows after unfrozen rows or unfrozen rows before frozen rows.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.InsertCopy(System.Int32,System.Int32)">
      <summary>Inserts a row into the collection at the specified position, based on the row at specified position.</summary>
      <param name="indexSource">The index of the row on which to base the new row.</param>
      <param name="indexDestination">The position at which to insert the row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="indexSource" /> is less than zero or greater than the number of rows in the collection minus one.  
  
 -or-  
  
 <paramref name="indexDestination" /> is less than zero or greater than the number of rows in the collection.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 <paramref name="indexDestination" /> is equal to the number of rows in the collection and <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> is <see langword="true" />.  
  
 -or-  
  
 This operation would insert a frozen row after unfrozen rows or an unfrozen row before frozen rows.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.InsertRange(System.Int32,System.Windows.Forms.DataGridViewRow[])">
      <summary>Inserts the <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects into the collection at the specified position.</summary>
      <param name="rowIndex">The position at which to insert the rows.</param>
      <param name="dataGridViewRows">An array of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects to add to the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewRows" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than zero or greater than the number of rows in the collection.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="dataGridViewRows" /> contains only one row, and the row it contains has more cells than there are columns in the control.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 <paramref name="rowIndex" /> is equal to the number of rows in the collection and <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> is <see langword="true" />.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 At least one entry in the <paramref name="dataGridViewRows" /> array is <see langword="null" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 At least one row in the <paramref name="dataGridViewRows" /> array has a <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property value that is not <see langword="null" />.  
  
 -or-  
  
 At least one row in the <paramref name="dataGridViewRows" /> array has a <see cref="P:System.Windows.Forms.DataGridViewRow.Selected" /> property value of <see langword="true" />.  
  
 -or-  
  
 Two or more rows in the <paramref name="dataGridViewRows" /> array are identical.  
  
 -or-  
  
 At least one row in the <paramref name="dataGridViewRows" /> array contains one or more cells of a type that is incompatible with the type of the corresponding column in the control.  
  
 -or-  
  
 At least one row in the <paramref name="dataGridViewRows" /> array contains more cells than there are columns in the control.  
  
 -or-  
  
 This operation would insert frozen rows after unfrozen rows or unfrozen rows before frozen rows.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DataGridViewRowCollection.CollectionChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CollectionChangeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.Remove(System.Windows.Forms.DataGridViewRow)">
      <summary>Removes the row from the collection.</summary>
      <param name="dataGridViewRow">The row to remove from the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewRow" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="dataGridViewRow" /> is not contained in this collection.  
  
 -or-  
  
 <paramref name="dataGridViewRow" /> is a shared row.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 <paramref name="dataGridViewRow" /> is the row for new records.  
  
 -or-  
  
 The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is bound to an <see cref="T:System.ComponentModel.IBindingList" /> implementation with <see cref="P:System.ComponentModel.IBindingList.AllowRemove" /> and <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" /> property values that are not both <see langword="true" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.RemoveAt(System.Int32)">
      <summary>Removes the row at the specified position from the collection.</summary>
      <param name="index">The position of the row to remove.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero and greater than the number of rows in the collection minus one.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 <paramref name="index" /> is equal to the number of rows in the collection and the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is set to <see langword="true" />.  
  
 -or-  
  
 The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is bound to an <see cref="T:System.ComponentModel.IBindingList" /> implementation with <see cref="P:System.ComponentModel.IBindingList.AllowRemove" /> and <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" /> property values that are not both <see langword="true" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.SharedRow(System.Int32)">
      <summary>Returns the <see cref="T:System.Windows.Forms.DataGridViewRow" /> at the specified index.</summary>
      <param name="rowIndex">The index of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> to get.</param>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow" /> positioned at the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to an <see cref="T:System.Array" />, starting at the specified index.</summary>
      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
      <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Windows.Forms.DataGridViewRowCollection" /> cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IEnumerable#GetEnumerator">
      <summary>Returns an enumerator that iterates through the collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds a <see cref="T:System.Windows.Forms.DataGridViewRow" /> to the collection.</summary>
      <param name="value">The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />.</param>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the <paramref name="value" /> is not <see langword="null" />.  
  
 -or-  
  
 <paramref name="value" /> has a <see cref="P:System.Windows.Forms.DataGridViewRow.Selected" /> property value of <see langword="true" />.  
  
 -or-  
  
 This operation would add a frozen row after unfrozen rows.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="value" /> has more cells than there are columns in the control.</exception>
      <returns>The index of the new <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Clear">
      <summary>Removes all items from the collection.</summary>
      <exception cref="T:System.InvalidOperationException">The collection is data bound and the underlying data source does not support clearing the row data.  
  
 -or-  
  
 The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /></exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the collection contains the specified item.</summary>
      <param name="value">The item to locate in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <returns>
        <see langword="true" /> if <paramref name="value" /> is a <see cref="T:System.Windows.Forms.DataGridViewRow" /> found in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index of a specified item in the collection.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <returns>The index of <paramref name="value" /> if it is a <see cref="T:System.Windows.Forms.DataGridViewRow" /> found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts a <see cref="T:System.Windows.Forms.DataGridViewRow" /> into the collection at the specified index.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> to insert into the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero or greater than the number of rows in the collection.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is not <see langword="null" />.  
  
 -or-  
  
 <paramref name="index" /> is equal to the number of rows in the collection and the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is set to <see langword="true" />.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.DataGridView" /> has no columns.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the <paramref name="value" /> is not <see langword="null" />.  
  
 -or-  
  
 <paramref name="value" /> has a <see cref="P:System.Windows.Forms.DataGridViewRow.Selected" /> property value of <see langword="true" />.  
  
 -or-  
  
 This operation would insert a frozen row after unfrozen rows or an unfrozen row before frozen rows.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="value" /> has more cells than there are columns in the control.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the specified <see cref="T:System.Windows.Forms.DataGridViewRow" /> from the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> to remove from the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</param>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.DataGridViewRow" />.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="value" /> is not contained in this collection.  
  
 -or-  
  
 <paramref name="value" /> is a shared row.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 <paramref name="value" /> is the row for new records.  
  
 -or-  
  
 The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is bound to an <see cref="T:System.ComponentModel.IBindingList" /> implementation with <see cref="P:System.ComponentModel.IBindingList.AllowRemove" /> and <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" /> property values that are not both <see langword="true" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Removes the <see cref="T:System.Windows.Forms.DataGridViewRow" /> from the collection at the specified position.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> to remove.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero and greater than the number of rows in the collection minus one.</exception>
      <exception cref="T:System.InvalidOperationException">The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is performing one of the following actions that temporarily prevents new rows from being added:  
  
-   Selecting all cells in the control.  
  
-   Clearing the selection.  
  
 -or-  
  
 This method is being called from a handler for one of the following <see cref="T:System.Windows.Forms.DataGridView" /> events:  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidating" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.CellValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowEnter" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowLeave" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />  
  
-   <see cref="E:System.Windows.Forms.DataGridView.RowValidating" />  
  
 -or-  
  
 <paramref name="index" /> is equal to the number of rows in the collection and the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is set to <see langword="true" />.  
  
 -or-  
  
 The associated <see cref="T:System.Windows.Forms.DataGridView" /> control is bound to an <see cref="T:System.ComponentModel.IBindingList" /> implementation with <see cref="P:System.ComponentModel.IBindingList.AllowRemove" /> and <see cref="P:System.ComponentModel.IBindingList.SupportsChangeNotification" /> property values that are not both <see langword="true" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.Count">
      <summary>Gets the number of rows in the collection.</summary>
      <returns>The number of rows in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.DataGridView">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridView" /> that owns the collection.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridView" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.Item(System.Int32)">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridViewRow" /> at the specified index.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> to get.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
-or-
  
 <paramref name="index" /> is equal to or greater than <see cref="P:System.Windows.Forms.DataGridViewRowCollection.Count" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow" /> at the specified index. Accessing a <see cref="T:System.Windows.Forms.DataGridViewRow" /> with this indexer causes the row to become unshared. To keep the row shared, use the <see cref="M:System.Windows.Forms.DataGridViewRowCollection.SharedRow(System.Int32)" /> method. For more information, see Best Practices for Scaling the Windows Forms DataGridView Control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.List">
      <summary>Gets an array of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects.</summary>
      <returns>An array of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#Count">
      <summary>Gets the number of elements contained in the collection.</summary>
      <returns>The number of elements contained in the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the element at the specified index.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <exception cref="T:System.NotSupportedException">The user tried to set this property.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
-or-
  
 <paramref name="index" /> is equal to or greater than <see cref="P:System.Windows.Forms.DataGridViewRowCollection.Count" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow" /> at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.#ctor(System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs" /> class.</summary>
      <param name="rowIndex">The index of the row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than -1.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.ContextMenuStrip">
      <summary>Gets or sets the shortcut menu for the row that raised the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> in use.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.RowIndex">
      <summary>Gets the index of the row that is requesting a shortcut menu.</summary>
      <returns>The zero-based index of the row that is requesting a shortcut menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowDividerDoubleClick" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs.#ctor(System.Int32,System.Windows.Forms.HandledMouseEventArgs)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs" /> class.</summary>
      <param name="rowIndex">The index of the row above the row divider that was double-clicked.</param>
      <param name="e">A new <see cref="T:System.Windows.Forms.HandledMouseEventArgs" /> containing the inherited event data.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than -1.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs.RowIndex">
      <summary>The index of the row above the row divider that was double-clicked.</summary>
      <returns>The index of the row above the divider.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.RowDividerDoubleClick" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.ErrorText">
      <summary>Gets or sets the error text for the row.</summary>
      <returns>A string that represents the error text for the row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.RowIndex">
      <summary>Gets the row that raised the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event.</summary>
      <returns>The zero based row index for the row.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowEventArgs">
      <summary>Provides data for row-related <see cref="T:System.Windows.Forms.DataGridView" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowEventArgs.#ctor(System.Windows.Forms.DataGridViewRow)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> class.</summary>
      <param name="dataGridViewRow">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> that the event occurred for.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridViewRow" /> is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowEventArgs.Row">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridViewRow" /> associated with the event.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow" /> associated with the event.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowEventHandler">
      <summary>Represents the method that will handle row-related events of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowHeaderCell">
      <summary>Represents a row header of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.GetClipboardContent(System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)">
      <summary>Retrieves the formatted value of the cell to copy to the <see cref="T:System.Windows.Forms.Clipboard" />.</summary>
      <param name="rowIndex">The zero-based index of the row containing the cell.</param>
      <param name="firstCell">
        <see langword="true" /> to indicate that the cell is in the first column of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="lastCell">
        <see langword="true" /> to indicate that the cell is the last column of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="inFirstRow">
        <see langword="true" /> to indicate that the cell is in the first row of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="inLastRow">
        <see langword="true" /> to indicate that the cell is in the last row of the region defined by the selected cells; otherwise, <see langword="false" />.</param>
      <param name="format">The current format string of the cell.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than zero or greater than or equal to the number of rows in the control.</exception>
      <returns>A <see cref="T:System.Object" /> that represents the value of the cell to copy to the <see cref="T:System.Windows.Forms.Clipboard" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's error icon, if one is displayed; otherwise, <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.GetErrorText(System.Int32)">
      <summary>Returns a string that represents the error for the cell.</summary>
      <param name="rowIndex">The row index of the cell.</param>
      <returns>A string that describes the error for the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.GetInheritedContextMenuStrip(System.Int32)">
      <summary>Retrieves the inherited shortcut menu for the specified row.</summary>
      <param name="rowIndex">The index of the row to get the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> of. The index must be -1 to indicate the row of column headers.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the cell is not <see langword="null" /> and the specified <paramref name="rowIndex" /> is less than 0 or greater than the number of rows in the control minus 1.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> of the row if one exists; otherwise, the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> inherited from <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Boolean)">
      <summary>Gets the style applied to the cell.</summary>
      <param name="inheritedCellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be populated with the inherited cell style.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="includeColors">
        <see langword="true" /> to include inherited colors in the returned cell style; otherwise, <see langword="false" />.</param>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that includes the style settings of the cell inherited from the cell's parent row, column, and <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.GetValue(System.Int32)">
      <summary>Gets the value of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Windows.Forms.DataGridViewElement.DataGridView" /> property of the cell is not <see langword="null" /> and <paramref name="rowIndex" /> is less than -1 or greater than or equal to the number of rows in the parent <see cref="T:System.Windows.Forms.DataGridView" />.</exception>
      <returns>The value contained in the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="cellState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="formattedValue">The formatted data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.SetValue(System.Int32,System.Object)">
      <summary>Sets the value of the cell.</summary>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <param name="value">The cell value to set.</param>
      <returns>
        <see langword="true" /> if the value has been set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.ToString">
      <summary>Returns the string representation of the cell.</summary>
      <returns>A string that represents the current cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject">
      <summary>Provides information about a <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" /> to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewRowHeaderCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" /> that owns this accessible object.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DoDefaultAction">
      <summary>Performs the default action of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
      <summary>Navigates to another accessible object.</summary>
      <param name="navigationDirection">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents an object in the specified direction.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)">
      <summary>Modifies the row selection depending on the selection mode.</summary>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.AccessibleSelection" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property value is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Bounds">
      <summary>Gets the location and size of the accessible object.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DefaultAction">
      <summary>Gets a description of the default action of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" />.</summary>
      <returns>An empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Name">
      <summary>Gets the name of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" />.</summary>
      <returns>The name of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Parent">
      <summary>Gets the parent of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject" /> that belongs to the <see cref="T:System.Windows.Forms.DataGridViewRow" /> of the current <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Role">
      <summary>Gets the role of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" />.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.RowHeader" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.State">
      <summary>Gets the state of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" />.</summary>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.AccessibleStates" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Value">
      <summary>Gets the value of the <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject" />.</summary>
      <returns>An empty string ("").</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode">
      <summary>Defines values for specifying how the row header width is adjusted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders">
      <summary>The row header width adjusts to fit the contents of all the row header cells.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders">
      <summary>The row header width adjusts to fit the contents of all the row headers in the currently displayed rows.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToFirstHeader">
      <summary>The row header width adjusts to fit the contents of the first row header.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing">
      <summary>Users cannot adjust the column header width with the mouse.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing">
      <summary>Users can adjust the column header width with the mouse.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.Height">
      <summary>Gets or sets the height of the row the event occurred for.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is greater than 65,536.</exception>
      <returns>The row height.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.MinimumHeight">
      <summary>Gets or sets the minimum height of the row the event occurred for.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value when setting this property is less than 2.</exception>
      <returns>The minimum row height.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.RowIndex">
      <summary>Gets the index of the row associated with this <see cref="T:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs" />.</summary>
      <returns>The zero-based index of the row the event occurred for.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler">
      <summary>Represents the method that will handle an <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoPushed" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.Height">
      <summary>Gets the height of the row the event occurred for.</summary>
      <returns>The row height, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.MinimumHeight">
      <summary>Gets the minimum height of the row the event occurred for.</summary>
      <returns>The minimum row height, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.RowIndex">
      <summary>Gets the index of the row the event occurred for.</summary>
      <returns>The zero-based index of the row.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoPushed" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowPostPaintEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowPostPaint" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.#ctor(System.Windows.Forms.DataGridView,System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowPostPaintEventArgs" /> class.</summary>
      <param name="dataGridView">The <see cref="T:System.Windows.Forms.DataGridView" /> that owns the row that is being painted.</param>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be painted.</param>
      <param name="rowBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="rowState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the row.</param>
      <param name="errorText">An error message that is associated with the row.</param>
      <param name="inheritedRowStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the row.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> to indicate whether the current row is the first row currently displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, <see langword="false" />.</param>
      <param name="isLastVisibleRow">
        <see langword="true" /> to indicate whether the current row is the last row in the <see cref="T:System.Windows.Forms.DataGridView" /> that has the <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property set to <see langword="true" />; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridView" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="graphics" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="inheritedRowStyle" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.DrawFocus(System.Drawing.Rectangle,System.Boolean)">
      <summary>Draws the focus rectangle around the specified bounds.</summary>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the focus area.</param>
      <param name="cellsPaintSelectionBackground">
        <see langword="true" /> to use the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" /> property to determine the color of the focus rectangle; <see langword="false" /> to use the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" /> property.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCells(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the specified cell parts for the area in the specified bounds.</summary>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area of the <see cref="T:System.Windows.Forms.DataGridView" /> to be painted.</param>
      <param name="paintParts">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values specifying the parts to paint.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle,System.Boolean)">
      <summary>Paints the cell backgrounds for the area in the specified bounds.</summary>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area of the <see cref="T:System.Windows.Forms.DataGridView" /> to be painted.</param>
      <param name="cellsPaintSelectionBackground">
        <see langword="true" /> to paint the background of the specified bounds with the color of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" />; <see langword="false" /> to paint the background of the specified bounds with the color of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" />.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsContent(System.Drawing.Rectangle)">
      <summary>Paints the cell contents for the area in the specified bounds.</summary>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area of the <see cref="T:System.Windows.Forms.DataGridView" /> to be painted.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintHeader(System.Boolean)">
      <summary>Paints the entire row header of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <param name="paintSelectionBackground">
        <see langword="true" /> to paint the row header with the color of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" />; <see langword="false" /> to paint the row header with the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> of the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> property.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintHeader(System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the specified parts of the row header of the current row.</summary>
      <param name="paintParts">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values specifying the parts to paint.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ClipBounds">
      <summary>Gets or sets the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ErrorText">
      <summary>Gets a string that represents an error message for the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>A string that represents an error message for the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> used to paint the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> used to paint the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.InheritedRowStyle">
      <summary>Gets the cell style applied to the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains the cell style applied to the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.IsFirstDisplayedRow">
      <summary>Gets a value indicating whether the current row is the first row displayed in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>
        <see langword="true" /> if the row being painted is currently the first row displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.IsLastVisibleRow">
      <summary>Gets a value indicating whether the current row is the last visible row displayed in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>
        <see langword="true" /> if the current row is the last row in the <see cref="T:System.Windows.Forms.DataGridView" /> that has the <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property set to <see langword="true" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowBounds">
      <summary>Get the bounds of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex">
      <summary>Gets the index of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>The index of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.State">
      <summary>Gets the state of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the row.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowPostPaintEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.RowPostPaint" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowPostPaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowPrePaintEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowPrePaint" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.#ctor(System.Windows.Forms.DataGridView,System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowPrePaintEventArgs" /> class.</summary>
      <param name="dataGridView">The <see cref="T:System.Windows.Forms.DataGridView" /> that owns the row that is being painted.</param>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewRow" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be painted.</param>
      <param name="rowBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="rowState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the row.</param>
      <param name="errorText">An error message that is associated with the row.</param>
      <param name="inheritedRowStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the row.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> to indicate whether the current row is the first row currently displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, <see langword="false" />.</param>
      <param name="isLastVisibleRow">
        <see langword="true" /> to indicate whether the current row is the last row in the <see cref="T:System.Windows.Forms.DataGridView" /> that has the <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property set to <see langword="true" />; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dataGridView" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="graphics" /> is <see langword="null" />.  
  
 -or-  
  
 <paramref name="inheritedRowStyle" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.DrawFocus(System.Drawing.Rectangle,System.Boolean)">
      <summary>Draws the focus rectangle around the specified bounds.</summary>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the focus area.</param>
      <param name="cellsPaintSelectionBackground">
        <see langword="true" /> to use the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" /> property to determine the color of the focus rectangle; <see langword="false" /> to use the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" />.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCells(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the specified cell parts for the area in the specified bounds.</summary>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area of the <see cref="T:System.Windows.Forms.DataGridView" /> to be painted.</param>
      <param name="paintParts">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values specifying the parts to paint.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle,System.Boolean)">
      <summary>Paints the cell backgrounds for the area in the specified bounds.</summary>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area of the <see cref="T:System.Windows.Forms.DataGridView" /> to be painted.</param>
      <param name="cellsPaintSelectionBackground">
        <see langword="true" /> to paint the background of the specified bounds with the color of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" />; <see langword="false" /> to paint the background of the specified bounds with the color of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" />.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsContent(System.Drawing.Rectangle)">
      <summary>Paints the cell contents for the area in the specified bounds.</summary>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area of the <see cref="T:System.Windows.Forms.DataGridView" /> to be painted.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintHeader(System.Boolean)">
      <summary>Paints the entire row header of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <param name="paintSelectionBackground">
        <see langword="true" /> to paint the row header with the color of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> property of the <see cref="P:System.Windows.Forms.DataGridViewRow.InheritedStyle" />; <see langword="false" /> to paint the row header with the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> of the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> property.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintHeader(System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the specified parts of the row header of the current row.</summary>
      <param name="paintParts">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values specifying the parts to paint.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex" /> is less than zero or greater than the number of rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control minus one.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ClipBounds">
      <summary>Gets or sets the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ErrorText">
      <summary>Gets a string that represents an error message for the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>A string that represents an error message for the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> used to paint the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> used to paint the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.InheritedRowStyle">
      <summary>Gets the cell style applied to the row.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains the cell style currently applied to the row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.IsFirstDisplayedRow">
      <summary>Gets a value indicating whether the current row is the first row currently displayed in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>
        <see langword="true" /> if the row being painted is currently the first row displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.IsLastVisibleRow">
      <summary>Gets a value indicating whether the current row is the last visible row in the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <returns>
        <see langword="true" /> if the row being painted is currently the last row in the <see cref="T:System.Windows.Forms.DataGridView" /> that has the <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property set to <see langword="true" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintParts">
      <summary>The cell parts that are to be painted.</summary>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is not a valid bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values specifying the parts to be painted.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.RowBounds">
      <summary>Get the bounds of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.RowIndex">
      <summary>Gets the index of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>The index of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.State">
      <summary>Gets the state of the current <see cref="T:System.Windows.Forms.DataGridViewRow" />.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the row.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowPrePaintEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.RowPrePaint" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowPrePaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowsAddedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowsAdded" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowsAddedEventArgs.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowsAddedEventArgs" /> class.</summary>
      <param name="rowIndex">The index of the first added row.</param>
      <param name="rowCount">The number of rows that have been added.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowCount">
      <summary>Gets the number of rows that have been added.</summary>
      <returns>The number of rows that have been added.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowIndex">
      <summary>Gets the index of the first added row.</summary>
      <returns>The index of the first added row.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowsAddedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.RowsAdded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowsAddedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowsRemovedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowsRemoved" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowsRemovedEventArgs.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowsRemovedEventArgs" /> class.</summary>
      <param name="rowIndex">The zero-based index of the row that was deleted, or the first deleted row if multiple rows were deleted.</param>
      <param name="rowCount">The number of rows that were deleted.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> is less than 0.  
  
 -or-  
  
 <paramref name="rowCount" /> is less than 1.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowsRemovedEventArgs.RowCount">
      <summary>Gets the number of rows that were deleted.</summary>
      <returns>The number of deleted rows.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowsRemovedEventArgs.RowIndex">
      <summary>Gets the zero-based index of the row deleted, or the first deleted row if multiple rows were deleted.</summary>
      <returns>The zero-based index of the row that was deleted, or the first deleted row if multiple rows were deleted.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowsRemovedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.RowsRemoved" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowsRemovedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowStateChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.RowStateChanged" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewRowStateChangedEventArgs.#ctor(System.Windows.Forms.DataGridViewRow,System.Windows.Forms.DataGridViewElementStates)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewRowStateChangedEventArgs" /> class.</summary>
      <param name="dataGridViewRow">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> that has a changed state.</param>
      <param name="stateChanged">One of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values indicating the state that has changed on the row.</param>
      <exception cref="T:System.ArgumentNullException">.NET 6 and later versions: <paramref name="dataGridViewRow" /> is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowStateChangedEventArgs.Row">
      <summary>Gets the <see cref="T:System.Windows.Forms.DataGridViewRow" /> that has a changed state.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow" /> that has a changed state.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewRowStateChangedEventArgs.StateChanged">
      <summary>Gets the state that has changed on the row.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values indicating the state that has changed on the row.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewRowStateChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.RowStateChanged" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewRowStateChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewSelectedCellCollection">
      <summary>Represents a collection of cells that are selected in a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.Clear">
      <summary>Clears the collection.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.Contains(System.Windows.Forms.DataGridViewCell)">
      <summary>Determines whether the specified cell is contained in the collection.</summary>
      <param name="dataGridViewCell">The <see cref="T:System.Windows.Forms.DataGridViewCell" /> to locate in the <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" />.</param>
      <returns>
        <see langword="true" /> if <paramref name="dataGridViewCell" /> is in the <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.CopyTo(System.Windows.Forms.DataGridViewCell[],System.Int32)">
      <summary>Copies the elements of the collection to the specified <see cref="T:System.Windows.Forms.DataGridViewCell" /> array, starting at the specified index.</summary>
      <param name="array">The one-dimensional array of type <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewCell)">
      <summary>Inserts a cell into the collection.</summary>
      <param name="index">The index at which <paramref name="dataGridViewCell" /> should be inserted.</param>
      <param name="dataGridViewCell">The object to be added to the <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to the specified array, starting at the specified index.</summary>
      <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IEnumerable#GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Add(System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Add(System.Object)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="value">The item to be added to the <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
      <returns>The position into which the new element was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Clear">
      <summary>Implements the <see cref="M:System.Collections.IList.Clear" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified cell is contained in the collection.</summary>
      <param name="value">A <see cref="T:System.Windows.Forms.DataGridViewCell" /> to locate in the <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" />.</param>
      <returns>
        <see langword="true" /> if <paramref name="value" /> is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index of the specified cell.</summary>
      <param name="value">The cell to locate in the collection.</param>
      <returns>The zero-based index of the <paramref name="value" /> parameter if it is found in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="index">The index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The object to be added to the <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Remove(System.Object)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="value">The object to be removed from the <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Implements the <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedCellCollection.Item(System.Int32)">
      <summary>Gets the cell at the specified index.</summary>
      <param name="index">The index of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> to get from the <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
 -or-  
  
 <paramref name="index" /> is equal to or greater than the number of cells in the collection.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedCellCollection.List">
      <summary>Gets a list of elements in the collection.</summary>
      <returns>An <see cref="T:System.Collections.ArrayList" /> containing the elements of the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#Count">
      <summary>Gets the number of elements in the collection.</summary>
      <returns>The number of elements in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedCellCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets the element at the specified index.</summary>
      <param name="index">The index of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> to get from the <see cref="T:System.Windows.Forms.DataGridViewSelectedCellCollection" />.</param>
      <exception cref="T:System.NotSupportedException">The property is set.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
 -or-  
  
 <paramref name="index" /> is equal to or greater than the number of cells in the collection.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewCell" /> at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewSelectedColumnCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.DataGridViewColumn" /> objects that are selected in a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.Clear">
      <summary>Clears the collection.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.Contains(System.Windows.Forms.DataGridViewColumn)">
      <summary>Determines whether the specified column is contained in the collection.</summary>
      <param name="dataGridViewColumn">A <see cref="T:System.Windows.Forms.DataGridViewColumn" /> to locate in the <see cref="T:System.Windows.Forms.DataGridViewSelectedColumnCollection" />.</param>
      <returns>
        <see langword="true" /> if the <paramref name="dataGridViewColumn" /> parameter is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.CopyTo(System.Windows.Forms.DataGridViewColumn[],System.Int32)">
      <summary>Copies the elements of the collection to the specified array, starting at the specified index.</summary>
      <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" /> cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewColumn)">
      <summary>Inserts a column into the collection at the specified position.</summary>
      <param name="index">The zero-based index at which the column should be inserted.</param>
      <param name="dataGridViewColumn">The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> to insert into the <see cref="T:System.Windows.Forms.DataGridViewSelectedColumnCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to the specified array, starting at the specified index.</summary>
      <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" /> cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IEnumerable#GetEnumerator">
      <summary>Returns an enumerator that iterates through a collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Add(System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Add(System.Object)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="value">The item to be added to the <see cref="T:System.Windows.Forms.DataGridViewSelectedColumnCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
      <returns>Not applicable. Always throws an exception.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Clear">
      <summary>Implements the <see cref="M:System.Collections.IList.Clear" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified value is contained in the collection.</summary>
      <param name="value">An object to locate in the <see cref="T:System.Windows.Forms.DataGridViewSelectedColumnCollection" />.</param>
      <returns>
        <see langword="true" /> if the <paramref name="value" /> parameter is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index of the specified element.</summary>
      <param name="value">The element to locate in the collection.</param>
      <returns>The zero-based index of the <paramref name="value" /> parameter if it is found in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="index">The index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The object to be added to the <see cref="T:System.Windows.Forms.DataGridViewSelectedColumnCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Remove(System.Object)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="value">The object to be removed from the <see cref="T:System.Windows.Forms.DataGridViewSelectedColumnCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Implements the <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedColumnCollection.Item(System.Int32)">
      <summary>Gets the column at the specified index.</summary>
      <param name="index">The index of the <see cref="T:System.Windows.Forms.DataGridViewColumn" /> to get from the <see cref="T:System.Windows.Forms.DataGridViewSelectedColumnCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
 -or-  
  
 <paramref name="index" /> is equal to or greater than the number of columns in the collection.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedColumnCollection.List">
      <summary>Gets the list of elements contained in the <see cref="T:System.Windows.Forms.BaseCollection" /> instance.</summary>
      <returns>An <see cref="T:System.Collections.ArrayList" /> containing the elements of the collection. This property returns <see langword="null" /> unless overridden in a derived class.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#Count">
      <summary>Gets the number of elements in the collection.</summary>
      <returns>The number of elements in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedColumnCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets the element at the specified index.</summary>
      <param name="index">The index of the element to get from the <see cref="T:System.Windows.Forms.DataGridViewSelectedColumnCollection" />.</param>
      <exception cref="T:System.NotSupportedException">The property is set.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
 -or-  
  
 <paramref name="index" /> is equal to or greater than the number of columns in the collection.</exception>
      <returns>The element at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewSelectedRowCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects that are selected in a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.Clear">
      <summary>Clears the collection.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.Contains(System.Windows.Forms.DataGridViewRow)">
      <summary>Determines whether the specified row is contained in the collection.</summary>
      <param name="dataGridViewRow">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> to locate in the <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" />.</param>
      <returns>
        <see langword="true" /> if <paramref name="dataGridViewRow" /> is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.CopyTo(System.Windows.Forms.DataGridViewRow[],System.Int32)">
      <summary>Copies the elements of the collection to the specified array, starting at the specified index.</summary>
      <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.Insert(System.Int32,System.Windows.Forms.DataGridViewRow)">
      <summary>Inserts a row into the collection at the specified position.</summary>
      <param name="index">The zero-based index at which <paramref name="dataGridViewRow" /> should be inserted.</param>
      <param name="dataGridViewRow">The <see cref="T:System.Windows.Forms.DataGridViewRow" /> to insert into the <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to the specified array, starting at the specified index.</summary>
      <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The <see cref="T:System.Windows.Forms.DataGridViewCellCollection" /> cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IEnumerable#GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Add(System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Add(System.Object)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="value">The item to be added to the <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
      <returns>The index at which <paramref name="value" /> was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Clear">
      <summary>Implements the <see cref="M:System.Collections.IList.Clear" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified value is contained in the collection.</summary>
      <param name="value">An object to locate in the <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" />.</param>
      <returns>
        <see langword="true" /> if the <paramref name="value" /> parameter is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index of the specified element.</summary>
      <param name="value">The element to locate in the collection.</param>
      <returns>The zero-based index of the <paramref name="value" /> parameter if it is found in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="index">The index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The object to add to the <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Remove(System.Object)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="value">The object to remove from the <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Implements the <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" /> method. Always throws <see cref="T:System.NotSupportedException" />.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedRowCollection.Item(System.Int32)">
      <summary>Gets the row at the specified index.</summary>
      <param name="index">The index of the <see cref="T:System.Windows.Forms.DataGridViewRow" /> in the <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
 -or-  
  
 <paramref name="index" /> is equal to or greater than the number of rows in the collection.</exception>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewRow" /> at the current index.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedRowCollection.List">
      <summary>Gets the list of elements contained in the <see cref="T:System.Windows.Forms.BaseCollection" /> instance.</summary>
      <returns>An <see cref="T:System.Collections.ArrayList" /> containing the elements of the collection. This property returns <see langword="null" /> unless overridden in a derived class.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#Count">
      <summary>Gets the number of elements in the collection.</summary>
      <returns>The number of elements in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSelectedRowCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets the element at the specified index.</summary>
      <param name="index">The index of the element to get from the <see cref="T:System.Windows.Forms.DataGridViewSelectedRowCollection" />.</param>
      <exception cref="T:System.NotSupportedException">The property is set.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.  
  
 -or-  
  
 <paramref name="index" /> is equal to or greater than the number of rows in the collection.</exception>
      <returns>The element at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewSelectionMode">
      <summary>Describes how cells of a DataGridView control can be selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewSelectionMode.CellSelect">
      <summary>One or more individual cells can be selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect">
      <summary>The column will be selected by clicking in the column's header cell. An individual cell can be selected by clicking that cell.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect">
      <summary>The entire column will be selected by clicking the column's header or a cell contained in that column.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect">
      <summary>The entire row will be selected by clicking its row's header or a cell contained in that row.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect">
      <summary>The row will be selected by clicking in the row's header cell. An individual cell can be selected by clicking that cell.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewSortCompareEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGridView.SortCompare" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewSortCompareEventArgs.#ctor(System.Windows.Forms.DataGridViewColumn,System.Object,System.Object,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewSortCompareEventArgs" /> class.</summary>
      <param name="dataGridViewColumn">The column to sort.</param>
      <param name="cellValue1">The value of the first cell to compare.</param>
      <param name="cellValue2">The value of the second cell to compare.</param>
      <param name="rowIndex1">The index of the row containing the first cell.</param>
      <param name="rowIndex2">The index of the row containing the second cell.</param>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue1">
      <summary>Gets the value of the first cell to compare.</summary>
      <returns>The value of the first cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue2">
      <summary>Gets the value of the second cell to compare.</summary>
      <returns>The value of the second cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.Column">
      <summary>Gets the column being sorted.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridViewColumn" /> to sort.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex1">
      <summary>Gets the index of the row containing the first cell to compare.</summary>
      <returns>The index of the row containing the second cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex2">
      <summary>Gets the index of the row containing the second cell to compare.</summary>
      <returns>The index of the row containing the second cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.SortResult">
      <summary>Gets or sets a value indicating the order in which the compared cells will be sorted.</summary>
      <returns>Less than zero if the first cell will be sorted before the second cell; zero if the first cell and second cell have equivalent values; greater than zero if the second cell will be sorted before the first cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewSortCompareEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.SortCompare" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DataGridViewSortCompareEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewTextBoxCell">
      <summary>Displays editable text information in a <see cref="T:System.Windows.Forms.DataGridView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewTextBoxCell" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.Clone">
      <summary>Creates an exact copy of this cell.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.DataGridViewTextBoxCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.CreateAccessibilityInstance">
      <summary>Creates a new <see cref="T:System.Windows.Forms.AccessibleObject" /> for this <see cref="T:System.Windows.Forms.DataGridViewTextBoxCell" /> instance.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> instance that supports the ControlType UI Automation property.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.DetachEditingControl">
      <summary>Removes the cell's editing control from the <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's error icon, if one is displayed; otherwise, <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.InitializeEditingControl(System.Int32,System.Object,System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Attaches and initializes the hosted editing control.</summary>
      <param name="rowIndex">The index of the row being edited.</param>
      <param name="initialFormattedValue">The initial value to be displayed in the control.</param>
      <param name="dataGridViewCellStyle">A cell style that is used to determine the appearance of the hosted control.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs)">
      <summary>Determines if edit mode should be started based on the given key.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that represents the key that was pressed.</param>
      <returns>
        <see langword="true" /> if edit mode should be started; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.OnEnter(System.Int32,System.Boolean)">
      <summary>Called by <see cref="T:System.Windows.Forms.DataGridView" /> when the selection cursor moves onto a cell.</summary>
      <param name="rowIndex">The index of the row entered by the mouse.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if the cell was entered as a result of a mouse click; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.OnLeave(System.Int32,System.Boolean)">
      <summary>Called by the <see cref="T:System.Windows.Forms.DataGridView" /> when the mouse leaves a cell.</summary>
      <param name="rowIndex">The index of the row the mouse has left.</param>
      <param name="throughMouseClick">
        <see langword="true" /> if the cell was left as a result of a mouse click; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)">
      <summary>Called by <see cref="T:System.Windows.Forms.DataGridView" /> when the mouse leaves a cell.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="cellState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="formattedValue">The formatted data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.PositionEditingControl(System.Boolean,System.Boolean,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
      <summary>Sets the location and size of the editing control hosted by a cell in the DataGridView control.</summary>
      <param name="setLocation">
        <see langword="true" /> to have the control placed as specified by the other arguments; <see langword="false" /> to allow the control to place itself.</param>
      <param name="setSize">
        <see langword="true" /> to specify the size; <see langword="false" /> to allow the control to size itself.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that defines the cell bounds.</param>
      <param name="cellClip">The area that will be used to paint the editing control.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell being edited.</param>
      <param name="singleVerticalBorderAdded">
        <see langword="true" /> to add a vertical border to the cell; otherwise, <see langword="false" />.</param>
      <param name="singleHorizontalBorderAdded">
        <see langword="true" /> to add a horizontal border to the cell; otherwise, <see langword="false" />.</param>
      <param name="isFirstDisplayedColumn">
        <see langword="true" /> if the hosting cell is in the first visible column; otherwise, <see langword="false" />.</param>
      <param name="isFirstDisplayedRow">
        <see langword="true" /> if the hosting cell is in the first visible row; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.ToString">
      <summary>Returns a string that describes the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxCell.FormattedValueType">
      <summary>Gets the type of the formatted value associated with the cell.</summary>
      <returns>A <see cref="T:System.Type" /> representing the <see cref="T:System.String" /> type in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxCell.MaxInputLength">
      <summary>Gets or sets the maximum number of characters that can be entered into the text box.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 0.</exception>
      <returns>The maximum number of characters that can be entered into the text box; the default value is 32767.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxCell.ValueType">
      <summary>Gets or sets the data type of the values in the cell.</summary>
      <returns>A <see cref="T:System.Type" /> representing the data type of the value in the cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject">
      <summary>Represents the accessibility object for the current <see cref="T:System.Windows.Forms.DataGridViewTextBoxCell" /> object.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewCell)">
      <summary>Instantiates a new instance of the <see cref="T:System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject" /> class.</summary>
      <param name="owner">The control to which this object belongs.</param>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewTextBoxColumn">
      <summary>Hosts a collection of <see cref="T:System.Windows.Forms.DataGridViewTextBoxCell" /> cells.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxColumn.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewTextBoxColumn" /> class to the default state.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxColumn.ToString">
      <summary>Gets a string that describes the column.</summary>
      <returns>A <see cref="T:System.String" /> that describes the column.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxColumn.CellTemplate">
      <summary>Gets or sets the template used to model cell appearance.</summary>
      <exception cref="T:System.InvalidCastException">The set type is not compatible with type <see cref="T:System.Windows.Forms.DataGridViewTextBoxCell" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewCell" /> that all other cells in the column are modeled after.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxColumn.MaxInputLength">
      <summary>Gets or sets the maximum number of characters that can be entered into the text box.</summary>
      <exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.Windows.Forms.DataGridViewTextBoxColumn.CellTemplate" /> property is <see langword="null" />.</exception>
      <returns>The maximum number of characters that can be entered into the text box; the default value is 32767.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxColumn.SortMode">
      <summary>Gets or sets the sort mode for the column.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridViewColumnSortMode" /> that specifies the criteria used to order the rows based on the cell values in a column.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewTextBoxEditingControl">
      <summary>Represents a text box control that can be hosted in a <see cref="T:System.Windows.Forms.DataGridViewTextBoxCell" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewTextBoxEditingControl" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Changes the control's user interface (UI) to be consistent with the specified cell style.</summary>
      <param name="dataGridViewCellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to use as the model for the UI.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.CreateAccessibilityInstance">
      <summary>Creates a new <see cref="T:System.Windows.Forms.AccessibleObject" /> for this <see cref="T:System.Windows.Forms.DataGridViewTextBoxEditingControl" /> instance.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> instance that supports the ControlType UIA property.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
      <summary>Determines whether the specified key is a regular input key that the editing control should process or a special key that the <see cref="T:System.Windows.Forms.DataGridView" /> should process.</summary>
      <param name="keyData">A <see cref="T:System.Windows.Forms.Keys" /> that represents the key that was pressed.</param>
      <param name="dataGridViewWantsInputKey">
        <see langword="true" /> when the <see cref="T:System.Windows.Forms.DataGridView" /> wants to process the <paramref name="keyData" />; otherwise, <see langword="false" />.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key that should be handled by the editing control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Retrieves the formatted value of the cell.</summary>
      <param name="context">One of the <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the data error context.</param>
      <returns>An <see cref="T:System.Object" /> that represents the formatted version of the cell contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event and notifies the <see cref="T:System.Windows.Forms.DataGridView" /> of the text change.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.PrepareEditingControlForEdit(System.Boolean)">
      <summary>Prepares the currently selected cell for editing.</summary>
      <param name="selectAll">
        <see langword="true" /> to select the cell contents; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTextBoxEditingControl.ProcessKeyEventArgs(System.Windows.Forms.Message@)">
      <summary>Processes key events.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" /> indicating the key that was pressed.</param>
      <returns>
        <see langword="true" /> if the key event was handled by the editing control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlDataGridView">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.DataGridView" /> that contains the text box control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DataGridView" /> that contains the <see cref="T:System.Windows.Forms.DataGridViewTextBoxCell" /> that contains this control; otherwise, <see langword="null" /> if there is no associated <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlFormattedValue">
      <summary>Gets or sets the formatted representation of the current value of the text box control.</summary>
      <returns>An object representing the current value of this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlRowIndex">
      <summary>Gets or sets the index of the owning cell's parent row.</summary>
      <returns>The index of the row that contains the owning cell; -1 if there is no owning row.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlValueChanged">
      <summary>Gets or sets a value indicating whether the current value of the text box control has changed.</summary>
      <returns>
        <see langword="true" /> if the value of the control has changed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingPanelCursor">
      <summary>Gets the cursor used when the mouse pointer is over the <see cref="P:System.Windows.Forms.DataGridView.EditingPanel" /> but not over the editing control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Cursor" /> that represents the mouse pointer used for the editing panel.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTextBoxEditingControl.RepositionEditingControlOnValueChange">
      <summary>Gets a value indicating whether the cell contents need to be repositioned whenever the value changes.</summary>
      <returns>
        <see langword="true" /> if the cell's <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> is set to <see langword="true" /> and the alignment property is not set to one of the <see cref="T:System.Windows.Forms.DataGridViewContentAlignment" /> values that aligns the content to the top; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell">
      <summary>Represents the cell in the top left corner of the <see cref="T:System.Windows.Forms.DataGridView" /> that sits above the row headers and to the left of the column headers.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.CreateAccessibilityInstance">
      <summary>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetContentBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's content area, which is calculated using the specified <see cref="T:System.Drawing.Graphics" /> object and cell style.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> does not equal -1.</exception>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetErrorIconBounds(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32)">
      <summary>Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.</summary>
      <param name="graphics">The graphics context for the cell.</param>
      <param name="cellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to be applied to the cell.</param>
      <param name="rowIndex">The index of the cell's parent row.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> does not equal -1.</exception>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that bounds the cell's error icon, if one is displayed; otherwise, <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetPreferredSize(System.Drawing.Graphics,System.Windows.Forms.DataGridViewCellStyle,System.Int32,System.Drawing.Size)">
      <summary>Calculates the preferred size, in pixels, of the cell.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to draw the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that represents the style of the cell.</param>
      <param name="rowIndex">The zero-based row index of the cell.</param>
      <param name="constraintSize">The cell's maximum allowable size.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="rowIndex" /> does not equal -1.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the preferred size, in pixels, of the cell.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.Paint(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DataGridViewElementStates,System.Object,System.Object,System.String,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewPaintParts)">
      <summary>Paints the current <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.DataGridViewCell" />.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="cellBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the bounds of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="rowIndex">The row index of the cell that is being painted.</param>
      <param name="cellState">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values that specifies the state of the cell.</param>
      <param name="value">The data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="formattedValue">The formatted data of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being painted.</param>
      <param name="errorText">An error message that is associated with the cell.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles for the cell that is being painted.</param>
      <param name="paintParts">A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewPaintParts" /> values that specifies which parts of the cell need to be painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.PaintBorder(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Windows.Forms.DataGridViewCellStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle)">
      <summary>Paints the border of the current <see cref="T:System.Windows.Forms.DataGridViewCell" />.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the border.</param>
      <param name="clipBounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the area of the border that is being painted.</param>
      <param name="cellStyle">A <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> that contains formatting and style information about the cell.</param>
      <param name="advancedBorderStyle">A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that contains border styles of the border that is being painted.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.ToString">
      <summary>Returns the string representation of the cell.</summary>
      <returns>A string that represents the current cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject">
      <summary>Provides information about a <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell" /> to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.#ctor(System.Windows.Forms.DataGridViewTopLeftHeaderCell)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell" /> that owns the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DoDefaultAction">
      <summary>Performs the default action of the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
      <summary>Navigates to another accessible object.</summary>
      <param name="navigationDirection">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</param>
      <exception cref="T:System.InvalidOperationException">.NET 6 and later versions only: <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents an object in the specified direction.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)">
      <summary>Modifies the selection in the <see cref="T:System.Windows.Forms.DataGridView" /> control or sets input focus to the control.</summary>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.AccessibleSelection" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> property value is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Bounds">
      <summary>Gets the location and size of the accessible object.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 6 and later versions only: <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DefaultAction">
      <summary>Gets a description of the default action of the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 6 and later versions only: <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> is <see langword="null" />.</exception>
      <returns>The string "Press to Select All" if the <see cref="P:System.Windows.Forms.DataGridView.MultiSelect" /> property is <see langword="true" />; otherwise, an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Name">
      <summary>Gets the name of the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 6 and later versions only: <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> is <see langword="null" />.</exception>
      <returns>The name of the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.State">
      <summary>Gets the state of the <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject" />.</summary>
      <exception cref="T:System.InvalidOperationException">.NET 6 and later versions only: <see cref="P:System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner" /> is <see langword="null" />.</exception>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.AccessibleStates" /> values. The default is <see cref="F:System.Windows.Forms.AccessibleStates.Selectable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Value">
      <summary>The value of the containing <see cref="T:System.Windows.Forms.DataGridViewTopLeftHeaderCell" />.</summary>
      <returns>Always returns <see cref="F:System.String.Empty" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DataGridViewTriState">
      <summary>Defines values for specifying one of three possible states.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewTriState.False">
      <summary>The property's state is <see langword="false" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewTriState.NotSet">
      <summary>The property is not set and will behave in a default manner.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataGridViewTriState.True">
      <summary>The property's state is <see langword="true" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.DataObject">
      <summary>Implements a basic data transfer mechanism.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataObject.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataObject" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DataObject.#ctor(System.Object)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataObject" /> class and adds the specified object to it.</summary>
      <param name="data">The data to store.</param>
    </member>
    <member name="M:System.Windows.Forms.DataObject.#ctor(System.String,System.Object)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataObject" /> class and adds the specified object in the specified format.</summary>
      <param name="format">The format of the specified data. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="data">The data to store.</param>
    </member>
    <member name="M:System.Windows.Forms.DataObject.ContainsAudio">
      <summary>Indicates whether the data object contains data in the <see cref="F:System.Windows.Forms.DataFormats.WaveAudio" /> format.</summary>
      <returns>
        <see langword="true" /> if the data object contains audio data; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.ContainsFileDropList">
      <summary>Indicates whether the data object contains data that is in the <see cref="F:System.Windows.Forms.DataFormats.FileDrop" /> format or can be converted to that format.</summary>
      <returns>
        <see langword="true" /> if the data object contains a file drop list; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.ContainsImage">
      <summary>Indicates whether the data object contains data that is in the <see cref="F:System.Windows.Forms.DataFormats.Bitmap" /> format or can be converted to that format.</summary>
      <returns>
        <see langword="true" /> if the data object contains image data; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.ContainsText">
      <summary>Indicates whether the data object contains data in the <see cref="F:System.Windows.Forms.TextDataFormat.UnicodeText" /> format.</summary>
      <returns>
        <see langword="true" /> if the data object contains text data; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.ContainsText(System.Windows.Forms.TextDataFormat)">
      <summary>Indicates whether the data object contains text data in the format indicated by the specified <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</summary>
      <param name="format">One of the <see cref="T:System.Windows.Forms.TextDataFormat" /> values.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="format" /> is not a valid <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</exception>
      <returns>
        <see langword="true" /> if the data object contains text data in the specified format; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetAudioStream">
      <summary>Retrieves an audio stream from the data object.</summary>
      <returns>A <see cref="T:System.IO.Stream" /> containing audio data or <see langword="null" /> if the data object does not contain any data in the <see cref="F:System.Windows.Forms.DataFormats.WaveAudio" /> format.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetData(System.String)">
      <summary>Returns the data associated with the specified data format.</summary>
      <param name="format">The format of the data to retrieve. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <returns>The data associated with the specified format, or <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetData(System.String,System.Boolean)">
      <summary>Returns the data associated with the specified data format, using an automated conversion parameter to determine whether to convert the data to the format.</summary>
      <param name="format">The format of the data to retrieve. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="autoConvert">
        <see langword="true" /> to the convert data to the specified format; otherwise, <see langword="false" />.</param>
      <returns>The data associated with the specified format, or <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetData(System.Type)">
      <summary>Returns the data associated with the specified class type format.</summary>
      <param name="format">A <see cref="T:System.Type" /> representing the format of the data to retrieve.</param>
      <returns>The data associated with the specified format, or <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetDataPresent(System.String)">
      <summary>Determines whether data stored in this <see cref="T:System.Windows.Forms.DataObject" /> is associated with, or can be converted to, the specified format.</summary>
      <param name="format">The format to check for. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <returns>
        <see langword="true" /> if data stored in this <see cref="T:System.Windows.Forms.DataObject" /> is associated with, or can be converted to, the specified format; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetDataPresent(System.String,System.Boolean)">
      <summary>Determines whether this <see cref="T:System.Windows.Forms.DataObject" /> contains data in the specified format or, optionally, contains data that can be converted to the specified format.</summary>
      <param name="format">The format to check for. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="autoConvert">
        <see langword="true" /> to determine whether data stored in this <see cref="T:System.Windows.Forms.DataObject" /> can be converted to the specified format; <see langword="false" /> to check whether the data is in the specified format.</param>
      <returns>
        <see langword="true" /> if the data is in, or can be converted to, the specified format; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetDataPresent(System.Type)">
      <summary>Determines whether data stored in this <see cref="T:System.Windows.Forms.DataObject" /> is associated with, or can be converted to, the specified format.</summary>
      <param name="format">A <see cref="T:System.Type" /> representing the format to check for.</param>
      <returns>
        <see langword="true" /> if data stored in this <see cref="T:System.Windows.Forms.DataObject" /> is associated with, or can be converted to, the specified format; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetFileDropList">
      <summary>Retrieves a collection of file names from the data object.</summary>
      <returns>A <see cref="T:System.Collections.Specialized.StringCollection" /> containing file names or <see langword="null" /> if the data object does not contain any data that is in the <see cref="F:System.Windows.Forms.DataFormats.FileDrop" /> format or can be converted to that format.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetFormats">
      <summary>Returns a list of all formats that data stored in this <see cref="T:System.Windows.Forms.DataObject" /> is associated with or can be converted to.</summary>
      <returns>An array of type <see cref="T:System.String" />, containing a list of all formats that are supported by the data stored in this object.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetFormats(System.Boolean)">
      <summary>Returns a list of all formats that data stored in this <see cref="T:System.Windows.Forms.DataObject" /> is associated with or can be converted to, using an automatic conversion parameter to determine whether to retrieve only native data formats or all formats that the data can be converted to.</summary>
      <param name="autoConvert">
        <see langword="true" /> to retrieve all formats that data stored in this <see cref="T:System.Windows.Forms.DataObject" /> is associated with, or can be converted to; <see langword="false" /> to retrieve only native data formats.</param>
      <returns>An array of type <see cref="T:System.String" />, containing a list of all formats that are supported by the data stored in this object.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetImage">
      <summary>Retrieves an image from the data object.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> representing the image data in the data object or <see langword="null" /> if the data object does not contain any data that is in the <see cref="F:System.Windows.Forms.DataFormats.Bitmap" /> format or can be converted to that format.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetText">
      <summary>Retrieves text data from the data object in the <see cref="F:System.Windows.Forms.TextDataFormat.UnicodeText" /> format.</summary>
      <returns>The text data in the data object or <see cref="F:System.String.Empty" /> if the data object does not contain data in the <see cref="F:System.Windows.Forms.TextDataFormat.UnicodeText" /> format.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.GetText(System.Windows.Forms.TextDataFormat)">
      <summary>Retrieves text data from the data object in the format indicated by the specified <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</summary>
      <param name="format">One of the <see cref="T:System.Windows.Forms.TextDataFormat" /> values.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="format" /> is not a valid <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</exception>
      <returns>The text data in the data object or <see cref="F:System.String.Empty" /> if the data object does not contain data in the specified format.</returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetAudio(System.Byte[])">
      <summary>Adds a <see cref="T:System.Byte" /> array to the data object in the <see cref="F:System.Windows.Forms.DataFormats.WaveAudio" /> format after converting it to a <see cref="T:System.IO.Stream" />.</summary>
      <param name="audioBytes">A <see cref="T:System.Byte" /> array containing the audio data.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="audioBytes" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetAudio(System.IO.Stream)">
      <summary>Adds a <see cref="T:System.IO.Stream" /> to the data object in the <see cref="F:System.Windows.Forms.DataFormats.WaveAudio" /> format.</summary>
      <param name="audioStream">A <see cref="T:System.IO.Stream" /> containing the audio data.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="audioStream" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetData(System.Object)">
      <summary>Adds the specified object to the <see cref="T:System.Windows.Forms.DataObject" /> using the object type as the data format.</summary>
      <param name="data">The data to store.</param>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetData(System.String,System.Boolean,System.Object)">
      <summary>Adds the specified object to the <see cref="T:System.Windows.Forms.DataObject" /> using the specified format and indicating whether the data can be converted to another format.</summary>
      <param name="format">The format associated with the data. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="autoConvert">
        <see langword="true" /> to allow the data to be converted to another format; otherwise, <see langword="false" />.</param>
      <param name="data">The data to store.</param>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetData(System.String,System.Object)">
      <summary>Adds the specified object to the <see cref="T:System.Windows.Forms.DataObject" /> using the specified format.</summary>
      <param name="format">The format associated with the data. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="data">The data to store.</param>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetData(System.Type,System.Object)">
      <summary>Adds the specified object to the <see cref="T:System.Windows.Forms.DataObject" /> using the specified type as the format.</summary>
      <param name="format">A <see cref="T:System.Type" /> representing the format associated with the data.</param>
      <param name="data">The data to store.</param>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetFileDropList(System.Collections.Specialized.StringCollection)">
      <summary>Adds a collection of file names to the data object in the <see cref="F:System.Windows.Forms.DataFormats.FileDrop" /> format.</summary>
      <param name="filePaths">A <see cref="T:System.Collections.Specialized.StringCollection" /> containing the file names.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="filePaths" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetImage(System.Drawing.Image)">
      <summary>Adds an <see cref="T:System.Drawing.Image" /> to the data object in the <see cref="F:System.Windows.Forms.DataFormats.Bitmap" /> format.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to add to the data object.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="image" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetText(System.String)">
      <summary>Adds text data to the data object in the <see cref="F:System.Windows.Forms.TextDataFormat.UnicodeText" /> format.</summary>
      <param name="textData">The text to add to the data object.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="textData" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataObject.SetText(System.String,System.Windows.Forms.TextDataFormat)">
      <summary>Adds text data to the data object in the format indicated by the specified <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</summary>
      <param name="textData">The text to add to the data object.</param>
      <param name="format">One of the <see cref="T:System.Windows.Forms.TextDataFormat" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="textData" /> is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="format" /> is not a valid <see cref="T:System.Windows.Forms.TextDataFormat" /> value.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#DAdvise(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.ADVF,System.Runtime.InteropServices.ComTypes.IAdviseSink,System.Int32@)">
      <summary>Creates a connection between a data object and an advisory sink. This method is called by an object that supports an advisory sink and enables the advisory sink to be notified of changes in the object's data.</summary>
      <param name="pFormatetc">A <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, target device, aspect, and medium that will be used for future notifications.</param>
      <param name="advf">One of the <see cref="T:System.Runtime.InteropServices.ComTypes.ADVF" /> values that specifies a group of flags for controlling the advisory connection.</param>
      <param name="pAdvSink">A pointer to the <see cref="T:System.Runtime.InteropServices.ComTypes.IAdviseSink" /> interface on the advisory sink that will receive the change notification.</param>
      <param name="pdwConnection">When this method returns, contains a pointer to a DWORD token that identifies this connection. You can use this token later to delete the advisory connection by passing it to <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.DUnadvise(System.Int32)" />. If this value is zero, the connection was not established. This parameter is passed uninitialized.</param>
      <returns>This method supports the standard return values E_INVALIDARG, E_UNEXPECTED, and E_OUTOFMEMORY, as well as the following:  
  
 <list type="table"><listheader><term> Value</term><description> Description</description></listheader><item><term> S_OK</term><description> The advisory connection was created.</description></item><item><term> E_NOTIMPL</term><description> This method is not implemented on the data object.</description></item><item><term> DV_E_LINDEX</term><description> There is an invalid value for <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.lindex" />; currently, only -1 is supported.</description></item><item><term> DV_E_FORMATETC</term><description> There is an invalid value for the <paramref name="pFormatetc" /> parameter.</description></item><item><term> OLE_E_ADVISENOTSUPPORTED</term><description> The data object does not support change notification.</description></item></list></returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#DUnadvise(System.Int32)">
      <summary>Destroys a notification connection that had been previously established.</summary>
      <param name="dwConnection">A DWORD token that specifies the connection to remove. Use the value returned by <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.DAdvise(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.ADVF,System.Runtime.InteropServices.ComTypes.IAdviseSink,System.Int32@)" /> when the connection was originally established.</param>
    </member>
    <member name="M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#EnumDAdvise(System.Runtime.InteropServices.ComTypes.IEnumSTATDATA@)">
      <summary>Creates an object that can be used to enumerate the current advisory connections.</summary>
      <param name="enumAdvise">When this method returns, contains an <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumSTATDATA" /> that receives the interface pointer to the new enumerator object. If the implementation sets <paramref name="enumAdvise" /> to <see langword="null" />, there are no connections to advisory sinks at this time. This parameter is passed uninitialized.</param>
      <returns>This method supports the standard return value E_OUTOFMEMORY, as well as the following:  
  
 <list type="table"><listheader><term> Value</term><description> Description</description></listheader><item><term> S_OK</term><description> The enumerator object is successfully instantiated or there are no connections.</description></item><item><term> OLE_E_ADVISENOTSUPPORTED</term><description> This object does not support advisory notifications.</description></item></list></returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#EnumFormatEtc(System.Runtime.InteropServices.ComTypes.DATADIR)">
      <summary>Creates an object for enumerating the <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structures for a data object. These structures are used in calls to <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> or <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.SetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@,System.Boolean)" />.</summary>
      <param name="dwDirection">One of the <see cref="T:System.Runtime.InteropServices.ComTypes.DATADIR" /> values that specifies the direction of the data.</param>
      <returns>This method supports the standard return values E_INVALIDARG and E_OUTOFMEMORY, as well as the following:  
  
 <list type="table"><listheader><term> Value</term><description> Description</description></listheader><item><term> S_OK</term><description> The enumerator object was successfully created.</description></item><item><term> E_NOTIMPL</term><description> The direction specified by the <paramref name="direction" /> parameter is not supported.</description></item><item><term> OLE_S_USEREG</term><description> Requests that OLE enumerate the formats from the registry.</description></item></list></returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#GetCanonicalFormatEtc(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.FORMATETC@)">
      <summary>Provides a standard <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure that is logically equivalent to a more complex structure. Use this method to determine whether two different <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structures would return the same data, removing the need for duplicate rendering.</summary>
      <param name="pformatetcIn">A pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, medium, and target device that the caller would like to use to retrieve data in a subsequent call such as <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />. The <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" /> member is not significant in this case and should be ignored.</param>
      <param name="pformatetcOut">When this method returns, contains a pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure that contains the most general information possible for a specific rendering, making it canonically equivalent to <c>formatetcIn</c>. The caller must allocate this structure and the <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetCanonicalFormatEtc(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.FORMATETC@)" /> method must fill in the data. To retrieve data in a subsequent call such as <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />, the caller uses the supplied value of <c>formatOut</c>, unless the value supplied is <see langword="null" />. This value is <see langword="null" /> if the method returns <see langword="DATA_S_SAMEFORMATETC" />. The <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" /> member is not significant in this case and should be ignored. This parameter is passed uninitialized.</param>
      <returns>This method supports the standard return values E_INVALIDARG, E_UNEXPECTED, and E_OUTOFMEMORY, as well as the following:  
  
 <list type="table"><listheader><term> Value</term><description> Description</description></listheader><item><term> S_OK</term><description> The returned <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure is different from the one that was passed.</description></item><item><term> DATA_S_SAMEFORMATETC</term><description> The <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structures are the same and <see langword="null" /> is returned in the <paramref name="formatOut" /> parameter.</description></item><item><term> DV_E_LINDEX</term><description> There is an invalid value for <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.lindex" />; currently, only -1 is supported.</description></item><item><term> DV_E_FORMATETC</term><description> There is an invalid value for the <paramref name="pFormatetc" /> parameter.</description></item><item><term> OLE_E_NOTRUNNING</term><description> The application is not running.</description></item></list></returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)">
      <summary>Obtains data from a source data object. The <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> method, which is called by a data consumer, renders the data described in the specified <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure and transfers it through the specified <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure. The caller then assumes responsibility for releasing the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure.</summary>
      <param name="formatetc">A pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, medium, and target device to use when passing the data. It is possible to specify more than one medium by using the Boolean OR operator, allowing the method to choose the best medium among those specified.</param>
      <param name="medium">When this method returns, contains a pointer to the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure that indicates the storage medium containing the returned data through its <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.tymed" /> member, and the responsibility for releasing the medium through the value of its <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member. If <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> is <see langword="null" />, the receiver of the medium is responsible for releasing it; otherwise, <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> points to the <see langword="IUnknown" /> interface on the appropriate object so its <see langword="Release" /> method can be called. The medium must be allocated and filled in by <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />. This parameter is passed uninitialized.</param>
      <exception cref="T:System.OutOfMemoryException">There is not enough memory to perform this operation.</exception>
    </member>
    <member name="M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#GetDataHere(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)">
      <summary>Obtains data from a source data object. This method, which is called by a data consumer, differs from the <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> method in that the caller must allocate and free the specified storage medium.</summary>
      <param name="formatetc">A pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, medium, and target device to use when passing the data. Only one medium can be specified in <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" />, and only the following <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" /> values are valid: <see cref="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_ISTORAGE" />, <see cref="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_ISTREAM" />, <see cref="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_HGLOBAL" />, or <see cref="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_FILE" />.</param>
      <param name="medium">A <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" />, passed by reference, that defines the storage medium containing the data being transferred. The medium must be allocated by the caller and filled in by <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetDataHere(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />. The caller must also free the medium. The implementation of this method must always supply a value of <see langword="null" /> for the <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member of the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure that this parameter points to.</param>
    </member>
    <member name="M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#QueryGetData(System.Runtime.InteropServices.ComTypes.FORMATETC@)">
      <summary>Determines whether the data object is capable of rendering the data described in the <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure. Objects attempting a paste or drop operation can call this method before calling <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> to get an indication of whether the operation may be successful.</summary>
      <param name="formatetc">A pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, medium, and target device to use for the query.</param>
      <returns>This method supports the standard return values E_INVALIDARG, E_UNEXPECTED, and E_OUTOFMEMORY, as well as the following:  
  
 <list type="table"><listheader><term> Value</term><description> Description</description></listheader><item><term> S_OK</term><description> A subsequent call to <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> would probably be successful.</description></item><item><term> DV_E_LINDEX</term><description> An invalid value for <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.lindex" />; currently, only -1 is supported.</description></item><item><term> DV_E_FORMATETC</term><description> An invalid value for the <paramref name="pFormatetc" /> parameter.</description></item><item><term> DV_E_TYMED</term><description> An invalid <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.tymed" /> value.</description></item><item><term> DV_E_DVASPECT</term><description> An invalid <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.dwAspect" /> value.</description></item><item><term> OLE_E_NOTRUNNING</term><description> The application is not running.</description></item></list></returns>
    </member>
    <member name="M:System.Windows.Forms.DataObject.System#Runtime#InteropServices#ComTypes#IDataObject#SetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@,System.Boolean)">
      <summary>Transfers data to the object that implements this method. This method is called by an object that contains a data source.</summary>
      <param name="pFormatetcIn">A <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format used by the data object when interpreting the data contained in the storage medium.</param>
      <param name="pmedium">A <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure, passed by reference, that defines the storage medium in which the data is being passed.</param>
      <param name="fRelease">
        <see langword="true" /> to specify that the data object called, which implements <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.SetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@,System.Boolean)" />, owns the storage medium after the call returns. This means that the data object must free the medium after it has been used by calling the <see langword="ReleaseStgMedium" /> function. <see langword="false" /> to specify that the caller retains ownership of the storage medium, and the data object called uses the storage medium for the duration of the call only.</param>
      <exception cref="T:System.NotImplementedException">This method does not support the type of the underlying data object.</exception>
    </member>
    <member name="T:System.Windows.Forms.DataSourceUpdateMode">
      <summary>Specifies when a data source is updated when changes occur in the bound control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataSourceUpdateMode.Never">
      <summary>Data source is never updated and values entered into the control are not parsed, validated or re-formatted.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged">
      <summary>Data source is updated whenever the value of the control property changes.</summary>
    </member>
    <member name="F:System.Windows.Forms.DataSourceUpdateMode.OnValidation">
      <summary>Data source is updated when the control property is validated. After validation, the value in the control property is also reformatted.</summary>
    </member>
    <member name="T:System.Windows.Forms.DateBoldEventArgs">
      <summary>Provides data for events that are internal to the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
    </member>
    <member name="P:System.Windows.Forms.DateBoldEventArgs.DaysToBold">
      <summary>Gets or sets dates that are bold.</summary>
      <returns>The dates that are bold.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateBoldEventArgs.Size">
      <summary>Gets the number of dates that are bold.</summary>
      <returns>The number of dates that are bold.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateBoldEventArgs.StartDate">
      <summary>Gets the first date that is bold.</summary>
      <returns>The first date that is bold.</returns>
    </member>
    <member name="T:System.Windows.Forms.DateBoldEventHandler">
      <summary>Represents the method that will handle an internal event of the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DateRangeEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.MonthCalendar.DateChanged" /> or <see cref="E:System.Windows.Forms.MonthCalendar.DateSelected" /> events of the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DateRangeEventArgs.#ctor(System.DateTime,System.DateTime)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DateRangeEventArgs" /> class.</summary>
      <param name="start">The first date/time value in the range that the user has selected.</param>
      <param name="end">The last date/time value in the range that the user has selected.</param>
    </member>
    <member name="P:System.Windows.Forms.DateRangeEventArgs.End">
      <summary>Gets the last date/time value in the range that the user has selected.</summary>
      <returns>A <see cref="T:System.DateTime" /> that represents the last date in the date range that the user has selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateRangeEventArgs.Start">
      <summary>Gets the first date/time value in the range that the user has selected.</summary>
      <returns>A <see cref="T:System.DateTime" /> that represents the first date in the date range that the user has selected.</returns>
    </member>
    <member name="T:System.Windows.Forms.DateRangeEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.MonthCalendar.DateChanged" /> or <see cref="E:System.Windows.Forms.MonthCalendar.DateSelected" /> event of a <see cref="T:System.Windows.Forms.MonthCalendar" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DateRangeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DateTimePicker">
      <summary>Represents a Windows control that allows the user to select a date and a time and to display the date and time with a specified format.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.BackColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.BackColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.Click">
      <summary>Occurs when the control is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.CloseUp">
      <summary>Occurs when the drop-down calendar is dismissed and disappears.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.DoubleClick">
      <summary>Occurs when the control is double-clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.DropDown">
      <summary>Occurs when the drop-down calendar is shown.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.ForeColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.ForeColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.FormatChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> property value has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.MouseClick">
      <summary>Occurs when the control is clicked with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.MouseDoubleClick">
      <summary>Occurs when the control is double-clicked with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.Paint">
      <summary>Occurs when the control is redrawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.RightToLeftLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DateTimePicker.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.Text" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DateTimePicker.ValueChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property changes.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePicker.DefaultMonthBackColor">
      <summary>Specifies the default month background color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePicker.DefaultTitleBackColor">
      <summary>Specifies the default title back color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePicker.DefaultTitleForeColor">
      <summary>Specifies the default title foreground color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePicker.DefaultTrailingForeColor">
      <summary>Specifies the default trailing foreground color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePicker.MaxDateTime">
      <summary>Specifies the maximum date value of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePicker.MinDateTime">
      <summary>Gets the minimum date value of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DateTimePicker" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.CreateHandle">
      <summary>Creates the physical window handle.</summary>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.DestroyHandle">
      <summary>Destroys the physical window handle.</summary>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnCloseUp(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DateTimePicker.CloseUp" /> event.</summary>
      <param name="eventargs">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnDropDown(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DateTimePicker.DropDown" /> event.</summary>
      <param name="eventargs">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnEnabledChanged(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnFormatChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DateTimePicker.FormatChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnGotFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnRightToLeftLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="P:System.Windows.Forms.DateTimePicker.RightToLeftLayout" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnSystemColorsChanged(System.EventArgs)">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.OnSystemColorsChanged(System.EventArgs)" /> method.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.OnValueChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DateTimePicker.ValueChanged" /> event.</summary>
      <param name="eventargs">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.DateTimePicker" />. The string includes the type and the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property of the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.BackColor">
      <summary>Gets or sets a value indicating the background color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <returns>The background <see cref="T:System.Drawing.Color" /> of the <see cref="T:System.Windows.Forms.DateTimePicker" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.BackgroundImage">
      <summary>Gets or sets the background image for the control.</summary>
      <returns>The background image for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.BackgroundImageLayout">
      <summary>Gets or sets the layout of the background image of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.CalendarFont">
      <summary>Gets or sets the font style applied to the calendar.</summary>
      <returns>A <see cref="T:System.Drawing.Font" /> that represents the font style applied to the calendar.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.CalendarForeColor">
      <summary>Gets or sets the foreground color of the calendar.</summary>
      <exception cref="T:System.ArgumentException">The value assigned is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the calendar.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.CalendarMonthBackground">
      <summary>Gets or sets the background color of the calendar month.</summary>
      <exception cref="T:System.ArgumentException">The value assigned is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the calendar month.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.CalendarTitleBackColor">
      <summary>Gets or sets the background color of the calendar title.</summary>
      <exception cref="T:System.ArgumentException">The value assigned is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the calendar title.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.CalendarTitleForeColor">
      <summary>Gets or sets the foreground color of the calendar title.</summary>
      <exception cref="T:System.ArgumentException">The value assigned is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the calendar title.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.CalendarTrailingForeColor">
      <summary>Gets or sets the foreground color of the calendar trailing dates.</summary>
      <exception cref="T:System.ArgumentException">The value assigned is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the calendar trailing dates.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.Checked">
      <summary>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property has been set with a valid date/time value and the displayed value is able to be updated.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property has been set with a valid <see cref="T:System.DateTime" /> value and the displayed value is able to be updated; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.CustomFormat">
      <summary>Gets or sets the custom date/time format string.</summary>
      <returns>A string that represents the custom date/time format. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.DoubleBuffered">
      <summary>Gets or sets a value indicating whether the control should redraw its surface using a secondary buffer. Setting this property has no effect on the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <returns>
        <see langword="true" /> if the control should redraw its surface using a secondary buffer; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.DropDownAlign">
      <summary>Gets or sets the alignment of the drop-down calendar on the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values.</exception>
      <returns>The alignment of the drop-down calendar on the control. The default is <see cref="F:System.Windows.Forms.LeftRightAlignment.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.ForeColor">
      <summary>Gets or sets the foreground color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the <see cref="T:System.Windows.Forms.DateTimePicker" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.Format">
      <summary>Gets or sets the format of the date and time displayed in the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.DateTimePickerFormat" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DateTimePickerFormat" /> values. The default is <see cref="F:System.Windows.Forms.DateTimePickerFormat.Long" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.MaxDate">
      <summary>Gets or sets the maximum date and time that can be selected in the control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
The value assigned is less than the <see cref="P:System.Windows.Forms.DateTimePicker.MinDate" /> value.

-or-

The value assigned is greater than the <see cref="F:System.Windows.Forms.DateTimePicker.MaxDateTime" /> value.</exception>
      <returns>The maximum date and time that can be selected in the control. The default is the earlier of December 31st  9998 12 am and the <see cref="P:System.Globalization.Calendar.MaxSupportedDateTime" /> property of the current culture's Calendar.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.MaximumDateTime">
      <summary>Gets the maximum date value allowed for the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <returns>The maximum date value for the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.MinDate">
      <summary>Gets or sets the minimum date and time that can be selected in the control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
The value assigned is greater than the <see cref="P:System.Windows.Forms.DateTimePicker.MaxDate" /> value.

-or-
          
The value assigned is less than the <see cref="F:System.Windows.Forms.DateTimePicker.MinDateTime" /> value.</exception>
      <returns>The minimum date and time that can be selected in the control. The default is 1/1/1753 00:00:00.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.MinimumDateTime">
      <summary>Gets the minimum date value allowed for the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <returns>The minimum date value for the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.Padding">
      <summary>Gets or sets the spacing between the contents of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control and its edges.</summary>
      <returns>
        <see cref="F:System.Windows.Forms.Padding.Empty" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.PreferredHeight">
      <summary>Gets the preferred height of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</summary>
      <returns>The preferred height, in pixels, of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.RightToLeftLayout">
      <summary>Gets or sets whether the contents of the <see cref="T:System.Windows.Forms.DateTimePicker" /> are laid out from right to left.</summary>
      <returns>
        <see langword="true" /> if the layout of the <see cref="T:System.Windows.Forms.DateTimePicker" /> contents is from right to left; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.ShowCheckBox">
      <summary>Gets or sets a value indicating whether a check box is displayed to the left of the selected date.</summary>
      <returns>
        <see langword="true" /> if a check box is displayed to the left of the selected date; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.ShowUpDown">
      <summary>Gets or sets a value indicating whether a spin button control (also known as an up-down control) is used to adjust the date/time value.</summary>
      <returns>
        <see langword="true" /> if a spin button control is used to adjust the date/time value; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>A string that represents the text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.Value">
      <summary>Gets or sets the date/time value assigned to the control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The set value is less than <see cref="P:System.Windows.Forms.DateTimePicker.MinDate" /> or more than <see cref="P:System.Windows.Forms.DateTimePicker.MaxDate" />.</exception>
      <returns>The <see cref="T:System.DateTime" /> value assign to the control.</returns>
    </member>
    <member name="T:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject">
      <summary>Provides information about the <see cref="T:System.Windows.Forms.DateTimePicker" /> control to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.#ctor(System.Windows.Forms.DateTimePicker)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.DateTimePicker" /> that owns the <see cref="T:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DoDefaultAction" />
    <member name="P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DefaultAction" />
    <member name="P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.KeyboardShortcut">
      <summary>Gets the shortcut key or access key for the accessible object.</summary>
      <returns>The shortcut key or access key for the accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Name" />
    <member name="P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values indicating the role of the <see cref="T:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.State">
      <summary>Gets the state of the accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleStates" /> values indicating the state of the <see cref="T:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Value">
      <summary>Gets the value of an accessible object.</summary>
      <returns>The value of an accessible object, or <see langword="null" /> if the object has no value set.</returns>
    </member>
    <member name="T:System.Windows.Forms.DateTimePickerFormat">
      <summary>Specifies the date and time format the <see cref="T:System.Windows.Forms.DateTimePicker" /> control displays.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePickerFormat.Custom">
      <summary>The <see cref="T:System.Windows.Forms.DateTimePicker" /> control displays the date/time value in a custom format. For more information, see <see cref="P:System.Windows.Forms.DateTimePicker.CustomFormat" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePickerFormat.Long">
      <summary>The <see cref="T:System.Windows.Forms.DateTimePicker" /> control displays the date/time value in the long date format set by the user's operating system.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePickerFormat.Short">
      <summary>The <see cref="T:System.Windows.Forms.DateTimePicker" /> control displays the date/time value in the short date format set by the user's operating system.</summary>
    </member>
    <member name="F:System.Windows.Forms.DateTimePickerFormat.Time">
      <summary>The <see cref="T:System.Windows.Forms.DateTimePicker" /> control displays the date/time value in the time format set by the user's operating system.</summary>
    </member>
    <member name="T:System.Windows.Forms.Day">
      <summary>Specifies the day of the week.</summary>
    </member>
    <member name="F:System.Windows.Forms.Day.Default">
      <summary>A default day of the week specified by the application.</summary>
    </member>
    <member name="F:System.Windows.Forms.Day.Friday">
      <summary>The day Friday.</summary>
    </member>
    <member name="F:System.Windows.Forms.Day.Monday">
      <summary>The day Monday.</summary>
    </member>
    <member name="F:System.Windows.Forms.Day.Saturday">
      <summary>The day Saturday.</summary>
    </member>
    <member name="F:System.Windows.Forms.Day.Sunday">
      <summary>The day Sunday.</summary>
    </member>
    <member name="F:System.Windows.Forms.Day.Thursday">
      <summary>The day Thursday.</summary>
    </member>
    <member name="F:System.Windows.Forms.Day.Tuesday">
      <summary>The day Tuesday.</summary>
    </member>
    <member name="F:System.Windows.Forms.Day.Wednesday">
      <summary>The day Wednesday.</summary>
    </member>
    <member name="T:System.Windows.Forms.Design.ComponentEditorForm">
      <summary>Provides a user interface for a <see cref="T:System.Windows.Forms.Design.WindowsFormsComponentEditor" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.Design.ComponentEditorForm.AutoSizeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Form.AutoSize" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorForm.#ctor(System.Object,System.Type[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Design.ComponentEditorForm" /> class.</summary>
      <param name="component">The component to be edited.</param>
      <param name="pageTypes">The set of <see cref="T:System.Windows.Forms.Design.ComponentEditorPage" /> objects to be shown in the form.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="component" /> is not an <see cref="T:System.ComponentModel.IComponent" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorForm.OnActivated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.Activated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorForm.OnHelpRequested(System.Windows.Forms.HelpEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HelpRequested" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.HelpEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorForm.OnSelChangeSelector(System.Object,System.Windows.Forms.TreeViewEventArgs)">
      <summary>Switches between component editor pages.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ComponentModel.Design.CheckoutException">A designer file is checked into source code control and cannot be changed.</exception>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorForm.PreProcessMessage(System.Windows.Forms.Message@)">
      <summary>Provides a method to override in order to preprocess input messages before they are dispatched.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" /> that specifies the message to preprocess.</param>
      <returns>
        <see langword="true" /> if the specified message is for a component editor page; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorForm.ShowForm">
      <summary>Shows the form. The form will have no owner window.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values indicating the result code returned from the dialog box.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Int32)">
      <summary>Shows the specified page of the specified form. The form will have no owner window.</summary>
      <param name="page">The index of the page to show.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values indicating the result code returned from the dialog box.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Windows.Forms.IWin32Window)">
      <summary>Shows the form with the specified owner.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.IWin32Window" /> to own the dialog.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values indicating the result code returned from the dialog box.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Windows.Forms.IWin32Window,System.Int32)">
      <summary>Shows the form and the specified page with the specified owner.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.IWin32Window" /> to own the dialog.</param>
      <param name="page">The index of the page to show.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values indicating the result code returned from the dialog box.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorForm.AutoSize">
      <summary>Resize the form according to the setting of <see cref="P:System.Windows.Forms.Form.AutoSizeMode" />.</summary>
      <returns>
        <see langword="true" /> if the form will automatically resize; <see langword="false" /> if it must be manually resized.</returns>
    </member>
    <member name="T:System.Windows.Forms.Design.ComponentEditorPage">
      <summary>Provides a base implementation for a <see cref="T:System.Windows.Forms.Design.ComponentEditorPage" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.Design.ComponentEditorPage.AutoSizeChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Design.ComponentEditorPage" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.Activate">
      <summary>Activates and displays the page.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.ApplyChanges">
      <summary>Applies changes to all the components being edited.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.Deactivate">
      <summary>Deactivates and hides the page.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.EnterLoadingMode">
      <summary>Increments the loading counter.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.ExitLoadingMode">
      <summary>Decrements the loading counter.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.GetControl">
      <summary>Gets the control that represents the window for this page.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that represents the window for this page.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.GetSelectedComponent">
      <summary>Gets the component that is to be edited.</summary>
      <returns>The <see cref="T:System.ComponentModel.IComponent" /> that is to be edited.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.IsFirstActivate">
      <summary>Gets a value indicating whether the page is being activated for the first time.</summary>
      <returns>
        <see langword="true" /> if this is the first time the page is being activated; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.IsLoading">
      <summary>Gets a value indicating whether the page is being loaded.</summary>
      <returns>
        <see langword="true" /> if the page is being loaded; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.IsPageMessage(System.Windows.Forms.Message@)">
      <summary>Processes messages that could be handled by the page.</summary>
      <param name="msg">The message to process.</param>
      <returns>
        <see langword="true" /> if the page processed the message; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.LoadComponent">
      <summary>Loads the component into the page user interface (UI).</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.OnApplyComplete">
      <summary>Called when the page and any sibling pages have applied their changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.ReloadComponent">
      <summary>Reloads the component for the page.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.SaveComponent">
      <summary>Saves the component from the page user interface (UI).</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.SetComponent(System.ComponentModel.IComponent)">
      <summary>Sets the component to be edited.</summary>
      <param name="component">The <see cref="T:System.ComponentModel.IComponent" /> to be edited.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.SetDirty">
      <summary>Sets the page as changed since the last load or save.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.SetSite(System.Windows.Forms.IComponentEditorPageSite)">
      <summary>Sets the site for this page.</summary>
      <param name="site">The site for this page.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.ShowHelp">
      <summary>Shows Help information if the page supports Help information.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ComponentEditorPage.SupportsHelp">
      <summary>Gets a value indicating whether the editor supports Help.</summary>
      <returns>
        <see langword="true" /> if the editor supports Help; otherwise, <see langword="false" />. The default implementation returns <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.AutoSize">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.CommitOnDeactivate">
      <summary>Specifies whether the editor should apply its changes before it is deactivated.</summary>
      <returns>
        <see langword="true" /> if the editor should apply its changes; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.Component">
      <summary>Gets or sets the component to edit.</summary>
      <returns>The <see cref="T:System.ComponentModel.IComponent" /> this page allows you to edit.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.CreateParams">
      <summary>Gets the creation parameters for the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that indicates the creation parameters for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.FirstActivate">
      <summary>Gets or sets a value indicating whether the page is being activated for the first time.</summary>
      <returns>
        <see langword="true" /> if the page has not previously been activated; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.Icon">
      <summary>Gets or sets the icon for the page.</summary>
      <returns>An <see cref="T:System.Drawing.Icon" /> used to represent the page.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.Loading">
      <summary>Indicates how many load dependencies remain until loading has been completed.</summary>
      <returns>The number of remaining load dependencies.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.LoadRequired">
      <summary>Gets or sets a value indicating whether a component must be loaded before editing can occur.</summary>
      <returns>
        <see langword="true" /> if a component must be loaded before editing can occur; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.PageSite">
      <summary>Gets or sets the page site.</summary>
      <returns>The page site.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ComponentEditorPage.Title">
      <summary>Gets the title of the page.</summary>
      <returns>The title of the page.</returns>
    </member>
    <member name="T:System.Windows.Forms.Design.EventsTab">
      <summary>Provides a <see cref="T:System.Windows.Forms.Design.PropertyTab" /> that can display events for selection and linking.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.EventsTab.#ctor(System.IServiceProvider)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Design.EventsTab" /> class.</summary>
      <param name="sp">An <see cref="T:System.IServiceProvider" /> to use.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.EventsTab.CanExtend(System.Object)">
      <summary>Gets a value indicating whether the specified object can be extended.</summary>
      <param name="extendee">The object to test for extensibility.</param>
      <returns>
        <see langword="true" /> if the specified object can be extended; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.EventsTab.GetDefaultProperty(System.Object)">
      <summary>Gets the default property from the specified object.</summary>
      <param name="obj">The object to retrieve the default property of.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> indicating the default property.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.EventsTab.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
      <summary>Gets all the properties of the event tab that match the specified attributes and context.</summary>
      <param name="context">An <xref data-throw-if-not-resolved="true" uid="System.ComponentModel.ITypeDescriptorContext"></xref> that can be used to gain context information.</param>
      <param name="component">The component to retrieve the properties of.</param>
      <param name="attributes">An array of type <xref data-throw-if-not-resolved="true" uid="System.Attribute"></xref> that indicates the attributes of the event properties to retrieve.</param>
      <returns>A <xref data-throw-if-not-resolved="true" uid="System.ComponentModel.PropertyDescriptorCollection"></xref> that contains the properties. This will be an empty <xref data-throw-if-not-resolved="true" uid="System.ComponentModel.PropertyDescriptorCollection"></xref> if the component does not implement an event service.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.EventsTab.GetProperties(System.Object,System.Attribute[])">
      <summary>Gets all the properties of the event tab that match the specified attributes.</summary>
      <param name="component">The component to retrieve the properties of.</param>
      <param name="attributes">An array of <see cref="T:System.Attribute" /> that indicates the attributes of the event properties to retrieve.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the properties. This will be an empty <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> if the component does not implement an event service.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.EventsTab.HelpKeyword">
      <summary>Gets the Help keyword for the tab.</summary>
      <returns>The Help keyword for the tab.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.EventsTab.TabName">
      <summary>Gets the name of the tab.</summary>
      <returns>The name of the tab.</returns>
    </member>
    <member name="T:System.Windows.Forms.Design.IUIService">
      <summary>Enables interaction with the user interface of the development environment object that is hosting the designer.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.CanShowComponentEditor(System.Object)">
      <summary>Indicates whether the component can display a <see cref="T:System.Windows.Forms.Design.ComponentEditorForm" />.</summary>
      <param name="component">The component to check for support for displaying a <see cref="T:System.Windows.Forms.Design.ComponentEditorForm" />.</param>
      <returns>
        <see langword="true" /> if the specified component can display a component editor form; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.GetDialogOwnerWindow">
      <summary>Gets the window that should be used as the owner when showing dialog boxes.</summary>
      <returns>An <see cref="T:System.Windows.Forms.IWin32Window" /> that indicates the window to own any child dialog boxes.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.SetUIDirty">
      <summary>Sets a flag indicating the UI has changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.ShowComponentEditor(System.Object,System.Windows.Forms.IWin32Window)">
      <summary>Attempts to display a <see cref="T:System.Windows.Forms.Design.ComponentEditorForm" /> for a component.</summary>
      <param name="component">The component for which to display a <see cref="T:System.Windows.Forms.Design.ComponentEditorForm" />.</param>
      <param name="parent">The <see cref="T:System.Windows.Forms.IWin32Window" /> to parent any dialog boxes to.</param>
      <exception cref="T:System.ArgumentException">The component does not support component editors.</exception>
      <returns>
        <see langword="true" /> if the attempt is successful; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.ShowDialog(System.Windows.Forms.Form)">
      <summary>Attempts to display the specified form in a dialog box.</summary>
      <param name="form">The <see cref="T:System.Windows.Forms.Form" /> to display.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values indicating the result code returned by the dialog box.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.ShowError(System.Exception)">
      <summary>Displays the specified exception and information about the exception in a message box.</summary>
      <param name="ex">The <see cref="T:System.Exception" /> to display.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.ShowError(System.Exception,System.String)">
      <summary>Displays the specified exception and information about the exception in a message box.</summary>
      <param name="ex">The <see cref="T:System.Exception" /> to display.</param>
      <param name="message">A message to display that provides information about the exception.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.ShowError(System.String)">
      <summary>Displays the specified error message in a message box.</summary>
      <param name="message">The error message to display.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.ShowMessage(System.String)">
      <summary>Displays the specified message in a message box.</summary>
      <param name="message">The message to display.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.ShowMessage(System.String,System.String)">
      <summary>Displays the specified message in a message box with the specified caption.</summary>
      <param name="message">The message to display.</param>
      <param name="caption">The caption for the message box.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.ShowMessage(System.String,System.String,System.Windows.Forms.MessageBoxButtons)">
      <summary>Displays the specified message in a message box with the specified caption and buttons to place on the dialog box.</summary>
      <param name="message">The message to display.</param>
      <param name="caption">The caption for the dialog box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values: <see cref="F:System.Windows.Forms.MessageBoxButtons.OK" />, <see cref="F:System.Windows.Forms.MessageBoxButtons.OKCancel" />, <see cref="F:System.Windows.Forms.MessageBoxButtons.YesNo" />, or <see cref="F:System.Windows.Forms.MessageBoxButtons.YesNoCancel" />.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values indicating the result code returned by the dialog box.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.IUIService.ShowToolWindow(System.Guid)">
      <summary>Displays the specified tool window.</summary>
      <param name="toolWindow">A <see cref="T:System.Guid" /> identifier for the tool window. This can be a custom <see cref="T:System.Guid" /> or one of the predefined values from <see cref="T:System.ComponentModel.Design.StandardToolWindows" />.</param>
      <returns>
        <see langword="true" /> if the tool window was successfully shown; <see langword="false" /> if it could not be shown or found.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.IUIService.Styles">
      <summary>Gets the collection of styles that are specific to the host's environment.</summary>
      <returns>An <see cref="T:System.Collections.IDictionary" /> containing style settings.</returns>
    </member>
    <member name="T:System.Windows.Forms.Design.IWindowsFormsEditorService">
      <summary>Provides an interface for a <see cref="T:System.Drawing.Design.UITypeEditor" /> to display Windows Forms or to display a control in a drop-down area from a property grid control in design mode.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.IWindowsFormsEditorService.CloseDropDown">
      <summary>Closes any previously opened drop down control area.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.IWindowsFormsEditorService.DropDownControl(System.Windows.Forms.Control)">
      <summary>Displays the specified control in a drop down area below a value field of the property grid that provides this service.</summary>
      <param name="control">The drop down list <see cref="T:System.Windows.Forms.Control" /> to open.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.IWindowsFormsEditorService.ShowDialog(System.Windows.Forms.Form)">
      <summary>Shows the specified <see cref="T:System.Windows.Forms.Form" />.</summary>
      <param name="dialog">The <see cref="T:System.Windows.Forms.Form" /> to display.</param>
      <returns>A <see cref="T:System.Windows.Forms.DialogResult" /> indicating the result code returned by the <see cref="T:System.Windows.Forms.Form" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.Design.PropertyTab">
      <summary>Provides a base class for property tabs.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.PropertyTab.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Design.PropertyTab" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.PropertyTab.CanExtend(System.Object)">
      <summary>Gets a value indicating whether this <see cref="T:System.Windows.Forms.Design.PropertyTab" /> can display properties for the specified component.</summary>
      <param name="extendee">The object to test.</param>
      <returns>
        <see langword="true" /> if the object can be extended; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.PropertyTab.Dispose">
      <summary>Releases all the resources used by the <see cref="T:System.Windows.Forms.Design.PropertyTab" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.PropertyTab.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Design.PropertyTab" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.PropertyTab.Finalize">
      <summary>Allows a <see cref="T:System.Windows.Forms.Design.PropertyTab" /> to attempt to free resources and perform other cleanup operations before the <see cref="T:System.Windows.Forms.Design.PropertyTab" /> is reclaimed by garbage collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.PropertyTab.GetDefaultProperty(System.Object)">
      <summary>Gets the default property of the specified component.</summary>
      <param name="component">The component to retrieve the default property of.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the default property.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.PropertyTab.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
      <summary>Gets the properties of the specified component that match the specified attributes and context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that indicates the context to retrieve properties from.</param>
      <param name="component">The component to retrieve properties from.</param>
      <param name="attributes">An array of type <see cref="T:System.Attribute" /> that indicates the attributes of the properties to retrieve.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the properties matching the specified context and attributes.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.PropertyTab.GetProperties(System.Object)">
      <summary>Gets the properties of the specified component.</summary>
      <param name="component">The component to retrieve the properties of.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the properties of the component.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.PropertyTab.GetProperties(System.Object,System.Attribute[])">
      <summary>Gets the properties of the specified component that match the specified attributes.</summary>
      <param name="component">The component to retrieve properties from.</param>
      <param name="attributes">An array of type <see cref="T:System.Attribute" /> that indicates the attributes of the properties to retrieve.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the properties.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.PropertyTab.Bitmap">
      <summary>Gets the bitmap that is displayed for the <see cref="T:System.Windows.Forms.Design.PropertyTab" />.</summary>
      <returns>The <see cref="T:System.Drawing.Bitmap" /> to display for the <see cref="T:System.Windows.Forms.Design.PropertyTab" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.PropertyTab.Components">
      <summary>Gets or sets the array of components the property tab is associated with.</summary>
      <returns>The array of components the property tab is associated with.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.PropertyTab.HelpKeyword">
      <summary>Gets the Help keyword that is to be associated with this tab.</summary>
      <returns>The Help keyword to be associated with this tab.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.PropertyTab.TabName">
      <summary>Gets the name for the property tab.</summary>
      <returns>The name for the property tab.</returns>
    </member>
    <member name="T:System.Windows.Forms.Design.ToolStripItemDesignerAvailability">
      <summary>Specifies controls that are visible in the designer.</summary>
    </member>
    <member name="F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.All">
      <summary>Specifies that all controls are visible.</summary>
    </member>
    <member name="F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ContextMenuStrip">
      <summary>Specifies that <see cref="T:System.Windows.Forms.ContextMenuStrip" /> is visible.</summary>
    </member>
    <member name="F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.MenuStrip">
      <summary>Specifies that <see cref="T:System.Windows.Forms.MenuStrip" /> is visible.</summary>
    </member>
    <member name="F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.None">
      <summary>Specifies that no controls are visible.</summary>
    </member>
    <member name="F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip">
      <summary>Specifies that <see cref="T:System.Windows.Forms.StatusStrip" /> is visible.</summary>
    </member>
    <member name="F:System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip">
      <summary>Specifies that <see cref="T:System.Windows.Forms.ToolStrip" /> is visible.</summary>
    </member>
    <member name="T:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute">
      <summary>Specifies which types a <see cref="T:System.Windows.Forms.ToolStripItem" /> can appear in. This class cannot be inherited.</summary>
    </member>
    <member name="F:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.Default">
      <summary>Specifies the default value of the <see cref="T:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute" />. This field is read-only.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.#ctor">
      <summary>Initializes a new default instance of the <see cref="T:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.#ctor(System.Windows.Forms.Design.ToolStripItemDesignerAvailability)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute" /> class with the specified visibility.</summary>
      <param name="visibility">A <see cref="T:System.Windows.Forms.Design.ToolStripItemDesignerAvailability" /> value specifying the visibility.</param>
    </member>
    <member name="M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.Equals(System.Object)">
      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>
      <param name="obj">An <see cref="T:System.Object" /> to compare with this instance or a null reference (<see langword="Nothing" /> in Visual Basic).</param>
      <returns>
        <see langword="true" /> if <paramref name="obj" /> equals the type and value of this instance; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.GetHashCode">
      <summary>Returns the hash code for this instance.</summary>
      <returns>A 32-bit signed integer hash code.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.IsDefaultAttribute">
      <summary>When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.</summary>
      <returns>
        <see langword="true" /> if this instance is the default attribute for the class; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.ItemAdditionVisibility">
      <summary>Gets the visibility of a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Design.ToolStripItemDesignerAvailability" /> representing the visibility.</returns>
    </member>
    <member name="T:System.Windows.Forms.Design.WindowsFormsComponentEditor">
      <summary>Provides a base class for editors that use a modal dialog to display a properties page similar to an ActiveX control's property page.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.WindowsFormsComponentEditor.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Design.WindowsFormsComponentEditor" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext,System.Object)">
      <summary>Creates an editor window that allows the user to edit the specified component, using the specified context information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information.</param>
      <param name="component">The component to edit.</param>
      <returns>
        <see langword="true" /> if the component was changed during editing; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Windows.Forms.IWin32Window)">
      <summary>Creates an editor window that allows the user to edit the specified component.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information.</param>
      <param name="component">The component to edit.</param>
      <param name="owner">An <see cref="T:System.Windows.Forms.IWin32Window" /> that the component belongs to.</param>
      <returns>
        <see langword="true" /> if the component was changed during editing; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.Object,System.Windows.Forms.IWin32Window)">
      <summary>Creates an editor window that allows the user to edit the specified component, using the specified window that owns the component.</summary>
      <param name="component">The component to edit.</param>
      <param name="owner">An <see cref="T:System.Windows.Forms.IWin32Window" /> that the component belongs to.</param>
      <returns>
        <see langword="true" /> if the component was changed during editing; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.WindowsFormsComponentEditor.GetComponentEditorPages">
      <summary>Gets the component editor pages associated with the component editor.</summary>
      <returns>An array of component editor pages.</returns>
    </member>
    <member name="M:System.Windows.Forms.Design.WindowsFormsComponentEditor.GetInitialComponentEditorPageIndex">
      <summary>Gets the index of the initial component editor page for the component editor to display.</summary>
      <returns>The index of the component editor page that the component editor will initially display.</returns>
    </member>
    <member name="T:System.Windows.Forms.DialogResult">
      <summary>Specifies identifiers to indicate the return value of a dialog box.</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.Abort">
      <summary>The dialog box return value is <see langword="Abort" /> (usually sent from a button labeled Abort).</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.Cancel">
      <summary>The dialog box return value is <see langword="Cancel" /> (usually sent from a button labeled Cancel).</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.Continue">
      <summary>The dialog box return value is Continue (usually sent from a button labeled Continue).</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.Ignore">
      <summary>The dialog box return value is <see langword="Ignore" /> (usually sent from a button labeled Ignore).</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.No">
      <summary>The dialog box return value is <see langword="No" /> (usually sent from a button labeled No).</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.None">
      <summary>
        <see langword="Nothing" /> is returned from the dialog box. This means that the modal dialog continues running.</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.OK">
      <summary>The dialog box return value is <see langword="OK" /> (usually sent from a button labeled OK).</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.Retry">
      <summary>The dialog box return value is <see langword="Retry" /> (usually sent from a button labeled Retry).</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.TryAgain">
      <summary>The dialog box return value is Try Again (usually sent from a button labeled Try Again).</summary>
    </member>
    <member name="F:System.Windows.Forms.DialogResult.Yes">
      <summary>The dialog box return value is <see langword="Yes" /> (usually sent from a button labeled Yes).</summary>
    </member>
    <member name="T:System.Windows.Forms.DockingAttribute">
      <summary>Specifies the default docking behavior for a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockingAttribute.Default">
      <summary>The default <see cref="T:System.Windows.Forms.DockingAttribute" /> for this control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DockingAttribute.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DockingAttribute" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DockingAttribute.#ctor(System.Windows.Forms.DockingBehavior)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DockingAttribute" /> class with the given docking behavior.</summary>
      <param name="dockingBehavior">A <see cref="T:System.Windows.Forms.DockingBehavior" /> value specifying the default behavior.</param>
    </member>
    <member name="M:System.Windows.Forms.DockingAttribute.Equals(System.Object)">
      <summary>Compares an arbitrary object with the <see cref="T:System.Windows.Forms.DockingAttribute" /> object for equality.</summary>
      <param name="obj">The <see cref="T:System.Object" /> against which to compare this <see cref="T:System.Windows.Forms.DockingAttribute" />.</param>
      <returns>
        <see langword="true" /> is <paramref name="obj" /> is equal to this <see cref="T:System.Windows.Forms.DockingAttribute" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DockingAttribute.GetHashCode">
      <summary>The hash code for this object.</summary>
      <returns>An <see cref="T:System.Int32" /> representing an in-memory hash of this object.</returns>
    </member>
    <member name="M:System.Windows.Forms.DockingAttribute.IsDefaultAttribute">
      <summary>Specifies whether this <see cref="T:System.Windows.Forms.DockingAttribute" /> is the default docking attribute.</summary>
      <returns>
        <see langword="true" /> is the current <see cref="T:System.Windows.Forms.DockingAttribute" /> is the default; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DockingAttribute.DockingBehavior">
      <summary>Gets the docking behavior supplied to this attribute.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DockingBehavior" /> value.</returns>
    </member>
    <member name="T:System.Windows.Forms.DockingBehavior">
      <summary>Specifies how a control should be docked by default when added through a designer.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockingBehavior.Ask">
      <summary>Prompt the user for the desired docking behavior.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockingBehavior.AutoDock">
      <summary>Set the control's <see cref="P:System.Windows.Forms.Control.Dock" /> property to <see cref="F:System.Windows.Forms.DockStyle.Fill" /> when it is dropped into a container with no other child controls.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockingBehavior.Never">
      <summary>Do not prompt the user for the desired docking behavior.</summary>
    </member>
    <member name="T:System.Windows.Forms.DockStyle">
      <summary>Specifies the position and manner in which a control is docked.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockStyle.Bottom">
      <summary>The control's bottom edge is docked to the bottom of its containing control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockStyle.Fill">
      <summary>All the control's edges are docked to the all edges of its containing control and sized appropriately.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockStyle.Left">
      <summary>The control's left edge is docked to the left edge of its containing control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockStyle.None">
      <summary>The control is not docked.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockStyle.Right">
      <summary>The control's right edge is docked to the right edge of its containing control.</summary>
    </member>
    <member name="F:System.Windows.Forms.DockStyle.Top">
      <summary>The control's top edge is docked to the top of its containing control.</summary>
    </member>
    <member name="T:System.Windows.Forms.DomainUpDown">
      <summary>Represents a Windows spin box (also known as an up-down control) that displays string values.</summary>
    </member>
    <member name="E:System.Windows.Forms.DomainUpDown.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.DomainUpDown.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.DomainUpDown.SelectedItemChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.DomainUpDown.SelectedItem" /> property has been changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DomainUpDown" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.DownButton">
      <summary>Displays the next item in the object collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.OnChanged(System.Object,System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DomainUpDown.SelectedItemChanged" /> event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.OnSelectedItemChanged(System.Object,System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.DomainUpDown.SelectedItemChanged" /> event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.OnTextBoxKeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.DomainUpDown" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.DomainUpDown" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.UpButton">
      <summary>Displays the previous item in the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.UpdateEditText">
      <summary>Updates the text in the spin box (also known as an up-down control) to display the selected item.</summary>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.Items">
      <summary>A collection of objects assigned to the spin box (also known as an up-down control).</summary>
      <returns>A <see cref="T:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection" /> that contains an <see cref="T:System.Object" /> collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.Padding">
      <summary>Gets or sets the spacing between the <see cref="T:System.Windows.Forms.DomainUpDown" /> control's contents and its edges.</summary>
      <returns>
        <see cref="F:System.Windows.Forms.Padding.Empty" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.SelectedIndex">
      <summary>Gets or sets the index value of the selected item.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than the default, -1.  
  
 -or-  
  
 The assigned value is greater than the <see cref="P:System.Windows.Forms.DomainUpDown.Items" /> count.</exception>
      <returns>The zero-based index value of the selected item. The default value is -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.SelectedItem">
      <summary>Gets or sets the selected item based on the index value of the selected item in the collection.</summary>
      <returns>The selected item based on the <see cref="P:System.Windows.Forms.DomainUpDown.SelectedIndex" /> value. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.Sorted">
      <summary>Gets or sets a value indicating whether the item collection is sorted.</summary>
      <returns>
        <see langword="true" /> if the item collection is sorted; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.Wrap">
      <summary>Gets or sets a value indicating whether the collection of items continues to the first or last item if the user continues past the end of the list.</summary>
      <returns>
        <see langword="true" /> if the list starts again when the user reaches the beginning or end of the collection; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject">
      <summary>Provides information about the items in the <see cref="T:System.Windows.Forms.DomainUpDown" /> control to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.#ctor(System.String,System.Windows.Forms.AccessibleObject)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject" /> class.</summary>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject" />.</param>
      <param name="parent">The <see cref="T:System.Windows.Forms.AccessibleObject" /> that contains the items in the <see cref="T:System.Windows.Forms.DomainUpDown" /> control.</param>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Name">
      <summary>Gets or sets the object name.</summary>
      <returns>The object name, or <see langword="null" /> if the property has not been set.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Parent">
      <summary>Gets the parent of an accessible object.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the parent of an accessible object, or <see langword="null" /> if there is no parent object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.ListItem" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.State">
      <summary>Gets the state of the <see cref="T:System.Windows.Forms.RadioButton" /> control.</summary>
      <returns>If the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> property is set to true, returns <see cref="F:System.Windows.Forms.AccessibleStates.Checked" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Value">
      <summary>Gets the value of an accessible object.</summary>
      <returns>The Name property of the <see cref="T:System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject">
      <summary>Provides information about the <see cref="T:System.Windows.Forms.DomainUpDown" /> control to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.#ctor(System.Windows.Forms.DomainUpDown)">
      <param name="owner" />
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.GetChild(System.Int32)">
      <summary>Gets the accessible child corresponding to the specified index.</summary>
      <param name="index">The zero-based index of the accessible child.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the accessible child corresponding to the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.GetChildCount">
      <summary>Retrieves the number of children belonging to an accessible object.</summary>
      <returns>Returns 3 in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.ComboBox" /> value.</returns>
    </member>
    <member name="T:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection">
      <summary>Encapsulates a collection of objects for use by the <see cref="T:System.Windows.Forms.DomainUpDown" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Add(System.Object)">
      <summary>Adds the specified object to the end of the collection.</summary>
      <param name="item">The <see cref="T:System.Object" /> to be added to the end of the collection.</param>
      <returns>The zero-based index value of the <see cref="T:System.Object" /> added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Insert(System.Int32,System.Object)">
      <summary>Inserts the specified object into the collection at the specified location.</summary>
      <param name="index">The indexed location within the collection to insert the <see cref="T:System.Object" />.</param>
      <param name="item">The <see cref="T:System.Object" /> to insert.</param>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Remove(System.Object)">
      <summary>Removes the specified item from the collection.</summary>
      <param name="item">The <see cref="T:System.Object" /> to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.RemoveAt(System.Int32)">
      <summary>Removes the item from the specified location in the collection.</summary>
      <param name="item">The indexed location of the <see cref="T:System.Object" /> in the collection.</param>
    </member>
    <member name="P:System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Item(System.Int32)">
      <summary>Gets or sets the item at the specified indexed location in the collection.</summary>
      <param name="index">The indexed location of the item in the collection.</param>
      <returns>An <see cref="T:System.Object" /> that represents the item at the specified indexed location.</returns>
    </member>
    <member name="T:System.Windows.Forms.DpiChangedEventArgs">
      <summary>Provides data for the DPIChanged events of a form or control.</summary>
    </member>
    <member name="M:System.Windows.Forms.DpiChangedEventArgs.ToString">
      <summary>Creates and returns a string representation of the current <see cref="T:System.Windows.Forms.DpiChangedEventArgs" />.</summary>
      <returns>A string.</returns>
    </member>
    <member name="P:System.Windows.Forms.DpiChangedEventArgs.DeviceDpiNew">
      <summary>Gets the DPI value for the new display device where the control or form is currently being displayed.</summary>
      <returns>The DPI value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DpiChangedEventArgs.DeviceDpiOld">
      <summary>Gets the DPI value for the display device where the control or form was previously displayed.</summary>
      <returns>A DPI value.</returns>
    </member>
    <member name="P:System.Windows.Forms.DpiChangedEventArgs.SuggestedRectangle">
      <summary>Gets a <see cref="T:System.Drawing.Rectangle" /> that represents the new bounding rectangle for the control or form based on the DPI of the display device where it's displayed.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DpiChangedEventHandler">
      <summary>Represents the method that will handle a DpiChanged event of a form or control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DpiChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DragAction">
      <summary>Specifies how and if a drag-and-drop operation should continue.</summary>
    </member>
    <member name="F:System.Windows.Forms.DragAction.Cancel">
      <summary>The operation is canceled with no drop message.</summary>
    </member>
    <member name="F:System.Windows.Forms.DragAction.Continue">
      <summary>The operation will continue.</summary>
    </member>
    <member name="F:System.Windows.Forms.DragAction.Drop">
      <summary>The operation will stop with a drop.</summary>
    </member>
    <member name="T:System.Windows.Forms.DragDropEffects">
      <summary>Specifies the possible effects of a drag-and-drop operation.</summary>
    </member>
    <member name="F:System.Windows.Forms.DragDropEffects.All">
      <summary>The combination of the <see cref="F:System.Windows.DragDropEffects.Copy" />, <see cref="F:System.Windows.Forms.DragDropEffects.Move" />, and <see cref="F:System.Windows.Forms.DragDropEffects.Scroll" /> effects.</summary>
    </member>
    <member name="F:System.Windows.Forms.DragDropEffects.Copy">
      <summary>The data from the drag source is copied to the drop target.</summary>
    </member>
    <member name="F:System.Windows.Forms.DragDropEffects.Link">
      <summary>The data from the drag source is linked to the drop target.</summary>
    </member>
    <member name="F:System.Windows.Forms.DragDropEffects.Move">
      <summary>The data from the drag source is moved to the drop target.</summary>
    </member>
    <member name="F:System.Windows.Forms.DragDropEffects.None">
      <summary>The drop target does not accept the data.</summary>
    </member>
    <member name="F:System.Windows.Forms.DragDropEffects.Scroll">
      <summary>The target can be scrolled while dragging to locate a drop position that is not currently visible in the target.</summary>
    </member>
    <member name="T:System.Windows.Forms.DragEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.DragDrop" />, <see cref="E:System.Windows.Forms.Control.DragEnter" />, or <see cref="E:System.Windows.Forms.Control.DragOver" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DragEventArgs.#ctor(System.Windows.Forms.IDataObject,System.Int32,System.Int32,System.Int32,System.Windows.Forms.DragDropEffects,System.Windows.Forms.DragDropEffects)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DragEventArgs" /> class.</summary>
      <param name="data">The data associated with this event.</param>
      <param name="keyState">The current state of the SHIFT, CTRL, and ALT keys.</param>
      <param name="x">The x-coordinate of the mouse cursor in pixels.</param>
      <param name="y">The y-coordinate of the mouse cursor in pixels.</param>
      <param name="allowedEffect">One of the <see cref="T:System.Windows.Forms.DragDropEffects" /> values.</param>
      <param name="effect">One of the <see cref="T:System.Windows.Forms.DragDropEffects" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.DragEventArgs.#ctor(System.Windows.Forms.IDataObject,System.Int32,System.Int32,System.Int32,System.Windows.Forms.DragDropEffects,System.Windows.Forms.DragDropEffects,System.Windows.Forms.DropImageType,System.String,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DragEventArgs" /> class.</summary>
      <param name="data" />
      <param name="keyState" />
      <param name="x" />
      <param name="y" />
      <param name="allowedEffect" />
      <param name="effect" />
      <param name="dropImageType" />
      <param name="message" />
      <param name="messageReplacementToken" />
    </member>
    <member name="P:System.Windows.Forms.DragEventArgs.AllowedEffect">
      <summary>Gets which drag-and-drop operations are allowed by the originator (or source) of the drag event.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DragDropEffects" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DragEventArgs.Data">
      <summary>Gets the <see cref="T:System.Windows.Forms.IDataObject" /> that contains the data associated with this event.</summary>
      <returns>The data associated with this event.</returns>
    </member>
    <member name="P:System.Windows.Forms.DragEventArgs.DropImageType">
      <summary>Gets or sets the drop description image type.</summary>
    </member>
    <member name="P:System.Windows.Forms.DragEventArgs.Effect">
      <summary>Gets or sets the target drop effect in a drag-and-drop operation.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DragDropEffects" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.DragEventArgs.KeyState">
      <summary>Gets the current state of the SHIFT, CTRL, and ALT keys, as well as the state of the mouse buttons.</summary>
      <returns>The current state of the SHIFT, CTRL, and ALT keys and of the mouse buttons.</returns>
    </member>
    <member name="P:System.Windows.Forms.DragEventArgs.Message">
      <summary>Gets or sets the drop description text, such as "Move to %1".</summary>
    </member>
    <member name="P:System.Windows.Forms.DragEventArgs.MessageReplacementToken">
      <summary>Gets or sets the drop description text, such as "Documents", when %1 is specified in <see cref="P:System.Windows.Forms.DragEventArgs.Message" />.</summary>
    </member>
    <member name="P:System.Windows.Forms.DragEventArgs.X">
      <summary>Gets the x-coordinate of the mouse pointer, in screen coordinates.</summary>
      <returns>The x-coordinate of the mouse pointer in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.DragEventArgs.Y">
      <summary>Gets the y-coordinate of the mouse pointer, in screen coordinates.</summary>
      <returns>The y-coordinate of the mouse pointer in pixels.</returns>
    </member>
    <member name="T:System.Windows.Forms.DragEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.DragDrop" />, <see cref="E:System.Windows.Forms.Control.DragEnter" />, or <see cref="E:System.Windows.Forms.Control.DragOver" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DrawItemEventArgs">
      <summary>Provides data for the <see langword="DrawItem" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Font,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DrawItemState)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DrawItemEventArgs" /> class for the specified control with the specified font, state, surface to draw on, and the bounds to draw within.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> surface on which to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to use, usually the parent control's <see cref="T:System.Drawing.Font" /> property.</param>
      <param name="rect">The <see cref="T:System.Drawing.Rectangle" /> bounds to draw within.</param>
      <param name="index">The <see cref="T:System.Windows.Forms.Control.ControlCollection" /> index value of the item that is being drawn.</param>
      <param name="state">The control's <see cref="T:System.Windows.Forms.DrawItemState" /> information.</param>
    </member>
    <member name="M:System.Windows.Forms.DrawItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Font,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.DrawItemState,System.Drawing.Color,System.Drawing.Color)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DrawItemEventArgs" /> class for the specified control with the specified font, state, foreground color, background color, surface to draw on, and the bounds to draw within.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> surface on which to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to use, usually the parent control's <see cref="T:System.Drawing.Font" /> property.</param>
      <param name="rect">The <see cref="T:System.Drawing.Rectangle" /> bounds to draw within.</param>
      <param name="index">The <see cref="T:System.Windows.Forms.Control.ControlCollection" /> index value of the item that is being drawn.</param>
      <param name="state">The control's <see cref="T:System.Windows.Forms.DrawItemState" /> information.</param>
      <param name="foreColor">The foreground <see cref="T:System.Drawing.Color" /> to draw the control with.</param>
      <param name="backColor">The background <see cref="T:System.Drawing.Color" /> to draw the control with.</param>
    </member>
    <member name="M:System.Windows.Forms.DrawItemEventArgs.Dispose">
      <summary>Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawItemEventArgs.Dispose(System.Boolean)">
      <param name="disposing" />
    </member>
    <member name="M:System.Windows.Forms.DrawItemEventArgs.DrawBackground">
      <summary>Draws the background within the bounds specified in the <see cref="Overload:System.Windows.Forms.DrawItemEventArgs.#ctor" /> constructor and with the appropriate color.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawItemEventArgs.DrawFocusRectangle">
      <summary>Draws a focus rectangle within the bounds specified in the <see cref="Overload:System.Windows.Forms.DrawItemEventArgs.#ctor" /> constructor.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawItemEventArgs.System#Drawing#IDeviceContext#GetHdc">
      <summary>Returns the handle to a Windows device context.</summary>
      <returns>An <see cref="T:System.IntPtr" /> representing the handle of a device context.</returns>
    </member>
    <member name="M:System.Windows.Forms.DrawItemEventArgs.System#Drawing#IDeviceContext#ReleaseHdc">
      <summary>Releases the handle of a Windows device context.</summary>
    </member>
    <member name="P:System.Windows.Forms.DrawItemEventArgs.BackColor">
      <summary>Gets the background color of the item that is being drawn.</summary>
      <returns>The background <see cref="T:System.Drawing.Color" /> of the item that is being drawn.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawItemEventArgs.Bounds">
      <summary>Gets the rectangle that represents the bounds of the item that is being drawn.</summary>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the item that is being drawn.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawItemEventArgs.Font">
      <summary>Gets the font that is assigned to the item being drawn.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> that is assigned to the item being drawn.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawItemEventArgs.ForeColor">
      <summary>Gets the foreground color of the of the item being drawn.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the item being drawn.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawItemEventArgs.Graphics">
      <summary>Gets the graphics surface to draw the item on.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> surface to draw the item on.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawItemEventArgs.Index">
      <summary>Gets the index value of the item that is being drawn.</summary>
      <returns>The numeric value that represents the <see cref="P:System.Windows.Forms.Control.ControlCollection.Item(System.Int32)" /> value of the item being drawn.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawItemEventArgs.State">
      <summary>Gets the state of the item being drawn.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DrawItemState" /> that represents the state of the item being drawn.</returns>
    </member>
    <member name="T:System.Windows.Forms.DrawItemEventHandler">
      <summary>Represents the method that will handle the <see langword="DrawItem" /> event of a <see cref="T:System.Windows.Forms.ComboBox" />, <see cref="T:System.Windows.Forms.ListBox" />, <see cref="T:System.Windows.Forms.MenuItem" />, or <see cref="T:System.Windows.Forms.TabControl" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DrawItemState">
      <summary>Specifies the state of an item that is being drawn.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.Checked">
      <summary>The item is checked. Only menu controls use this value.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.ComboBoxEdit">
      <summary>The item is the editing portion of a <see cref="T:System.Windows.Forms.ComboBox" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.Default">
      <summary>The item is in its default visual state.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.Disabled">
      <summary>The item is unavailable.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.Focus">
      <summary>The item has focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.Grayed">
      <summary>The item is grayed. Only menu controls use this value.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.HotLight">
      <summary>The item is being hot-tracked, that is, the item is highlighted as the mouse pointer passes over it.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.Inactive">
      <summary>The item is inactive.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.NoAccelerator">
      <summary>The item displays without a keyboard accelerator.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.NoFocusRect">
      <summary>The item displays without the visual cue that indicates it has focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.None">
      <summary>The item currently has no state.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawItemState.Selected">
      <summary>The item is selected.</summary>
    </member>
    <member name="T:System.Windows.Forms.DrawListViewColumnHeaderEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.DrawColumnHeader" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.ColumnHeader,System.Windows.Forms.ListViewItemStates,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DrawListViewColumnHeaderEventArgs" /> class.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> surface on which to draw.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> within which to draw.</param>
      <param name="columnIndex">The index of the header's column within the <see cref="P:System.Windows.Forms.ListView.Columns" /> collection.</param>
      <param name="header">The <see cref="T:System.Windows.Forms.ColumnHeader" /> representing the header to draw.</param>
      <param name="state">A bitwise combination of <see cref="T:System.Windows.Forms.ListViewItemStates" /> values indicating the current state of the column header.</param>
      <param name="foreColor">The foreground <see cref="T:System.Drawing.Color" /> of the header.</param>
      <param name="backColor">The background <see cref="T:System.Drawing.Color" /> of the header.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> used for the header text.</param>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawBackground">
      <summary>Draws the background of the column header.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawText">
      <summary>Draws the column header text using the default formatting.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawText(System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the column header text, formatting it with the specified <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</summary>
      <param name="flags">A bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.BackColor">
      <summary>Gets the background color of the header.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> representing the background color of the header.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Bounds">
      <summary>Gets the size and location of the column header to draw.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the column header.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.ColumnIndex">
      <summary>Gets the index of the <see cref="T:System.Windows.Forms.ColumnHeader" /> representing the header to draw.</summary>
      <returns>The index of the column header within the <see cref="P:System.Windows.Forms.ListView.Columns" /> collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawDefault">
      <summary>Gets or sets a value indicating whether the column header should be drawn by the operating system instead of owner-drawn.</summary>
      <returns>
        <see langword="true" /> if the header should be drawn by the operating system; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Font">
      <summary>Gets the font used to draw the column header text.</summary>
      <returns>A <see cref="T:System.Drawing.Font" /> representing the font of the header text.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.ForeColor">
      <summary>Gets the foreground color of the header.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> representing the foreground color of the header.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> used to draw the column header.</summary>
      <returns>A <see cref="T:System.Drawing.Graphics" /> used to draw the column header.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Header">
      <summary>Gets the <see cref="T:System.Windows.Forms.ColumnHeader" /> representing the column header to draw.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> representing the column header.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewColumnHeaderEventArgs.State">
      <summary>Gets the current state of the column header.</summary>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.ListViewItemStates" /> values indicating the current state of the column header.</returns>
    </member>
    <member name="T:System.Windows.Forms.DrawListViewColumnHeaderEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.DrawColumnHeader" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawListViewColumnHeaderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DrawListViewItemEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.DrawItem" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewItemEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ListViewItem,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.ListViewItemStates)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DrawListViewItemEventArgs" /> class.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> surface on which to draw.</param>
      <param name="item">The <see cref="T:System.Windows.Forms.ListViewItem" /> to draw.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> within which to draw.</param>
      <param name="itemIndex">The index of the <see cref="T:System.Windows.Forms.ListViewItem" /> within the <see cref="P:System.Windows.Forms.ListView.Items" /> collection.</param>
      <param name="state">A bitwise combination of <see cref="T:System.Windows.Forms.ListViewItemStates" /> values indicating the current state of the <see cref="T:System.Windows.Forms.ListViewItem" /> to draw.</param>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewItemEventArgs.DrawBackground">
      <summary>Draws the background of the <see cref="T:System.Windows.Forms.ListViewItem" /> using its current background color.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewItemEventArgs.DrawFocusRectangle">
      <summary>Draws a focus rectangle for the <see cref="T:System.Windows.Forms.ListViewItem" /> if it has focus.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewItemEventArgs.DrawText">
      <summary>Draws the text of the <see cref="T:System.Windows.Forms.ListViewItem" /> using its current foreground color.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewItemEventArgs.DrawText(System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the text of the <see cref="T:System.Windows.Forms.ListViewItem" /> using its current foreground color and formatting it with the specified <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</summary>
      <param name="flags">A bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewItemEventArgs.Bounds">
      <summary>Gets the size and location of the <see cref="T:System.Windows.Forms.ListViewItem" /> to draw.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the <see cref="T:System.Windows.Forms.ListViewItem" /> to draw.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewItemEventArgs.DrawDefault">
      <summary>Gets or sets a property indicating whether the <see cref="T:System.Windows.Forms.ListView" /> control will use the default drawing for the <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
      <returns>
        <see langword="true" /> if the system draws the item; <see langword="false" /> if the event handler draws the item. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewItemEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> used to draw the <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
      <returns>A <see cref="T:System.Drawing.Graphics" /> used to draw the <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewItemEventArgs.Item">
      <summary>Gets the <see cref="T:System.Windows.Forms.ListViewItem" /> to draw.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> to draw.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewItemEventArgs.ItemIndex">
      <summary>Gets the index of the <see cref="T:System.Windows.Forms.ListViewItem" /> within the <see cref="P:System.Windows.Forms.ListView.Items" /> collection of the containing <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <returns>The index of the <see cref="T:System.Windows.Forms.ListViewItem" /> within the <see cref="P:System.Windows.Forms.ListView.Items" /> collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewItemEventArgs.State">
      <summary>Gets the current state of the <see cref="T:System.Windows.Forms.ListViewItem" /> to draw.</summary>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.ListViewItemStates" /> values indicating the current state of the <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DrawListViewItemEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.DrawItem" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawListViewItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DrawListViewSubItemEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.DrawSubItem" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewSubItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ListViewItem,System.Windows.Forms.ListViewItem.ListViewSubItem,System.Int32,System.Int32,System.Windows.Forms.ColumnHeader,System.Windows.Forms.ListViewItemStates)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DrawListViewSubItemEventArgs" /> class.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> surface on which to draw.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> within which to draw.</param>
      <param name="item">The <see cref="T:System.Windows.Forms.ListViewItem" /> parent of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</param>
      <param name="subItem">The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</param>
      <param name="itemIndex">The index of the parent <see cref="T:System.Windows.Forms.ListViewItem" /> within the <see cref="P:System.Windows.Forms.ListView.Items" /> collection.</param>
      <param name="columnIndex">The index of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> column within the <see cref="P:System.Windows.Forms.ListView.Columns" /> collection.</param>
      <param name="header">The <see cref="T:System.Windows.Forms.ColumnHeader" /> for the column in which the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> is displayed.</param>
      <param name="itemState">A bitwise combination of <see cref="T:System.Windows.Forms.ListViewItemStates" /> values indicating the current state of the <see cref="T:System.Windows.Forms.ListViewItem" /> parent of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</param>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawBackground">
      <summary>Draws the background of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> using its current background color.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawFocusRectangle(System.Drawing.Rectangle)">
      <summary>Draws a focus rectangle for the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> if the parent <see cref="T:System.Windows.Forms.ListViewItem" /> has focus.</summary>
      <param name="bounds">The area within which to draw the focus rectangle.</param>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawText">
      <summary>Draws the text of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> using its current foreground color.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawText(System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the text of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> using its current foreground color and formatting it with the specified <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</summary>
      <param name="flags">A bitwise combination of <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewSubItemEventArgs.Bounds">
      <summary>Gets the size and location of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewSubItemEventArgs.ColumnIndex">
      <summary>Gets the index of the <see cref="T:System.Windows.Forms.ListView" /> column in which the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> is displayed.</summary>
      <returns>The index of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> column within the <see cref="P:System.Windows.Forms.ListView.Columns" /> collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewSubItemEventArgs.DrawDefault">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> should be drawn by the operating system instead of owner-drawn.</summary>
      <returns>
        <see langword="true" /> if the subitem should be drawn by the operating system; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewSubItemEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> used to draw the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</summary>
      <returns>A <see cref="T:System.Drawing.Graphics" /> used to draw the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewSubItemEventArgs.Header">
      <summary>Gets the header of the <see cref="T:System.Windows.Forms.ListView" /> column in which the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> is displayed.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> for the column in which the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> is displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewSubItemEventArgs.Item">
      <summary>Gets the parent <see cref="T:System.Windows.Forms.ListViewItem" /> of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the parent of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewSubItemEventArgs.ItemIndex">
      <summary>Gets the index of the parent <see cref="T:System.Windows.Forms.ListViewItem" /> of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</summary>
      <returns>The index of the parent <see cref="T:System.Windows.Forms.ListViewItem" /> within the <see cref="P:System.Windows.Forms.ListView.Items" /> collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewSubItemEventArgs.ItemState">
      <summary>Gets the current state of the parent <see cref="T:System.Windows.Forms.ListViewItem" /> of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</summary>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.ListViewItemStates" /> values indicating the current state of the parent <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawListViewSubItemEventArgs.SubItem">
      <summary>Gets the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to draw.</returns>
    </member>
    <member name="T:System.Windows.Forms.DrawListViewSubItemEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.DrawSubItem" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawListViewSubItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DrawMode">
      <summary>Specifies how the elements of a control are drawn.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawMode.Normal">
      <summary>All the elements in a control are drawn by the operating system and are of the same size.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawMode.OwnerDrawFixed">
      <summary>All the elements in the control are drawn manually and are of the same size.</summary>
    </member>
    <member name="F:System.Windows.Forms.DrawMode.OwnerDrawVariable">
      <summary>All the elements in the control are drawn manually and can differ in size.</summary>
    </member>
    <member name="T:System.Windows.Forms.DrawToolTipEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolTip.Draw" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawToolTipEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.IWin32Window,System.Windows.Forms.Control,System.Drawing.Rectangle,System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DrawToolTipEventArgs" /> class.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> context used to draw the ToolTip.</param>
      <param name="associatedWindow">The <see cref="T:System.Windows.Forms.IWin32Window" /> that the ToolTip is bound to.</param>
      <param name="associatedControl">The <see cref="T:System.Windows.Forms.Control" /> that the ToolTip is being created for.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that outlines the area where the ToolTip is to be displayed.</param>
      <param name="toolTipText">A <see cref="T:System.String" /> containing the text for the ToolTip.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> of the ToolTip background.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> of the ToolTip text.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> used to draw the ToolTip text.</param>
    </member>
    <member name="M:System.Windows.Forms.DrawToolTipEventArgs.DrawBackground">
      <summary>Draws the background of the <see cref="T:System.Windows.Forms.ToolTip" /> using the system background color.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawToolTipEventArgs.DrawBorder">
      <summary>Draws the border of the <see cref="T:System.Windows.Forms.ToolTip" /> using the system border color.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawToolTipEventArgs.DrawText">
      <summary>Draws the text of the <see cref="T:System.Windows.Forms.ToolTip" /> using the system text color and font.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawToolTipEventArgs.DrawText(System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the text of the <see cref="T:System.Windows.Forms.ToolTip" /> using the system text color and font, and the specified text layout.</summary>
      <param name="flags">A <see cref="T:System.Windows.Forms.TextFormatFlags" /> containing a bitwise combination of values that specifies the display and layout for the <see cref="P:System.Windows.Forms.DrawToolTipEventArgs.ToolTipText" />.</param>
    </member>
    <member name="P:System.Windows.Forms.DrawToolTipEventArgs.AssociatedControl">
      <summary>Gets the control for which the <see cref="T:System.Windows.Forms.ToolTip" /> is being drawn.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that is associated with the <see cref="T:System.Windows.Forms.ToolTip" /> when the <see cref="E:System.Windows.Forms.ToolTip.Draw" /> event occurs. The return value will be <see langword="null" /> if the ToolTip is not associated with a control.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawToolTipEventArgs.AssociatedWindow">
      <summary>Gets the window to which this <see cref="T:System.Windows.Forms.ToolTip" /> is bound.</summary>
      <returns>The window which owns the <see cref="T:System.Windows.Forms.ToolTip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawToolTipEventArgs.Bounds">
      <summary>Gets the size and location of the <see cref="T:System.Windows.Forms.ToolTip" /> to draw.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the <see cref="T:System.Windows.Forms.ToolTip" /> to draw.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawToolTipEventArgs.Font">
      <summary>Gets the font used to draw the <see cref="T:System.Windows.Forms.ToolTip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Font" /> object.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawToolTipEventArgs.Graphics">
      <summary>Gets the graphics surface used to draw the <see cref="T:System.Windows.Forms.ToolTip" />.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> on which to draw the <see cref="T:System.Windows.Forms.ToolTip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawToolTipEventArgs.ToolTipText">
      <summary>Gets the text for the <see cref="T:System.Windows.Forms.ToolTip" /> that is being drawn.</summary>
      <returns>The text that is associated with the <see cref="T:System.Windows.Forms.ToolTip" /> when the <see cref="E:System.Windows.Forms.ToolTip.Draw" /> event occurs.</returns>
    </member>
    <member name="T:System.Windows.Forms.DrawToolTipEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolTip.Draw" /> event of a <see cref="T:System.Windows.Forms.ToolTip" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawToolTipEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DrawTreeNodeEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TreeView.DrawNode" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.DrawTreeNodeEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.TreeNode,System.Drawing.Rectangle,System.Windows.Forms.TreeNodeStates)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.DrawTreeNodeEventArgs" /> class.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> surface on which to draw.</param>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> to draw.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> within which to draw.</param>
      <param name="state">A bitwise combination of the <see cref="T:System.Windows.Forms.TreeNodeStates" /> values indicating the current state of the <see cref="T:System.Windows.Forms.TreeNode" /> to draw.</param>
      <exception cref="T:System.ArgumentNullException">.NET 6 and later versions: <paramref name="graphics" /> is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.DrawTreeNodeEventArgs.Bounds">
      <summary>Gets the size and location of the <see cref="T:System.Windows.Forms.TreeNode" /> to draw.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the <see cref="T:System.Windows.Forms.TreeNode" /> to draw.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawTreeNodeEventArgs.DrawDefault">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.TreeNode" /> should be drawn by the operating system rather than being owner drawn.</summary>
      <returns>
        <see langword="true" /> if the node should be drawn by the operating system; <see langword="false" /> if the node will be drawn in the event handler. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawTreeNodeEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> object used to draw the <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
      <returns>A <see cref="T:System.Drawing.Graphics" /> used to draw the <see cref="T:System.Windows.Forms.TreeNode" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawTreeNodeEventArgs.Node">
      <summary>Gets the <see cref="T:System.Windows.Forms.TreeNode" /> to draw.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> to draw.</returns>
    </member>
    <member name="P:System.Windows.Forms.DrawTreeNodeEventArgs.State">
      <summary>Gets the current state of the <see cref="T:System.Windows.Forms.TreeNode" /> to draw.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.TreeNodeStates" /> values indicating the current state of the <see cref="T:System.Windows.Forms.TreeNode" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.DrawTreeNodeEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.TreeView.DrawNode" /> event of a <see cref="T:System.Windows.Forms.TreeView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawTreeNodeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.DropImageType">
      <summary>Specifies the drop description image type.</summary>
    </member>
    <member name="F:System.Windows.Forms.DropImageType.Copy">
      <summary>A plus sign (+) that indicates a copy operation.</summary>
    </member>
    <member name="F:System.Windows.Forms.DropImageType.Invalid">
      <summary>No drop image preference; use the default image.</summary>
    </member>
    <member name="F:System.Windows.Forms.DropImageType.Label">
      <summary>A tag icon that indicates that the metadata will be changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.DropImageType.Link">
      <summary>An arrow that indicates a link.</summary>
    </member>
    <member name="F:System.Windows.Forms.DropImageType.Move">
      <summary>An arrow that indicates a move operation.</summary>
    </member>
    <member name="F:System.Windows.Forms.DropImageType.NoImage">
      <summary>Windows 7 and later. Use no drop image.</summary>
    </member>
    <member name="F:System.Windows.Forms.DropImageType.None">
      <summary>A red bisected circle such as that found on a "no smoking" sign.</summary>
    </member>
    <member name="F:System.Windows.Forms.DropImageType.Warning">
      <summary>A yellow exclamation mark that indicates that a problem has been encountered in the operation.</summary>
    </member>
    <member name="T:System.Windows.Forms.ErrorBlinkStyle">
      <summary>Specifies constants indicating when the error icon, supplied by an <see cref="T:System.Windows.Forms.ErrorProvider" />, should blink to alert the user that an error has occurred.</summary>
    </member>
    <member name="F:System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink">
      <summary>Always blink when the error icon is first displayed, or when a error description string is set for the control and the error icon is already displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.ErrorBlinkStyle.BlinkIfDifferentError">
      <summary>Blinks when the icon is already displayed and a new error string is set for the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ErrorBlinkStyle.NeverBlink">
      <summary>Never blink the error icon.</summary>
    </member>
    <member name="T:System.Windows.Forms.ErrorIconAlignment">
      <summary>Specifies constants indicating the locations that an error icon can appear in relation to the control with an error.</summary>
    </member>
    <member name="F:System.Windows.Forms.ErrorIconAlignment.BottomLeft">
      <summary>The icon appears aligned with the bottom of the control and the left of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ErrorIconAlignment.BottomRight">
      <summary>The icon appears aligned with the bottom of the control and the right of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ErrorIconAlignment.MiddleLeft">
      <summary>The icon appears aligned with the middle of the control and the left of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ErrorIconAlignment.MiddleRight">
      <summary>The icon appears aligned with the middle of the control and the right of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ErrorIconAlignment.TopLeft">
      <summary>The icon appears aligned with the top of the control and to the left of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ErrorIconAlignment.TopRight">
      <summary>The icon appears aligned with the top of the control and to the right of the control.</summary>
    </member>
    <member name="T:System.Windows.Forms.ErrorProvider">
      <summary>Provides a user interface for indicating that a control on a form has an error associated with it.</summary>
    </member>
    <member name="E:System.Windows.Forms.ErrorProvider.RightToLeftChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ErrorProvider.RightToLeft" /> property changes value.</summary>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ErrorProvider" /> class and initializes the default settings for <see cref="P:System.Windows.Forms.ErrorProvider.BlinkRate" />, <see cref="P:System.Windows.Forms.ErrorProvider.BlinkStyle" />, and the <see cref="P:System.Windows.Forms.ErrorProvider.Icon" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.#ctor(System.ComponentModel.IContainer)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ErrorProvider" /> class attached to an <see cref="T:System.ComponentModel.IContainer" /> implementation.</summary>
      <param name="container">The <see cref="T:System.ComponentModel.IContainer" /> to monitor for errors.</param>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.#ctor(System.Windows.Forms.ContainerControl)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ErrorProvider" /> class attached to a container.</summary>
      <param name="parentControl">The container of the control to monitor for errors.</param>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.BindToDataAndErrors(System.Object,System.String)">
      <summary>Provides a method to set both the <see cref="P:System.Windows.Forms.ErrorProvider.DataSource" /> and <see cref="P:System.Windows.Forms.ErrorProvider.DataMember" /> at run time.</summary>
      <param name="newDataSource">A data set based on the <see cref="T:System.Collections.IList" /> interface to be monitored for errors. Typically, this is a <see cref="T:System.Data.DataSet" /> to be monitored for errors.</param>
      <param name="newDataMember">A collection within the <paramref name="newDataSource" /> to monitor for errors. Typically, this will be a <see cref="T:System.Data.DataTable" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.CanExtend(System.Object)">
      <summary>Gets a value indicating whether a control can be extended.</summary>
      <param name="extendee">The control to be extended.</param>
      <returns>
        <see langword="true" /> if the control can be extended; otherwise, <see langword="false" />.  
  
 This property will be <see langword="true" /> if the object is a <see cref="T:System.Windows.Forms.Control" /> and is not a <see cref="T:System.Windows.Forms.Form" /> or <see cref="T:System.Windows.Forms.ToolBar" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.Clear">
      <summary>Clears all settings associated with this component.</summary>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.ComponentModel.Component" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.GetError(System.Windows.Forms.Control)">
      <summary>Returns the current error description string for the specified control.</summary>
      <param name="control">The item to get the error description string for.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <returns>The error description string for the specified control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.GetIconAlignment(System.Windows.Forms.Control)">
      <summary>Gets a value indicating where the error icon should be placed in relation to the control.</summary>
      <param name="control">The control to get the icon location for.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ErrorIconAlignment" /> values. The default icon alignment is <see cref="F:System.Windows.Forms.ErrorIconAlignment.MiddleRight" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.GetIconPadding(System.Windows.Forms.Control)">
      <summary>Returns the amount of extra space to leave next to the error icon.</summary>
      <param name="control">The control to get the padding for.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <returns>The number of pixels to leave between the icon and the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ErrorProvider.RightToLeftChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.SetError(System.Windows.Forms.Control,System.String)">
      <summary>Sets the error description string for the specified control.</summary>
      <param name="control">The control to set the error description string for.</param>
      <param name="value">The error description string, or <see langword="null" /> or <see cref="F:System.String.Empty" /> to remove the error.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.SetIconAlignment(System.Windows.Forms.Control,System.Windows.Forms.ErrorIconAlignment)">
      <summary>Sets the location where the error icon should be placed in relation to the control.</summary>
      <param name="control">The control to set the icon location for.</param>
      <param name="value">One of the <see cref="T:System.Windows.Forms.ErrorIconAlignment" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.SetIconPadding(System.Windows.Forms.Control,System.Int32)">
      <summary>Sets the amount of extra space to leave between the specified control and the error icon.</summary>
      <param name="control">The <paramref name="control" /> to set the padding for.</param>
      <param name="padding">The number of pixels to add between the icon and the <paramref name="control" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.System#ComponentModel#ISupportInitialize#BeginInit">
      <summary>Signals the object that initialization is starting.</summary>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.System#ComponentModel#ISupportInitialize#EndInit">
      <summary>Signals the object that initialization is complete.</summary>
    </member>
    <member name="M:System.Windows.Forms.ErrorProvider.UpdateBinding">
      <summary>Provides a method to update the bindings of the <see cref="P:System.Windows.Forms.ErrorProvider.DataSource" />, <see cref="P:System.Windows.Forms.ErrorProvider.DataMember" />, and the error text.</summary>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.BlinkRate">
      <summary>Gets or sets the rate at which the error icon flashes.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than zero.</exception>
      <returns>The rate, in milliseconds, at which the error icon should flash. The default is 250 milliseconds.</returns>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.BlinkStyle">
      <summary>Gets or sets a value indicating when the error icon flashes.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.ErrorBlinkStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ErrorBlinkStyle" /> values. The default is <see cref="F:System.Windows.Forms.ErrorBlinkStyle.BlinkIfDifferentError" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.ContainerControl">
      <summary>Gets or sets a value indicating the parent control for this <see cref="T:System.Windows.Forms.ErrorProvider" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContainerControl" /> that contains the controls that the <see cref="T:System.Windows.Forms.ErrorProvider" /> is attached to.</returns>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.DataMember">
      <summary>Gets or sets the list within a data source to monitor.</summary>
      <returns>The string that represents a list within the data source specified by the <see cref="P:System.Windows.Forms.ErrorProvider.DataSource" /> to be monitored. Typically, this will be a <see cref="T:System.Data.DataTable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.DataSource">
      <summary>Gets or sets the data source that the <see cref="T:System.Windows.Forms.ErrorProvider" /> monitors.</summary>
      <returns>A data source based on the <see cref="T:System.Collections.IList" /> interface to be monitored for errors. Typically, this is a <see cref="T:System.Data.DataSet" /> to be monitored for errors.</returns>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.HasErrors">
      <summary>Gets a value that indicates if this <see cref="T:System.Windows.Forms.ErrorProvider" /> has any errors for any of the associated controls.</summary>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.Icon">
      <summary>Gets or sets the <see cref="T:System.Drawing.Icon" /> that is displayed next to a control when an error description string has been set for the control.</summary>
      <exception cref="T:System.ArgumentNullException">The assigned value of the <see cref="T:System.Drawing.Icon" /> is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Drawing.Icon" /> that signals an error has occurred. The default icon consists of an exclamation point in a circle with a red background.</returns>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.RightToLeft">
      <summary>Gets or sets a value that indicates whether the component is used in a locale that supports right-to-left fonts.</summary>
      <returns>
        <see langword="true" /> if the component is used in a right-to-left locale; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.Site">
      <summary>Gets or sets the <see cref="T:System.ComponentModel.ISite" /> of the <see cref="T:System.ComponentModel.Component" />.</summary>
      <returns>The <see cref="T:System.ComponentModel.ISite" /> associated with the <see cref="T:System.ComponentModel.Component" />, or null if the <see cref="T:System.ComponentModel.Component" /> is not encapsulated in an <see cref="T:System.ComponentModel.IContainer" />, the <see cref="T:System.ComponentModel.Component" /> does not have an <see cref="T:System.ComponentModel.ISite" /> associated with it, or the <see cref="T:System.ComponentModel.Component" /> is removed from its <see cref="T:System.ComponentModel.IContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ErrorProvider.Tag">
      <summary>Gets or sets an object that contains data about the component.</summary>
      <returns>An object that contains data about the control. The default is <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.FeatureSupport">
      <summary>Provides <see langword="static" /> methods for retrieving feature information from the current system.</summary>
    </member>
    <member name="M:System.Windows.Forms.FeatureSupport.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.FeatureSupport" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.FeatureSupport.GetVersionPresent(System.Object)">
      <summary>When overridden in a derived class, gets the version of the specified feature that is available on the system.</summary>
      <param name="feature">The feature whose version is requested.</param>
      <returns>A <see cref="T:System.Version" /> representing the version number of the specified feature available on the system; or <see langword="null" /> if the feature is not installed.</returns>
    </member>
    <member name="M:System.Windows.Forms.FeatureSupport.GetVersionPresent(System.String,System.String)">
      <summary>Gets the version of the specified feature that is available on the system.</summary>
      <param name="featureClassName">The fully qualified name of the class to query for information about the specified feature. This class must implement the <see cref="T:System.Windows.Forms.IFeatureSupport" /> interface or inherit from a class that implements this interface.</param>
      <param name="featureConstName">The fully qualified name of the feature to look for.</param>
      <returns>A <see cref="T:System.Version" /> with the version number of the specified feature available on the system; or <see langword="null" /> if the feature is not installed.</returns>
    </member>
    <member name="M:System.Windows.Forms.FeatureSupport.IsPresent(System.Object)">
      <summary>Determines whether any version of the specified feature is installed in the system.</summary>
      <param name="feature">The feature to look for.</param>
      <returns>
        <see langword="true" /> if the feature is present; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.FeatureSupport.IsPresent(System.Object,System.Version)">
      <summary>Determines whether the specified or newer version of the specified feature is installed in the system.</summary>
      <param name="feature">The feature to look for.</param>
      <param name="minimumVersion">A <see cref="T:System.Version" /> representing the minimum version number of the feature to look for.</param>
      <returns>
        <see langword="true" /> if the feature is present and its version number is greater than or equal to the specified minimum version number; <see langword="false" /> if the feature is not installed or its version number is below the specified minimum number.</returns>
    </member>
    <member name="M:System.Windows.Forms.FeatureSupport.IsPresent(System.String,System.String)">
      <summary>Determines whether any version of the specified feature is installed in the system. This method is <see langword="static" />.</summary>
      <param name="featureClassName">The fully qualified name of the class to query for information about the specified feature. This class must implement the <see cref="T:System.Windows.Forms.IFeatureSupport" /> interface or inherit from a class that implements this interface.</param>
      <param name="featureConstName">The fully qualified name of the feature to look for.</param>
      <returns>
        <see langword="true" /> if the specified feature is present; <see langword="false" /> if the specified feature is not present or if the product containing the feature is not installed.</returns>
    </member>
    <member name="M:System.Windows.Forms.FeatureSupport.IsPresent(System.String,System.String,System.Version)">
      <summary>Determines whether the specified or newer version of the specified feature is installed in the system. This method is <see langword="static" />.</summary>
      <param name="featureClassName">The fully qualified name of the class to query for information about the specified feature. This class must implement the <see cref="T:System.Windows.Forms.IFeatureSupport" /> interface or inherit from a class that implements this interface.</param>
      <param name="featureConstName">The fully qualified name of the feature to look for.</param>
      <param name="minimumVersion">A <see cref="T:System.Version" /> representing the minimum version number of the feature.</param>
      <returns>
        <see langword="true" /> if the feature is present and its version number is greater than or equal to the specified minimum version number; <see langword="false" /> if the feature is not installed or its version number is below the specified minimum number.</returns>
    </member>
    <member name="T:System.Windows.Forms.FileDialog">
      <summary>Displays a dialog box from which the user can select a file.</summary>
    </member>
    <member name="E:System.Windows.Forms.FileDialog.FileOk">
      <summary>Occurs when the user clicks on the Open or Save button on a file dialog box.</summary>
    </member>
    <member name="F:System.Windows.Forms.FileDialog.EventFileOk">
      <summary>Owns the <see cref="E:System.Windows.Forms.FileDialog.FileOk" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.FileDialog.HookProc(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)">
      <summary>Defines the common dialog box hook procedure that is overridden to add specific functionality to the file dialog box.</summary>
      <param name="hWnd">The handle to the dialog box window.</param>
      <param name="msg">The message received by the dialog box.</param>
      <param name="wparam">Additional information about the message.</param>
      <param name="lparam">Additional information about the message.</param>
      <returns>Returns zero if the default dialog box procedure processes the message; returns a nonzero value if the default dialog box procedure ignores the message.</returns>
    </member>
    <member name="M:System.Windows.Forms.FileDialog.OnFileOk(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.FileDialog.FileOk" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.FileDialog.Reset">
      <summary>Resets all properties to their default values.</summary>
    </member>
    <member name="M:System.Windows.Forms.FileDialog.RunDialog(System.IntPtr)">
      <summary>Specifies a common dialog box.</summary>
      <param name="hWndOwner">A value that represents the window handle of the owner window for the common dialog box.</param>
      <returns>
        <see langword="true" /> if the file could be opened; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.FileDialog.ToString">
      <summary>Provides a string version of this object.</summary>
      <returns>A string version of this object.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.AddExtension">
      <summary>Gets or sets a value indicating whether the dialog box automatically adds an extension to a file name if the user omits the extension.</summary>
      <returns>
        <see langword="true" /> if the dialog box adds an extension to a file name if the user omits the extension; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.AddToRecent">
      <summary>Gets or sets a value indicating whether the dialog box adds the file being opened or saved to the recent list.</summary>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.AutoUpgradeEnabled">
      <summary>Gets or sets a value indicating whether this <see cref="T:System.Windows.Forms.FileDialog" /> instance should automatically upgrade appearance and behavior when running on Windows Vista.</summary>
      <returns>
        <see langword="true" /> if this <see cref="T:System.Windows.Forms.FileDialog" /> instance should automatically upgrade appearance and behavior when running on Windows Vista; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.CheckFileExists">
      <summary>Gets or sets a value indicating whether the dialog box displays a warning if the user specifies a file name that does not exist.</summary>
      <returns>
        <see langword="true" /> if the dialog box displays a warning if the user specifies a file name that does not exist; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.CheckPathExists">
      <summary>Gets or sets a value indicating whether the dialog box displays a warning if the user specifies a path that does not exist.</summary>
      <returns>
        <see langword="true" /> if the dialog box displays a warning when the user specifies a path that does not exist; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.ClientGuid">
      <summary>
        <para> Gets or sets the GUID to associate with this dialog state. Typically, state such as the last visited folder and the position and size of the dialog is persisted based on the name of the executable file. By specifying a GUID, an application can have different persisted states for different versions of the dialog within the same application (for example, an import dialog and an open dialog).</para>
        <para> This functionality is not available if an application is not using visual styles or if <see cref="P:System.Windows.Forms.FileDialog.AutoUpgradeEnabled" /> is set to <see langword="false" />.</para>
      </summary>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.CustomPlaces">
      <summary>Gets the custom places collection for this <see cref="T:System.Windows.Forms.FileDialog" /> instance.</summary>
      <returns>The custom places collection for this <see cref="T:System.Windows.Forms.FileDialog" /> instance.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.DefaultExt">
      <summary>Gets or sets the default file name extension.</summary>
      <returns>The default file name extension. The returned string does not include the period. The default value is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.DereferenceLinks">
      <summary>Gets or sets a value indicating whether the dialog box returns the location of the file referenced by the shortcut or whether it returns the location of the shortcut (.lnk).</summary>
      <returns>
        <see langword="true" /> if the dialog box returns the location of the file referenced by the shortcut; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.FileName">
      <summary>Gets or sets a string containing the file name selected in the file dialog box.</summary>
      <returns>The file name selected in the file dialog box. The default value is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.FileNames">
      <summary>Gets the file names of all selected files in the dialog box.</summary>
      <returns>An array of type <see cref="T:System.String" />, containing the file names of all selected files in the dialog box.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.Filter">
      <summary>Gets or sets the current file name filter string, which determines the choices that appear in the "Save as file type" or "Files of type" box in the dialog box.</summary>
      <exception cref="T:System.ArgumentException">
        <paramref name="Filter" /> format is invalid.</exception>
      <returns>The file filtering options available in the dialog box.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.FilterIndex">
      <summary>Gets or sets the index of the filter currently selected in the file dialog box.</summary>
      <returns>A value containing the index of the filter currently selected in the file dialog box. The default value is 1.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.InitialDirectory">
      <summary>Gets or sets the initial directory displayed by the file dialog box.</summary>
      <returns>The initial directory displayed by the file dialog box. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.Instance">
      <summary>Gets the Win32 instance handle for the application.</summary>
      <returns>A Win32 instance handle for the application.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.OkRequiresInteraction">
      <summary>Gets or sets a value indicating whether the OK button of the dialog box is disabled until the user navigates the view or edits the filename (if applicable).</summary>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.Options">
      <summary>Gets values to initialize the <see cref="T:System.Windows.Forms.FileDialog" />.</summary>
      <returns>A bitwise combination of internal values that initializes the <see cref="T:System.Windows.Forms.FileDialog" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.RestoreDirectory">
      <summary>Gets or sets a value indicating whether the dialog box restores the directory to the previously selected directory before closing.</summary>
      <returns>
        <see langword="true" /> if the dialog box restores the current directory to the previously selected directory if the user changed the directory while searching for files; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.ShowHelp">
      <summary>Gets or sets a value indicating whether the Help button is displayed in the file dialog box.</summary>
      <returns>
        <see langword="true" /> if the dialog box includes a help button; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.ShowHiddenFiles">
      <summary>Gets or sets a value indicating whether the dialog box displays hidden and system files.</summary>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.ShowPinnedPlaces">
      <summary>Gets or sets a value indicating whether the items shown by default in the view's navigation pane are shown.</summary>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.SupportMultiDottedExtensions">
      <summary>Gets or sets whether the dialog box supports displaying and saving files that have multiple file name extensions.</summary>
      <returns>
        <see langword="true" /> if the dialog box supports multiple file name extensions; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.Title">
      <summary>Gets or sets the file dialog box title.</summary>
      <returns>The file dialog box title. The default value is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.FileDialog.ValidateNames">
      <summary>Gets or sets a value indicating whether the dialog box accepts only valid Win32 file names.</summary>
      <returns>
        <see langword="true" /> if the dialog box accepts only valid Win32 file names; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.FixedPanel">
      <summary>Specifies that <see cref="P:System.Windows.Forms.SplitContainer.Panel1" />, <see cref="P:System.Windows.Forms.SplitContainer.Panel2" />, or neither panel is fixed.</summary>
    </member>
    <member name="F:System.Windows.Forms.FixedPanel.None">
      <summary>Specifies that neither <see cref="P:System.Windows.Forms.SplitContainer.Panel1" />, <see cref="P:System.Windows.Forms.SplitContainer.Panel2" /> is fixed. A <see cref="E:System.Windows.Forms.Control.Resize" /> event affects both panels.</summary>
    </member>
    <member name="F:System.Windows.Forms.FixedPanel.Panel1">
      <summary>Specifies that <see cref="P:System.Windows.Forms.SplitContainer.Panel1" /> is fixed. A <see cref="E:System.Windows.Forms.Control.Resize" /> event affects only <see cref="P:System.Windows.Forms.SplitContainer.Panel2" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.FixedPanel.Panel2">
      <summary>Specifies that <see cref="P:System.Windows.Forms.SplitContainer.Panel2" /> is fixed. A <see cref="E:System.Windows.Forms.Control.Resize" /> event affects only <see cref="P:System.Windows.Forms.SplitContainer.Panel1" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.FlatButtonAppearance">
      <summary>Provides properties that specify the appearance of <see cref="T:System.Windows.Forms.Button" /> controls whose <see cref="T:System.Windows.Forms.FlatStyle" /> is <see cref="F:System.Windows.Forms.FlatStyle.Flat" />.</summary>
    </member>
    <member name="P:System.Windows.Forms.FlatButtonAppearance.BorderColor">
      <summary>Gets or sets the color of the border around the button.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> structure representing the color of the border around the button.</returns>
    </member>
    <member name="P:System.Windows.Forms.FlatButtonAppearance.BorderSize">
      <summary>Gets or sets a value that specifies the size, in pixels, of the border around the button.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the size, in pixels, of the border around the button.</returns>
    </member>
    <member name="P:System.Windows.Forms.FlatButtonAppearance.CheckedBackColor">
      <summary>Gets or sets the color of the client area of the button when the button is checked and the mouse pointer is outside the bounds of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> structure representing the color of the client area of the button.</returns>
    </member>
    <member name="P:System.Windows.Forms.FlatButtonAppearance.MouseDownBackColor">
      <summary>Gets or sets the color of the client area of the button when the mouse is pressed within the bounds of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> structure representing the color of the client area of the button.</returns>
    </member>
    <member name="P:System.Windows.Forms.FlatButtonAppearance.MouseOverBackColor">
      <summary>Gets or sets the color of the client area of the button when the mouse pointer is within the bounds of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> structure representing the color of the client area of the button.</returns>
    </member>
    <member name="T:System.Windows.Forms.FlatStyle">
      <summary>Specifies the appearance of a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.FlatStyle.Flat">
      <summary>The control appears flat.</summary>
    </member>
    <member name="F:System.Windows.Forms.FlatStyle.Popup">
      <summary>A control appears flat until the mouse pointer moves over it, at which point it appears three-dimensional.</summary>
    </member>
    <member name="F:System.Windows.Forms.FlatStyle.Standard">
      <summary>The control appears three-dimensional.</summary>
    </member>
    <member name="F:System.Windows.Forms.FlatStyle.System">
      <summary>The appearance of the control is determined by the user's operating system.</summary>
    </member>
    <member name="T:System.Windows.Forms.FlowDirection">
      <summary>Defines constants that specify the direction in which consecutive user interface (UI) elements are placed in a linear layout container.</summary>
    </member>
    <member name="F:System.Windows.Forms.FlowDirection.BottomUp">
      <summary>Elements flow from the bottom of the design surface to the top.</summary>
    </member>
    <member name="F:System.Windows.Forms.FlowDirection.LeftToRight">
      <summary>Elements flow from the left edge of the design surface to the right.</summary>
    </member>
    <member name="F:System.Windows.Forms.FlowDirection.RightToLeft">
      <summary>Elements flow from the right edge of the design surface to the left.</summary>
    </member>
    <member name="F:System.Windows.Forms.FlowDirection.TopDown">
      <summary>Elements flow from the top of the design surface to the bottom.</summary>
    </member>
    <member name="T:System.Windows.Forms.FlowLayoutPanel">
      <summary>Represents a panel that dynamically lays out its contents horizontally or vertically.</summary>
    </member>
    <member name="M:System.Windows.Forms.FlowLayoutPanel.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.FlowLayoutPanel" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.FlowLayoutPanel.GetFlowBreak(System.Windows.Forms.Control)">
      <summary>Returns a value that represents the flow-break setting of the <see cref="T:System.Windows.Forms.FlowLayoutPanel" /> control.</summary>
      <param name="control">The child control.</param>
      <returns>
        <see langword="true" /> if the flow break is set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.FlowLayoutPanel.SetFlowBreak(System.Windows.Forms.Control,System.Boolean)">
      <summary>Sets the value that represents the flow-break setting of the <see cref="T:System.Windows.Forms.FlowLayoutPanel" /> control.</summary>
      <param name="control">The child control.</param>
      <param name="value">The flow-break value to set.</param>
    </member>
    <member name="M:System.Windows.Forms.FlowLayoutPanel.System#ComponentModel#IExtenderProvider#CanExtend(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.ComponentModel.IExtenderProvider.CanExtend(System.Object)" />.</summary>
      <param name="obj">The <see cref="T:System.Object" /> to receive the extender properties.</param>
      <returns>
        <see langword="true" /> if this object can provide extender properties to the specified object; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FlowLayoutPanel.FlowDirection">
      <summary>Gets or sets a value indicating the flow direction of the <see cref="T:System.Windows.Forms.FlowLayoutPanel" /> control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.FlowDirection" /> values indicating the direction of consecutive placement of controls in the panel. The default is <see cref="F:System.Windows.Forms.FlowDirection.LeftToRight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FlowLayoutPanel.LayoutEngine">
      <summary>Gets a cached instance of the panel's layout engine.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> for the panel's contents.</returns>
    </member>
    <member name="P:System.Windows.Forms.FlowLayoutPanel.WrapContents">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.FlowLayoutPanel" /> control should wrap its contents or let the contents be clipped.</summary>
      <returns>
        <see langword="true" /> if the contents should be wrapped; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.FlowLayoutSettings">
      <summary>Collects the characteristics associated with flow layouts.</summary>
    </member>
    <member name="M:System.Windows.Forms.FlowLayoutSettings.GetFlowBreak(System.Object)">
      <summary>Returns a value that represents the flow break setting of the control.</summary>
      <param name="child">The child control.</param>
      <returns>
        <see langword="true" /> if the flow break is set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.FlowLayoutSettings.SetFlowBreak(System.Object,System.Boolean)">
      <summary>Sets the value that represents the flow break setting of the control.</summary>
      <param name="child">The child control.</param>
      <param name="value">The flow break value to set.</param>
    </member>
    <member name="P:System.Windows.Forms.FlowLayoutSettings.FlowDirection">
      <summary>Gets or sets a value indicating the flow direction of consecutive controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.FlowDirection" /> indicating the flow direction of consecutive controls in the container. The default is <see cref="F:System.Windows.Forms.FlowDirection.LeftToRight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FlowLayoutSettings.LayoutEngine">
      <summary>Gets the current flow layout engine.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> currently being used.</returns>
    </member>
    <member name="P:System.Windows.Forms.FlowLayoutSettings.WrapContents">
      <summary>Gets or sets a value indicating whether the contents should be wrapped or clipped when they exceed the original boundaries of their container.</summary>
      <returns>
        <see langword="true" /> if the contents should be wrapped; otherwise, <see langword="false" /> if the contents should be clipped. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.FolderBrowserDialog">
      <summary>Prompts the user to select a folder. This class cannot be inherited.</summary>
    </member>
    <member name="E:System.Windows.Forms.FolderBrowserDialog.HelpRequest">
      <summary>Occurs when the user clicks the Help button on the dialog box.</summary>
    </member>
    <member name="M:System.Windows.Forms.FolderBrowserDialog.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.FolderBrowserDialog" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.FolderBrowserDialog.Reset">
      <summary>Resets properties to their default values.</summary>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.AddToRecent">
      <summary>Gets or sets a value indicating whether the dialog box adds the folder being selected to the recent list.</summary>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.AutoUpgradeEnabled">
      <summary>Gets or sets a value that indicates whether the dialog will be automatically upgraded to enable new features.</summary>
      <returns>
        <see langword="true" /> if the dialog will be automatically upgraded to enable new features; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.ClientGuid">
      <summary>
        <para> Gets or sets the GUID to associate with this dialog state. Typically, state such as the last visited folder and the position and size of the dialog is persisted based on the name of the executable file. By specifying a GUID, an application can have different persisted states for different versions of the dialog within the same application (for example, an import dialog and an open dialog).</para>
        <para> This functionality is not available if an application is not using visual styles or if <see cref="P:System.Windows.Forms.FolderBrowserDialog.AutoUpgradeEnabled" /> is set to <see langword="false" />.</para>
      </summary>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.Description">
      <summary>Gets or sets the descriptive text displayed above the dialog box.</summary>
      <returns>The description to display. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.InitialDirectory">
      <summary>Gets or sets the initial directory displayed by the folder browser dialog.</summary>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.OkRequiresInteraction">
      <summary>Gets or sets a value indicating whether the OK button of the dialog box is disabled until the user navigates the view or edits the filename (if applicable).</summary>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.RootFolder">
      <summary>Gets or sets the root folder where the browsing starts from.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Environment.SpecialFolder" /> values.</exception>
      <returns>One of the <see cref="T:System.Environment.SpecialFolder" /> values. The default is <see langword="Desktop" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.SelectedPath">
      <summary>Gets or sets the path selected by the user.</summary>
      <returns>The path of the folder first selected in the dialog box or the last folder selected by the user. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.ShowHiddenFiles">
      <summary>Gets or sets a value indicating whether the dialog box displays hidden and system files.</summary>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.ShowNewFolderButton">
      <summary>Gets or sets a value indicating whether the New Folder button appears in the folder browser dialog box.</summary>
      <returns>
        <see langword="true" /> if the New Folder button is shown in the dialog box; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.ShowPinnedPlaces">
      <summary>Gets or sets a value indicating whether the items shown by default in the view's navigation pane are shown.</summary>
    </member>
    <member name="P:System.Windows.Forms.FolderBrowserDialog.UseDescriptionForTitle">
      <summary>Gets or sets a value that indicates whether to use the value of the <see cref="P:System.Windows.Forms.FolderBrowserDialog.Description" /> property as the dialog title for Vista style dialogs. This property has no effect on old style dialogs.</summary>
      <returns>
        <see langword="true" /> if the value of the <see cref="P:System.Windows.Forms.FolderBrowserDialog.Description" /> property is used as the dialog title; <see langword="false" /> if the value is added as additional text to the dialog. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.FontDialog">
      <summary>Prompts the user to choose a font from among those installed on the local computer.</summary>
    </member>
    <member name="E:System.Windows.Forms.FontDialog.Apply">
      <summary>Occurs when the user clicks the Apply button in the font dialog box.</summary>
    </member>
    <member name="F:System.Windows.Forms.FontDialog.EventApply">
      <summary>Owns the <see cref="E:System.Windows.Forms.FontDialog.Apply" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.FontDialog.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.FontDialog" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.FontDialog.HookProc(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)">
      <summary>Specifies the common dialog box hook procedure that is overridden to add specific functionality to a common dialog box.</summary>
      <param name="hWnd">The handle to the dialog box window.</param>
      <param name="msg">The message being received.</param>
      <param name="wparam">Additional information about the message.</param>
      <param name="lparam">Additional information about the message.</param>
      <returns>A zero value if the default dialog box procedure processes the message; a nonzero value if the default dialog box procedure ignores the message.</returns>
    </member>
    <member name="M:System.Windows.Forms.FontDialog.OnApply(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.FontDialog.Apply" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the data.</param>
    </member>
    <member name="M:System.Windows.Forms.FontDialog.Reset">
      <summary>Resets all dialog box options to their default values.</summary>
    </member>
    <member name="M:System.Windows.Forms.FontDialog.RunDialog(System.IntPtr)">
      <summary>Specifies a file dialog box.</summary>
      <param name="hWndOwner">The window handle of the owner window for the common dialog box.</param>
      <returns>
        <see langword="true" /> if the dialog box was successfully run; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.FontDialog.ToString">
      <summary>Retrieves a string that includes the name of the current font selected in the dialog box.</summary>
      <returns>A string that includes the name of the currently selected font.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.AllowScriptChange">
      <summary>Gets or sets a value indicating whether the user can change the character set specified in the Script combo box to display a character set other than the one currently displayed.</summary>
      <returns>
        <see langword="true" /> if the user can change the character set specified in the Script combo box; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.AllowSimulations">
      <summary>Gets or sets a value indicating whether the dialog box allows graphics device interface (GDI) font simulations.</summary>
      <returns>
        <see langword="true" /> if font simulations are allowed; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.AllowVectorFonts">
      <summary>Gets or sets a value indicating whether the dialog box allows vector font selections.</summary>
      <returns>
        <see langword="true" /> if vector fonts are allowed; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.AllowVerticalFonts">
      <summary>Gets or sets a value indicating whether the dialog box displays both vertical and horizontal fonts or only horizontal fonts.</summary>
      <returns>
        <see langword="true" /> if both vertical and horizontal fonts are allowed; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.Color">
      <summary>Gets or sets the selected font color.</summary>
      <returns>The color of the selected font. The default value is <see cref="P:System.Drawing.Color.Black" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.FixedPitchOnly">
      <summary>Gets or sets a value indicating whether the dialog box allows only the selection of fixed-pitch fonts.</summary>
      <returns>
        <see langword="true" /> if only fixed-pitch fonts can be selected; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.Font">
      <summary>Gets or sets the selected font.</summary>
      <returns>The selected font.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.FontMustExist">
      <summary>Gets or sets a value indicating whether the dialog box specifies an error condition if the user attempts to select a font or style that does not exist.</summary>
      <returns>
        <see langword="true" /> if the dialog box specifies an error condition when the user tries to select a font or style that does not exist; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.MaxSize">
      <summary>Gets or sets the maximum point size a user can select.</summary>
      <returns>The maximum point size a user can select. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.MinSize">
      <summary>Gets or sets the minimum point size a user can select.</summary>
      <returns>The minimum point size a user can select. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.Options">
      <summary>Gets values to initialize the <see cref="T:System.Windows.Forms.FontDialog" />.</summary>
      <returns>A bitwise combination of internal values that initializes the <see cref="T:System.Windows.Forms.FontDialog" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.ScriptsOnly">
      <summary>Gets or sets a value indicating whether the dialog box allows selection of fonts for all non-OEM and Symbol character sets, as well as the ANSI character set.</summary>
      <returns>
        <see langword="true" /> if selection of fonts for all non-OEM and Symbol character sets, as well as the ANSI character set, is allowed; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.ShowApply">
      <summary>Gets or sets a value indicating whether the dialog box contains an Apply button.</summary>
      <returns>
        <see langword="true" /> if the dialog box contains an Apply button; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.ShowColor">
      <summary>Gets or sets a value indicating whether the dialog box displays the color choice.</summary>
      <returns>
        <see langword="true" /> if the dialog box displays the color choice; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.ShowEffects">
      <summary>Gets or sets a value indicating whether the dialog box contains controls that allow the user to specify strikethrough, underline, and text color options.</summary>
      <returns>
        <see langword="true" /> if the dialog box contains controls to set strikethrough, underline, and text color options; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.FontDialog.ShowHelp">
      <summary>Gets or sets a value indicating whether the dialog box displays a Help button.</summary>
      <returns>
        <see langword="true" /> if the dialog box displays a Help button; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.Form">
      <summary>Represents a window or dialog box that makes up an application's user interface.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.Activated">
      <summary>Occurs when the form is activated in code or by the user.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.AutoSizeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Form.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.AutoValidateChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Form.AutoValidate" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.Closed">
      <summary>Occurs when the form is closed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.Closing">
      <summary>Occurs when the form is closing.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.Deactivate">
      <summary>Occurs when the form loses focus and is no longer the active form.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.DpiChanged">
      <summary>Occurs when the DPI setting changes on the display device where the form is currently displayed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.FormClosed">
      <summary>Occurs after the form is closed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.FormClosing">
      <summary>Occurs before the form is closed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.HelpButtonClicked">
      <summary>Occurs when the Help button is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.InputLanguageChanged">
      <summary>Occurs after the input language of the form has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.InputLanguageChanging">
      <summary>Occurs when the user attempts to change the input language for the form.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.Load">
      <summary>Occurs before a form is displayed for the first time.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.MarginChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Form.Margin" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.MaximizedBoundsChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Form.MaximizedBounds" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.MaximumSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Form.MaximumSize" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.MdiChildActivate">
      <summary>Occurs when a multiple-document interface (MDI) child form is activated or closed within an MDI application.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.MenuComplete">
      <summary>Occurs when the menu of a form loses focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.MenuStart">
      <summary>Occurs when the menu of a form receives focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.MinimumSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Form.MinimumSize" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.ResizeBegin">
      <summary>Occurs when a form enters resizing mode.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.ResizeEnd">
      <summary>Occurs when a form exits resizing mode.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.RightToLeftLayoutChanged">
      <summary>Occurs after the value of the <see cref="P:System.Windows.Forms.Form.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.Shown">
      <summary>Occurs whenever the form is first displayed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.TabIndexChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Form.TabIndex" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Form.TabStopChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Form.TabStop" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.Form.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Form" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Form.Activate">
      <summary>Activates the form and gives it focus.</summary>
    </member>
    <member name="M:System.Windows.Forms.Form.ActivateMdiChild(System.Windows.Forms.Form)">
      <summary>Activates the MDI child of a form.</summary>
      <param name="form">The child form to activate.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.AddOwnedForm(System.Windows.Forms.Form)">
      <summary>Adds an owned form to this form.</summary>
      <param name="ownedForm">The <see cref="T:System.Windows.Forms.Form" /> that this form will own.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.AdjustFormScrollbars(System.Boolean)">
      <summary>Adjusts the scroll bars on the container based on the current control positions and the control currently selected.</summary>
      <param name="displayScrollbars">
        <see langword="true" /> to show the scroll bars; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.ApplyAutoScaling">
      <summary>Resizes the form according to the current value of the <see cref="P:System.Windows.Forms.Form.AutoScaleBaseSize" /> property and the size of the current font.</summary>
    </member>
    <member name="M:System.Windows.Forms.Form.CenterToParent">
      <summary>Centers the position of the form within the bounds of the parent form.</summary>
    </member>
    <member name="M:System.Windows.Forms.Form.CenterToScreen">
      <summary>Centers the form on the current screen.</summary>
    </member>
    <member name="M:System.Windows.Forms.Form.Close">
      <summary>Closes the form.</summary>
      <exception cref="T:System.InvalidOperationException">The form was closed while a handle was being created.</exception>
      <exception cref="T:System.ObjectDisposedException">You cannot call this method from the <see cref="E:System.Windows.Forms.Form.Activated" /> event when <see cref="P:System.Windows.Forms.Form.WindowState" /> is set to <see cref="F:System.Windows.Forms.FormWindowState.Maximized" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Form.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.Form" /> control.</summary>
      <returns>A new accessible object for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.CreateControlsInstance">
      <summary>Creates a new instance of the control collection for the control.</summary>
      <returns>A new instance of <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.CreateHandle">
      <summary>Creates the handle for the form. If a derived class overrides this function, it must call the base implementation.</summary>
      <exception cref="T:System.InvalidOperationException">A handle for this <see cref="T:System.Windows.Forms.Form" /> has already been created.</exception>
    </member>
    <member name="M:System.Windows.Forms.Form.DefWndProc(System.Windows.Forms.Message@)">
      <summary>Sends the specified message to the default window procedure.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.Dispose(System.Boolean)">
      <summary>Disposes of the resources (other than memory) used by the <see cref="T:System.Windows.Forms.Form" />.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.GetAutoScaleSize(System.Drawing.Font)">
      <summary>Gets the size when autoscaling the form based on a specified font.</summary>
      <param name="font">A <see cref="T:System.Drawing.Font" /> representing the font to determine the autoscaled base size of the form.</param>
      <returns>A <see cref="T:System.Drawing.SizeF" /> representing the autoscaled size of the form.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Retrieves the bounds within which the control is scaled.</summary>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area for which to retrieve the display bounds.</param>
      <param name="factor">The height and width of the control's bounds.</param>
      <param name="specified">One of the values of <see cref="T:System.Windows.Forms.BoundsSpecified" /> that specifies the bounds of the control to use when defining its size and position.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> representing the bounds within which the control is scaled.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.LayoutMdi(System.Windows.Forms.MdiLayout)">
      <summary>Arranges the multiple-document interface (MDI) child forms within the MDI parent form.</summary>
      <param name="value">One of the <see cref="T:System.Windows.Forms.MdiLayout" /> values that defines the layout of MDI child forms.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnActivated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.Activated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnBackgroundImageChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackgroundImageChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnBackgroundImageLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackgroundImageLayoutChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnClosed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.Closed" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnClosing(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.Closing" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnCreateControl">
      <summary>Raises the <see langword="CreateControl" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.Form.OnDeactivate(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.Deactivate" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnDpiChanged(System.Windows.Forms.DpiChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.DpiChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.DpiChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Enter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnFormClosed(System.Windows.Forms.FormClosedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.FormClosed" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.FormClosedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnFormClosing(System.Windows.Forms.FormClosingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.FormClosing" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.FormClosingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnGetDpiScaledSize(System.Int32,System.Int32,System.Drawing.Size@)">
      <summary>Raises the GetDpiScaledSize event.</summary>
      <param name="deviceDpiOld">The DPI value for the display device where the form was previously displayed.</param>
      <param name="deviceDpiNew">The DPI value for the display device where the form will be displayed.</param>
      <param name="desiredSize">A <see cref="T:System.Drawing.Size" /> representing the new size of the form based on the new DPI value.</param>
      <returns>
        <see langword="true" /> if successful; otherwise <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.OnGotFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.Form.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnHelpButtonClicked(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.HelpButtonClicked" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnInputLanguageChanged(System.Windows.Forms.InputLanguageChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.InputLanguageChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.InputLanguageChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnInputLanguageChanging(System.Windows.Forms.InputLanguageChangingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.InputLanguageChanging" /> event.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.InputLanguageChangingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="levent">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnLoad(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.Load" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnMaximizedBoundsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.MaximizedBoundsChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnMaximumSizeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.MaximumSizeChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnMdiChildActivate(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.MdiChildActivate" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnMenuComplete(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.MenuComplete" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnMenuStart(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.MenuStart" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnMinimumSizeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.MinimumSizeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnResizeBegin(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.ResizeBegin" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnResizeEnd(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.ResizeEnd" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnRightToLeftLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.RightToLeftLayoutChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnShown(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.Shown" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.StyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the Win32 message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the keystroke was processed and consumed by the control; otherwise, <see langword="false" /> to allow further processing.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.ProcessDialogChar(System.Char)">
      <summary>Processes a dialog character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog box key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the keystroke was processed and consumed by the control; otherwise, <see langword="false" /> to allow further processing.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.ProcessKeyPreview(System.Windows.Forms.Message@)">
      <summary>Previews a keyboard message.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.ProcessTabKey(System.Boolean)">
      <summary>Selects the next available control and makes it the active control.</summary>
      <param name="forward">
        <see langword="true" /> to cycle forward through the controls in the ContainerControl; otherwise, <see langword="false" />.</param>
      <returns>
        <see langword="true" /> if a control is selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.RemoveOwnedForm(System.Windows.Forms.Form)">
      <summary>Removes an owned form from this form.</summary>
      <param name="ownedForm">A <see cref="T:System.Windows.Forms.Form" /> representing the form to remove from the list of owned forms for this form.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Scales the location, size, padding, and margin of a control.</summary>
      <param name="factor">The factor by which the height and width of the control are scaled.</param>
      <param name="specified">A <see cref="T:System.Windows.Forms.BoundsSpecified" /> value that specifies the bounds of the control to use when defining its size and position.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.ScaleCore(System.Single,System.Single)">
      <summary>Performs scaling of the form.</summary>
      <param name="x">Percentage to scale the form horizontally.</param>
      <param name="y">Percentage to scale the form vertically.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.ScaleMinMaxSize(System.Single,System.Single,System.Boolean)">
      <summary>Scales the size of the form's <see langword="Min" /> and <see langword="Max" />properties with the scale factor provided.</summary>
      <param name="xScaleFactor">The scale factor to be applied on the width of the property being scaled.</param>
      <param name="yScaleFactor">The scale factor to be applied on the height of the property being scaled.</param>
      <param name="updateContainerSize">
        <see langword="true" /> to resize the Form along with properties being scaled; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.Select(System.Boolean,System.Boolean)">
      <summary>Selects this form, and optionally selects the next or previous control.</summary>
      <param name="directed">If set to true that the active control is changed.</param>
      <param name="forward">If directed is true, then this controls the direction in which focus is moved. If this is <see langword="true" />, then the next control is selected; otherwise, the previous control is selected.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Performs the work of setting the specified bounds of this control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.SetClientSizeCore(System.Int32,System.Int32)">
      <summary>Sets the client size of the form. This will adjust the bounds of the form to make the client size the requested size.</summary>
      <param name="x">Requested width of the client region.</param>
      <param name="y">Requested height of the client region.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.SetDesktopBounds(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Sets the bounds of the form in desktop coordinates.</summary>
      <param name="x">The x-coordinate of the form's location.</param>
      <param name="y">The y-coordinate of the form's location.</param>
      <param name="width">The width of the form.</param>
      <param name="height">The height of the form.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.SetDesktopLocation(System.Int32,System.Int32)">
      <summary>Sets the location of the form in desktop coordinates.</summary>
      <param name="x">The x-coordinate of the form's location.</param>
      <param name="y">The y-coordinate of the form's location.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.SetVisibleCore(System.Boolean)">
      <summary>Sets the control to the specified visible state.</summary>
      <param name="value">
        <see langword="true" /> to make the control visible; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.Show(System.Windows.Forms.IWin32Window)">
      <summary>Shows the form with the specified owner to the user.</summary>
      <param name="owner">Any object that implements <see cref="T:System.Windows.Forms.IWin32Window" /> and represents the top-level window that will own this form.</param>
      <exception cref="T:System.InvalidOperationException">The form being shown is already visible.  
  
 -or-  
  
 The form specified in the <paramref name="owner" /> parameter is the same as the form being shown.  
  
 -or-  
  
 The form being shown is disabled.  
  
 -or-  
  
 The form being shown is not a top-level window.  
  
 -or-  
  
 The form being shown as a dialog box is already a modal form.  
  
 -or-  
  
 The current process is not running in user interactive mode (for more information, see <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" />).</exception>
    </member>
    <member name="M:System.Windows.Forms.Form.ShowDialog">
      <summary>Shows the form as a modal dialog box.</summary>
      <exception cref="T:System.InvalidOperationException">The form being shown is already visible.  
  
 -or-  
  
 The form being shown is disabled.  
  
 -or-  
  
 The form being shown is not a top-level window.  
  
 -or-  
  
 The form being shown as a dialog box is already a modal form.  
  
 -or-  
  
 The current process is not running in user interactive mode (for more information, see <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" />).</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.ShowDialog(System.Windows.Forms.IWin32Window)">
      <summary>Shows the form as a modal dialog box with the specified owner.</summary>
      <param name="owner">Any object that implements <see cref="T:System.Windows.Forms.IWin32Window" /> that represents the top-level window that will own the modal dialog box.</param>
      <exception cref="T:System.ArgumentException">The form specified in the <paramref name="owner" /> parameter is the same as the form being shown.</exception>
      <exception cref="T:System.InvalidOperationException">The form being shown is already visible.  
  
 -or-  
  
 The form being shown is disabled.  
  
 -or-  
  
 The form being shown is not a top-level window.  
  
 -or-  
  
 The form being shown as a dialog box is already a modal form.  
  
 -or-  
  
 The current process is not running in user interactive mode (for more information, see <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" />).</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.ToString">
      <summary>Gets a string representing the current instance of the form.</summary>
      <returns>A string consisting of the fully qualified name of the form object's class, with the <see cref="P:System.Windows.Forms.Form.Text" /> property of the form appended to the end. For example, if the form is derived from the class <c>MyForm</c> in the <c>MyNamespace</c> namespace, and the <see cref="P:System.Windows.Forms.Form.Text" /> property is set to <c>Hello, World</c>, this method will return <c>MyNamespace.MyForm, Text: Hello, World</c>.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.UpdateDefaultButton">
      <summary>Updates which button is the default button.</summary>
    </member>
    <member name="M:System.Windows.Forms.Form.ValidateChildren">
      <summary>Causes all of the child controls within a control that support validation to validate their data.</summary>
      <returns>
        <see langword="true" /> if all of the children validated successfully; otherwise, <see langword="false" />. If called from the <see cref="E:System.Windows.Forms.Control.Validating" /> or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers, this method will always return <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.ValidateChildren(System.Windows.Forms.ValidationConstraints)">
      <summary>Causes all of the child controls within a control that support validation to validate their data.</summary>
      <param name="validationConstraints">Places restrictions on which controls have their <see cref="E:System.Windows.Forms.Control.Validating" /> event raised.</param>
      <returns>
        <see langword="true" /> if all of the children validated successfully; otherwise, <see langword="false" />. If called from the <see cref="E:System.Windows.Forms.Control.Validating" /> or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers, this method will always return <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Form.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.Form.AcceptButton">
      <summary>Gets or sets the button on the form that is clicked when the user presses the ENTER key.</summary>
      <returns>An <see cref="T:System.Windows.Forms.IButtonControl" /> that represents the button to use as the accept button for the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.ActiveForm">
      <summary>Gets the currently active form for this application.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Form" /> that represents the currently active form, or <see langword="null" /> if there is no active form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.ActiveMdiChild">
      <summary>Gets the currently active multiple-document interface (MDI) child window.</summary>
      <returns>Returns a <see cref="T:System.Windows.Forms.Form" /> that represents the currently active MDI child window, or <see langword="null" /> if there are currently no child windows present.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.AllowTransparency">
      <summary>Gets or sets a value indicating whether the opacity of the form can be adjusted.</summary>
      <returns>
        <see langword="true" /> if the opacity of the form can be changed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.AutoScale">
      <summary>Gets or sets a value indicating whether the form adjusts its size to fit the height of the font used on the form and scales its controls.</summary>
      <returns>
        <see langword="true" /> if the form will automatically scale itself and its controls based on the current font assigned to the form; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.AutoScaleBaseSize">
      <summary>Gets or sets the base size used for autoscaling of the form.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the base size that this form uses for autoscaling.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.AutoScroll">
      <summary>Gets or sets a value indicating whether the form enables autoscrolling.</summary>
      <returns>
        <see langword="true" /> to enable autoscrolling on the form; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.AutoSize">
      <summary>Resize the form according to the setting of <see cref="P:System.Windows.Forms.Form.AutoSizeMode" />.</summary>
      <returns>
        <see langword="true" /> if the form will automatically resize; <see langword="false" /> if it must be manually resized.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.AutoSizeMode">
      <summary>Gets or sets the mode by which the form automatically resizes itself.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value is not a valid <see cref="T:System.Windows.Forms.AutoSizeMode" /> value.</exception>
      <returns>An <see cref="T:System.Windows.Forms.AutoSizeMode" /> enumerated value. The default is <see cref="F:System.Windows.Forms.AutoSizeMode.GrowOnly" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.AutoValidate">
      <summary>Gets or sets a value that indicates whether controls in this container will be automatically validated when the focus changes.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AutoValidate" /> enumerated value that indicates whether contained controls are implicitly validated on focus change. The default is Inherit.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.CancelButton">
      <summary>Gets or sets the button control that is clicked when the user presses the ESC key.</summary>
      <returns>An <see cref="T:System.Windows.Forms.IButtonControl" /> that represents the cancel button for the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.ClientSize">
      <summary>Gets or sets the size of the client area of the form.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the size of the form's client area.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.ControlBox">
      <summary>Gets or sets a value indicating whether a control box is displayed in the caption bar of the form.</summary>
      <returns>
        <see langword="true" /> if the form displays a control box in the upper-right corner of the form; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.DefaultImeMode">
      <summary>Gets the default Input Method Editor (IME) mode supported by the control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.DesktopBounds">
      <summary>Gets or sets the size and location of the form on the Windows desktop.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the form on the Windows desktop using desktop coordinates.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.DesktopLocation">
      <summary>Gets or sets the location of the form on the Windows desktop.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> that represents the location of the form on the desktop.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.DialogResult">
      <summary>Gets or sets the dialog result for the form.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is outside the range of valid values.</exception>
      <returns>A <see cref="T:System.Windows.Forms.DialogResult" /> that represents the result of the form when used as a dialog box.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.FormBorderStyle">
      <summary>Gets or sets the border style of the form.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is outside the range of valid values.</exception>
      <returns>A <see cref="T:System.Windows.Forms.FormBorderStyle" /> that represents the style of border to display for the form. The default is <see langword="FormBorderStyle.Sizable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.HelpButton">
      <summary>Gets or sets a value indicating whether a Help button should be displayed in the caption box of the form.</summary>
      <returns>
        <see langword="true" /> to display a Help button in the form's caption bar; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.Icon">
      <summary>Gets or sets the icon for the form.</summary>
      <returns>An <see cref="T:System.Drawing.Icon" /> that represents the icon for the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.IsMdiChild">
      <summary>Gets a value indicating whether the form is a multiple-document interface (MDI) child form.</summary>
      <returns>
        <see langword="true" /> if the form is an MDI child form; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.IsMdiContainer">
      <summary>Gets or sets a value indicating whether the form is a container for multiple-document interface (MDI) child forms.</summary>
      <returns>
        <see langword="true" /> if the form is a container for MDI child forms; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.IsRestrictedWindow">
      <summary>Gets a value indicating whether the form can use all windows and user input events without restriction.</summary>
      <returns>
        <see langword="true" /> if the form has restrictions; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.KeyPreview">
      <summary>Gets or sets a value indicating whether the form will receive key events before the event is passed to the control that has focus.</summary>
      <returns>
        <see langword="true" /> if the form will receive all key events; <see langword="false" /> if the currently selected control on the form receives key events. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.Location">
      <summary>Gets or sets the <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the <see cref="T:System.Windows.Forms.Form" /> in screen coordinates.</summary>
      <returns>The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the <see cref="T:System.Windows.Forms.Form" /> in screen coordinates.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.MainMenuStrip">
      <summary>Gets or sets the primary menu container for the form.</summary>
      <returns>A <see cref="T:System.Windows.Forms.MenuStrip" /> that represents the container for the menu structure of the form. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.Margin">
      <summary>Gets or sets the space between controls.</summary>
      <returns>A value that represents the space between controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.MaximizeBox">
      <summary>Gets or sets a value indicating whether the Maximize button is displayed in the caption bar of the form.</summary>
      <returns>
        <see langword="true" /> to display a Maximize button for the form; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.MaximizedBounds">
      <summary>Gets or sets the size of the form when it is maximized.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <see cref="P:System.Drawing.Rectangle.Top" /> property is greater than the height of the form.  
  
 -or-  
  
 The value of the <see cref="P:System.Drawing.Rectangle.Left" /> property is greater than the width of the form.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the form when it is maximized.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.MaximumSize">
      <summary>Gets the maximum size the form can be resized to.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The values of the height or width within the <see cref="T:System.Drawing.Size" /> object are less than zero.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the maximum size for the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.MdiChildren">
      <summary>Gets an array of forms that represent the multiple-document interface (MDI) child forms that are parented to this form.</summary>
      <returns>An array of <see cref="T:System.Windows.Forms.Form" /> objects, each of which identifies one of this form's MDI child forms.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.MdiChildrenMinimizedAnchorBottom">
      <summary>Gets or sets the anchoring for minimized MDI children.</summary>
      <returns>
        <see langword="true" /> to anchor minimized MDI children to the bottom left of the parent form; <see langword="false" /> to anchor to the top left of the parent form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.MdiParent">
      <summary>Gets or sets the current multiple-document interface (MDI) parent form of this form.</summary>
      <exception cref="T:System.Exception">The <see cref="T:System.Windows.Forms.Form" /> assigned to this property is not marked as an MDI container.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.Form" /> assigned to this property is both a child and an MDI container form.  
  
 -or-  
  
 The <see cref="T:System.Windows.Forms.Form" /> assigned to this property is located on a different thread.</exception>
      <returns>A <see cref="T:System.Windows.Forms.Form" /> that represents the MDI parent form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.MinimizeBox">
      <summary>Gets or sets a value indicating whether the Minimize button is displayed in the caption bar of the form.</summary>
      <returns>
        <see langword="true" /> to display a Minimize button for the form; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.MinimumSize">
      <summary>Gets or sets the minimum size the form can be resized to.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The values of the height or width within the <see cref="T:System.Drawing.Size" /> object are less than zero.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the minimum size for the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.Modal">
      <summary>Gets a value indicating whether this form is displayed modally.</summary>
      <returns>
        <see langword="true" /> if the form is displayed modally; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.Opacity">
      <summary>Gets or sets the opacity level of the form.</summary>
      <returns>The level of opacity for the form. The default is 1.00.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.OwnedForms">
      <summary>Gets an array of <see cref="T:System.Windows.Forms.Form" /> objects that represent all forms that are owned by this form.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Form" /> array that represents the owned forms for this form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.Owner">
      <summary>Gets or sets the form that owns this form.</summary>
      <exception cref="T:System.Exception">A top-level window cannot have an owner.</exception>
      <returns>A <see cref="T:System.Windows.Forms.Form" /> that represents the form that is the owner of this form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.RestoreBounds">
      <summary>Gets the location and size of the form in its normal window state.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that contains the location and size of the form in the normal window state.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.RightToLeftLayout">
      <summary>Gets or sets a value indicating whether right-to-left mirror placement is turned on.</summary>
      <returns>
        <see langword="true" /> if right-to-left mirror placement is turned on; otherwise, <see langword="false" /> for standard child control placement. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.ShowIcon">
      <summary>Gets or sets a value indicating whether an icon is displayed in the caption bar of the form.</summary>
      <returns>
        <see langword="true" /> if the form displays an icon in the caption bar; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.ShowInTaskbar">
      <summary>Gets or sets a value indicating whether the form is displayed in the Windows taskbar.</summary>
      <returns>
        <see langword="true" /> to display the form in the Windows taskbar at run time; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.ShowWithoutActivation">
      <summary>Gets a value indicating whether the window will be activated when it is shown.</summary>
      <returns>
        <see langword="true" /> if the window will not be activated when it is shown; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.Size">
      <summary>Gets or sets the size of the form.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the size of the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.SizeGripStyle">
      <summary>Gets or sets the style of the size grip to display in the lower-right corner of the form.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is outside the range of valid values.</exception>
      <returns>A <see cref="T:System.Windows.Forms.SizeGripStyle" /> that represents the style of the size grip to display. The default is <see cref="F:System.Windows.Forms.SizeGripStyle.Auto" /></returns>
    </member>
    <member name="P:System.Windows.Forms.Form.StartPosition">
      <summary>Gets or sets the starting position of the form at run time.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is outside the range of valid values.</exception>
      <returns>A <see cref="T:System.Windows.Forms.FormStartPosition" /> that represents the starting position of the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.TabIndex">
      <summary>Gets or sets the tab order of the control within its container.</summary>
      <returns>An <see cref="T:System.Int32" /> containing the index of the control within the set of controls within its container that is included in the tab order.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.TabStop">
      <summary>Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.</summary>
      <returns>
        <see langword="true" /> if the user can give the focus to the control using the TAB key; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.TopLevel">
      <summary>Gets or sets a value indicating whether to display the form as a top-level window.</summary>
      <exception cref="T:System.Exception">A Multiple-document interface (MDI) parent form must be a top-level window.</exception>
      <returns>
        <see langword="true" /> to display the form as a top-level window; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.TopMost">
      <summary>Gets or sets a value indicating whether the form should be displayed as a topmost form.</summary>
      <returns>
        <see langword="true" /> to display the form as a topmost form; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.TransparencyKey">
      <summary>Gets or sets the color that will represent transparent areas of the form.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color to display transparently on the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.Form.WindowState">
      <summary>Gets or sets a value that indicates whether form is minimized, maximized, or normal.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is outside the range of valid values.</exception>
      <returns>A <see cref="T:System.Windows.Forms.FormWindowState" /> that represents whether form is minimized, maximized, or normal. The default is <see langword="FormWindowState.Normal" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.Form.ControlCollection">
      <summary>Represents a collection of controls on the form.</summary>
    </member>
    <member name="M:System.Windows.Forms.Form.ControlCollection.#ctor(System.Windows.Forms.Form)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Form.ControlCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.Form" /> to contain the controls added to the control collection.</param>
    </member>
    <member name="M:System.Windows.Forms.Form.ControlCollection.Add(System.Windows.Forms.Control)">
      <summary>Adds a control to the form.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.Control" /> to add to the form.</param>
      <exception cref="T:System.Exception">A multiple document interface (MDI) parent form cannot have controls added to it.</exception>
    </member>
    <member name="M:System.Windows.Forms.Form.ControlCollection.Remove(System.Windows.Forms.Control)">
      <summary>Removes a control from the form.</summary>
      <param name="value">A <see cref="T:System.Windows.Forms.Control" /> to remove from the form.</param>
    </member>
    <member name="T:System.Windows.Forms.FormBorderStyle">
      <summary>Specifies the border styles for a form.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormBorderStyle.Fixed3D">
      <summary>A fixed, three-dimensional border.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormBorderStyle.FixedDialog">
      <summary>A thick, fixed dialog-style border.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormBorderStyle.FixedSingle">
      <summary>A fixed, single-line border.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormBorderStyle.FixedToolWindow">
      <summary>A tool window border that is not resizable. A tool window does not appear in the taskbar or in the window that appears when the user presses ALT+TAB. Although forms that specify <see cref="F:System.Windows.Forms.FormBorderStyle.FixedToolWindow" /> typically are not shown in the taskbar, you must also ensure that the <see cref="P:System.Windows.Forms.Form.ShowInTaskbar" /> property is set to <see langword="false" />, since its default value is <see langword="true" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormBorderStyle.None">
      <summary>No border.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormBorderStyle.Sizable">
      <summary>A resizable border.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormBorderStyle.SizableToolWindow">
      <summary>A resizable tool window border. A tool window does not appear in the taskbar or in the window that appears when the user presses ALT+TAB.</summary>
    </member>
    <member name="T:System.Windows.Forms.FormClosedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Form.FormClosed" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.FormClosedEventArgs.#ctor(System.Windows.Forms.CloseReason)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.FormClosedEventArgs" /> class.</summary>
      <param name="closeReason">A <see cref="T:System.Windows.Forms.CloseReason" /> value that represents the reason why the form was closed.</param>
    </member>
    <member name="P:System.Windows.Forms.FormClosedEventArgs.CloseReason">
      <summary>Gets a value that indicates why the form was closed.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.CloseReason" /> enumerated values.</returns>
    </member>
    <member name="T:System.Windows.Forms.FormClosedEventHandler">
      <summary>Represents the method that handles a <see cref="E:System.Windows.Forms.Form.FormClosed" /> event.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.FormClosedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.FormClosingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Form.FormClosing" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.FormClosingEventArgs.#ctor(System.Windows.Forms.CloseReason,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.FormClosingEventArgs" /> class.</summary>
      <param name="closeReason">A <see cref="T:System.Windows.Forms.CloseReason" /> value that represents the reason why the form is being closed.</param>
      <param name="cancel">
        <see langword="true" /> to cancel the event; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.FormClosingEventArgs.CloseReason">
      <summary>Gets a value that indicates why the form is being closed.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.CloseReason" /> enumerated values.</returns>
    </member>
    <member name="T:System.Windows.Forms.FormClosingEventHandler">
      <summary>Represents the method that handles a <see cref="E:System.Windows.Forms.Form.FormClosing" /> event.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.FormClosingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.FormCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.Form" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.FormCollection.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.FormCollection" /> class.</summary>
    </member>
    <member name="P:System.Windows.Forms.FormCollection.Item(System.Int32)">
      <summary>Gets or sets an element in the collection by its numeric index.</summary>
      <param name="index">The location of the <see cref="T:System.Windows.Forms.Form" /> within the collection.</param>
      <returns>The form at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.FormCollection.Item(System.String)">
      <summary>Gets or sets an element in the collection by the name of the associated <see cref="T:System.Windows.Forms.Form" /> object.</summary>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.Form" />.</param>
      <returns>The form with the specified name.</returns>
    </member>
    <member name="T:System.Windows.Forms.FormStartPosition">
      <summary>Specifies the initial position of a form.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormStartPosition.CenterParent">
      <summary>The form is centered within the bounds of its parent form.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormStartPosition.CenterScreen">
      <summary>The form is centered on the current display, and has the dimensions specified in the form's size.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormStartPosition.Manual">
      <summary>The position of the form is determined by the <see cref="P:System.Windows.Forms.Control.Location" /> property.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormStartPosition.WindowsDefaultBounds">
      <summary>The form is positioned at the Windows default location and has the bounds determined by Windows default.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormStartPosition.WindowsDefaultLocation">
      <summary>The form is positioned at the Windows default location and has the dimensions specified in the form's size.</summary>
    </member>
    <member name="T:System.Windows.Forms.FormWindowState">
      <summary>Specifies how a form window is displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormWindowState.Maximized">
      <summary>A maximized window.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormWindowState.Minimized">
      <summary>A minimized window.</summary>
    </member>
    <member name="F:System.Windows.Forms.FormWindowState.Normal">
      <summary>A default sized window.</summary>
    </member>
    <member name="T:System.Windows.Forms.FrameStyle">
      <summary>Specifies the frame style of the selected control.</summary>
    </member>
    <member name="F:System.Windows.Forms.FrameStyle.Dashed">
      <summary>A thin, dashed border.</summary>
    </member>
    <member name="F:System.Windows.Forms.FrameStyle.Thick">
      <summary>A thick, solid border.</summary>
    </member>
    <member name="T:System.Windows.Forms.GetChildAtPointSkip">
      <summary>Specifies which child controls to skip.</summary>
    </member>
    <member name="F:System.Windows.Forms.GetChildAtPointSkip.Disabled">
      <summary>Skips disabled child windows.</summary>
    </member>
    <member name="F:System.Windows.Forms.GetChildAtPointSkip.Invisible">
      <summary>Skips invisible child windows.</summary>
    </member>
    <member name="F:System.Windows.Forms.GetChildAtPointSkip.None">
      <summary>Does not skip any child windows.</summary>
    </member>
    <member name="F:System.Windows.Forms.GetChildAtPointSkip.Transparent">
      <summary>Skips transparent child windows.</summary>
    </member>
    <member name="T:System.Windows.Forms.GiveFeedbackEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event, which occurs during a drag operation.</summary>
    </member>
    <member name="M:System.Windows.Forms.GiveFeedbackEventArgs.#ctor(System.Windows.Forms.DragDropEffects,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.GiveFeedbackEventArgs" /> class.</summary>
      <param name="effect">The type of drag-and-drop operation. Possible values are obtained by applying the bitwise OR (|) operation to the constants defined in the <see cref="T:System.Windows.Forms.DragDropEffects" />.</param>
      <param name="useDefaultCursors">
        <see langword="true" /> if default pointers are used; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.GiveFeedbackEventArgs.#ctor(System.Windows.Forms.DragDropEffects,System.Boolean,System.Drawing.Bitmap,System.Drawing.Point,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.GiveFeedbackEventArgs" /> class.</summary>
      <param name="effect" />
      <param name="useDefaultCursors" />
      <param name="dragImage" />
      <param name="cursorOffset" />
      <param name="useDefaultDragImage" />
    </member>
    <member name="P:System.Windows.Forms.GiveFeedbackEventArgs.CursorOffset">
      <summary>Gets or sets the drag image cursor offset.</summary>
    </member>
    <member name="P:System.Windows.Forms.GiveFeedbackEventArgs.DragImage">
      <summary>Gets or sets the drag image bitmap.</summary>
    </member>
    <member name="P:System.Windows.Forms.GiveFeedbackEventArgs.Effect">
      <summary>Gets the drag-and-drop operation feedback that is displayed.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DragDropEffects" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultCursors">
      <summary>Gets or sets whether drag operation should use the default cursors that are associated with drag-drop effects.</summary>
      <returns>
        <see langword="true" /> if the default pointers are used; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultDragImage">
      <summary>Gets or sets a value indicating whether a layered window drag image is used.</summary>
      <returns>
        <see langword="true" /> for <see cref="P:System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultDragImage" /> to use a layered window drag image with a size of 96x96; otherwise <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.GiveFeedbackEventHandler">
      <summary>Represents the method that handles the <see cref="E:System.Windows.Forms.Control.GiveFeedback" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.GiveFeedbackEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.GridItem">
      <summary>Implements one row in a <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.GridItem.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.GridItem" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.GridItem.Select">
      <summary>When overridden in a derived class, selects this <see cref="T:System.Windows.Forms.GridItem" /> in the <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
      <returns>
        <see langword="true" /> if the selection is successful; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItem.Expandable">
      <summary>When overridden in a derived class, gets a value indicating whether the specified property is expandable to show nested properties.</summary>
      <returns>
        <see langword="true" /> if the specified property can be expanded; otherwise, <see langword="false" />. The default is false.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItem.Expanded">
      <summary>When overridden in a derived class, gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.GridItem" /> is in an expanded state.</summary>
      <exception cref="T:System.NotSupportedException">The <see cref="P:System.Windows.Forms.GridItem.Expanded" /> property was set to <see langword="true" />, but a <see cref="T:System.Windows.Forms.GridItem" /> is not expandable.</exception>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItem.GridItems">
      <summary>When overridden in a derived class, gets the collection of <see cref="T:System.Windows.Forms.GridItem" /> objects, if any, associated as a child of this <see cref="T:System.Windows.Forms.GridItem" />.</summary>
      <returns>The collection of <see cref="T:System.Windows.Forms.GridItem" /> objects.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItem.GridItemType">
      <summary>When overridden in a derived class, gets the type of this <see cref="T:System.Windows.Forms.GridItem" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.GridItemType" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItem.Label">
      <summary>When overridden in a derived class, gets the text of this <see cref="T:System.Windows.Forms.GridItem" />.</summary>
      <returns>A <see cref="T:System.String" /> representing the text associated with this <see cref="T:System.Windows.Forms.GridItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItem.Parent">
      <summary>When overridden in a derived class, gets the parent <see cref="T:System.Windows.Forms.GridItem" /> of this <see cref="T:System.Windows.Forms.GridItem" />, if any.</summary>
      <returns>A <see cref="T:System.Windows.Forms.GridItem" /> representing the parent of the <see cref="T:System.Windows.Forms.GridItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItem.PropertyDescriptor">
      <summary>When overridden in a derived class, gets the <see cref="T:System.ComponentModel.PropertyDescriptor" /> that is associated with this <see cref="T:System.Windows.Forms.GridItem" />.</summary>
      <returns>The <see cref="T:System.ComponentModel.PropertyDescriptor" /> associated with this <see cref="T:System.Windows.Forms.GridItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItem.Tag">
      <summary>Gets or sets user-defined data about the <see cref="T:System.Windows.Forms.GridItem" />.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the <see cref="T:System.Windows.Forms.GridItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItem.Value">
      <summary>When overridden in a derived class, gets the current value of this <see cref="T:System.Windows.Forms.GridItem" />.</summary>
      <returns>The current value of this <see cref="T:System.Windows.Forms.GridItem" />. This can be <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.GridItemCollection">
      <summary>Contains a collection of <see cref="T:System.Windows.Forms.GridItem" /> objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.GridItemCollection.Empty">
      <summary>Specifies that the <see cref="T:System.Windows.Forms.GridItemCollection" /> has no entries.</summary>
    </member>
    <member name="M:System.Windows.Forms.GridItemCollection.GetEnumerator">
      <summary>Returns an enumeration of all the grid items in the collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Windows.Forms.GridItemCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.GridItemCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>For a description of this member, see <see cref="M:System.Collections.ICollection.CopyTo(System.Array,System.Int32)" />.</summary>
      <param name="dest">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
    </member>
    <member name="P:System.Windows.Forms.GridItemCollection.Count">
      <summary>Gets the number of grid items in the collection.</summary>
      <returns>The number of grid items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItemCollection.Item(System.Int32)">
      <summary>Gets the <see cref="T:System.Windows.Forms.GridItem" /> at the specified index.</summary>
      <param name="index">The index of the grid item to return.</param>
      <returns>The <see cref="T:System.Windows.Forms.GridItem" /> at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItemCollection.Item(System.String)">
      <summary>Gets the <see cref="T:System.Windows.Forms.GridItem" /> with the matching label.</summary>
      <param name="label">A string value to match to a grid item label.</param>
      <returns>The grid item whose label matches the <paramref name="label" /> parameter.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItemCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.GridItemCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.GridItemCollection" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.GridItemType">
      <summary>Specifies the valid grid item types for a <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.GridItemType.ArrayValue">
      <summary>The <see cref="T:System.Windows.Forms.GridItem" /> is an element of an array.</summary>
    </member>
    <member name="F:System.Windows.Forms.GridItemType.Category">
      <summary>A grid entry that is a category name. A category is a descriptive grouping for groups of <see cref="T:System.Windows.Forms.GridItem" /> rows. Typical categories include the following Behavior, Layout, Data, and Appearance.</summary>
    </member>
    <member name="F:System.Windows.Forms.GridItemType.Property">
      <summary>A grid entry that corresponds to a property.</summary>
    </member>
    <member name="F:System.Windows.Forms.GridItemType.Root">
      <summary>A root item in the grid hierarchy.</summary>
    </member>
    <member name="T:System.Windows.Forms.GroupBox">
      <summary>Represents a Windows control that displays a frame around a group of controls with an optional caption.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.GroupBox.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.Click">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.GroupBox" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.DoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.GroupBox" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.KeyDown">
      <summary>Occurs when the user presses a key while the <see cref="T:System.Windows.Forms.GroupBox" /> control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.KeyPress">
      <summary>Occurs when the user presses a key while the <see cref="T:System.Windows.Forms.GroupBox" /> control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.KeyUp">
      <summary>Occurs when the user releases a key while the <see cref="T:System.Windows.Forms.GroupBox" /> control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.MouseClick">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.GroupBox" /> control with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.MouseDoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.GroupBox" /> control with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.MouseDown">
      <summary>Occurs when the user presses a mouse button while the mouse pointer is over the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.MouseEnter">
      <summary>Occurs when the mouse pointer enters the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.MouseLeave">
      <summary>Occurs when the mouse pointer leaves the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.MouseMove">
      <summary>Occurs when the user moves the mouse pointer over the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.MouseUp">
      <summary>Occurs when the user releases a mouse button while the mouse pointer is over the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.GroupBox.TabStopChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.GroupBox.TabStop" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.GroupBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.GroupBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.GroupBox.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.GroupBox" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the <see cref="T:System.Windows.Forms.GroupBox" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.GroupBox.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.GroupBox.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.GroupBox.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.GroupBox.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Scales the <see cref="T:System.Windows.Forms.GroupBox" /> by the specified factor and scaling instruction.</summary>
      <param name="factor">The <see cref="T:System.Drawing.SizeF" /> that indicates the height and width of the scaled control.</param>
      <param name="specified">One of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values that indicates how the control should be scaled.</param>
    </member>
    <member name="M:System.Windows.Forms.GroupBox.ToString">
      <summary>Returns a <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any. This method should not be overridden.</summary>
      <returns>A <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any, or <see langword="null" /> if the <see cref="T:System.ComponentModel.Component" /> is unnamed.</returns>
    </member>
    <member name="M:System.Windows.Forms.GroupBox.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.AllowDrop">
      <summary>Gets or sets a value that indicates whether the control will allow drag-and-drop operations and events to be used.</summary>
      <returns>
        <see langword="true" /> to allow drag-and-drop operations and events to be used; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.AutoSize">
      <summary>Gets or sets a value that indicates whether the <see cref="T:System.Windows.Forms.GroupBox" /> resizes based on its contents.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.GroupBox" /> automatically resizes based on its contents; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.AutoSizeMode">
      <summary>Gets or sets how the <see cref="T:System.Windows.Forms.GroupBox" /> behaves when its <see cref="P:System.Windows.Forms.Control.AutoSize" /> property is enabled.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AutoSizeMode" /> values. The default is <see cref="F:System.Windows.Forms.AutoSizeMode.GrowOnly" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.DefaultPadding">
      <summary>Gets the <see cref="T:System.Windows.Forms.Padding" /> structure that contains the default padding settings for a <see cref="T:System.Windows.Forms.GroupBox" /> control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> with all its edges set to three pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.DisplayRectangle">
      <summary>Gets a rectangle that represents the dimensions of the <see cref="T:System.Windows.Forms.GroupBox" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> with the dimensions of the <see cref="T:System.Windows.Forms.GroupBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.FlatStyle">
      <summary>Gets or sets the flat style appearance of the group box control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.FlatStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.FlatStyle" /> values. The default value is <see cref="F:System.Windows.Forms.FlatStyle.Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.TabStop">
      <summary>Gets or sets a value that indicates whether the user can press the TAB key to give the focus to the <see cref="T:System.Windows.Forms.GroupBox" />.</summary>
      <returns>
        <see langword="true" /> to allow the user to press the TAB key to give the focus to the <see cref="T:System.Windows.Forms.GroupBox" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBox.UseCompatibleTextRendering">
      <summary>Gets or sets a value that determines whether to use the <see cref="T:System.Drawing.Graphics" /> class (GDI+) or the <see cref="T:System.Windows.Forms.TextRenderer" /> class (GDI) to render text.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Drawing.Graphics" /> class should be used to perform text rendering for compatibility with versions 1.0 and 1.1. of the .NET Framework; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.GroupBoxRenderer">
      <summary>Provides methods used to render a group box control with or without visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Color,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.GroupBoxState)">
      <summary>Draws a group box control in the specified state and bounds, with the specified text, font, color, and text formatting.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the group box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the group box.</param>
      <param name="groupBoxText">The <see cref="T:System.String" /> to draw with the group box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="groupBoxText" />.</param>
      <param name="textColor">The <see cref="T:System.Drawing.Color" /> to apply to <paramref name="groupBoxText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.GroupBoxState" /> values that specifies the visual state of the group box.</param>
    </member>
    <member name="M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Color,System.Windows.Forms.VisualStyles.GroupBoxState)">
      <summary>Draws a group box control in the specified state and bounds, with the specified text, font, and color.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the group box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the group box.</param>
      <param name="groupBoxText">The <see cref="T:System.String" /> to draw with the group box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="groupBoxText" />.</param>
      <param name="textColor">The <see cref="T:System.Drawing.Color" /> to apply to <paramref name="groupBoxText" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.GroupBoxState" /> values that specifies the visual state of the group box.</param>
    </member>
    <member name="M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.GroupBoxState)">
      <summary>Draws a group box control in the specified state and bounds, with the specified text, font, and text formatting.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the group box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the group box.</param>
      <param name="groupBoxText">The <see cref="T:System.String" /> to draw with the group box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="groupBoxText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.GroupBoxState" /> values that specifies the visual state of the group box.</param>
    </member>
    <member name="M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.VisualStyles.GroupBoxState)">
      <summary>Draws a group box control in the specified state and bounds, with the specified text and font.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the group box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the group box.</param>
      <param name="groupBoxText">The <see cref="T:System.String" /> to draw with the group box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="groupBoxText" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.GroupBoxState" /> values that specifies the visual state of the group box.</param>
    </member>
    <member name="M:System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.GroupBoxState)">
      <summary>Draws a group box control in the specified state and bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the group box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the group box.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.GroupBoxState" /> values that specifies the visual state of the group box.</param>
    </member>
    <member name="M:System.Windows.Forms.GroupBoxRenderer.DrawParentBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Control)">
      <summary>Draws the background of a control's parent in the specified area.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the background of the parent of <paramref name="childControl" />.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> in which to draw the parent control's background. This rectangle should be inside the child control's bounds.</param>
      <param name="childControl">The control whose parent's background will be drawn.</param>
    </member>
    <member name="M:System.Windows.Forms.GroupBoxRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.GroupBoxState)">
      <summary>Indicates whether the background of the group box has any semitransparent or alpha-blended pieces.</summary>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.GroupBoxState" /> values that specifies the visual state of the group box.</param>
      <returns>
        <see langword="true" /> if the background of the group box has semitransparent or alpha-blended pieces; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.GroupBoxRenderer.RenderMatchingApplicationState">
      <summary>Gets or sets a value indicating whether the renderer uses the application state to determine rendering style.</summary>
      <returns>
        <see langword="true" /> if the application state is used to determine rendering style; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.HandledMouseEventArgs">
      <summary>Allows a custom control to prevent the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event from being sent to its parent container.</summary>
    </member>
    <member name="M:System.Windows.Forms.HandledMouseEventArgs.#ctor(System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.HandledMouseEventArgs" /> class with the specified mouse button, number of mouse button clicks, horizontal and vertical screen coordinates, and the change of mouse pointer position.</summary>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values indicating which mouse button was pressed.</param>
      <param name="clicks">The number of times a mouse button was pressed.</param>
      <param name="x">The x-coordinate of a mouse click, in pixels.</param>
      <param name="y">The y-coordinate of a mouse click, in pixels.</param>
      <param name="delta">A signed count of the number of detents the wheel has rotated.</param>
    </member>
    <member name="M:System.Windows.Forms.HandledMouseEventArgs.#ctor(System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.HandledMouseEventArgs" /> class with the specified mouse button, number of mouse button clicks, horizontal and vertical screen coordinates, the change of mouse pointer position, and the value indicating whether the event is handled.</summary>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values indicating which mouse button was pressed.</param>
      <param name="clicks">The number of times a mouse button was pressed.</param>
      <param name="x">The x-coordinate of a mouse click, in pixels.</param>
      <param name="y">The y-coordinate of a mouse click, in pixels.</param>
      <param name="delta">A signed count of the number of detents the wheel has rotated.</param>
      <param name="defaultHandledValue">
        <see langword="true" /> if the event is handled; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.HandledMouseEventArgs.Handled">
      <summary>Gets or sets whether this event should be forwarded to the control's parent container.</summary>
      <returns>
        <see langword="true" /> if the mouse event should go to the parent control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.Help">
      <summary>Encapsulates the HTML Help 1.0 engine.</summary>
    </member>
    <member name="M:System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control,System.String)">
      <summary>Displays the contents of the Help file at the specified URL.</summary>
      <param name="parent">A <see cref="T:System.Windows.Forms.Control" /> that identifies the parent of the Help dialog box.</param>
      <param name="url">The path and name of the Help file.</param>
    </member>
    <member name="M:System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control,System.String,System.String)">
      <summary>Displays the contents of the Help file found at the specified URL for a specific keyword.</summary>
      <param name="parent">A <see cref="T:System.Windows.Forms.Control" /> that identifies the parent of the Help dialog box.</param>
      <param name="url">The path and name of the Help file.</param>
      <param name="keyword">The keyword to display Help for.</param>
    </member>
    <member name="M:System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control,System.String,System.Windows.Forms.HelpNavigator)">
      <summary>Displays the contents of the Help file found at the specified URL for a specific topic.</summary>
      <param name="parent">A <see cref="T:System.Windows.Forms.Control" /> that identifies the parent of the Help dialog box.</param>
      <param name="url">The path and name of the Help file.</param>
      <param name="navigator">One of the <see cref="T:System.Windows.Forms.HelpNavigator" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control,System.String,System.Windows.Forms.HelpNavigator,System.Object)">
      <summary>Displays the contents of the Help file located at the URL supplied by the user.</summary>
      <param name="parent">A <see cref="T:System.Windows.Forms.Control" /> that identifies the parent of the Help dialog box.</param>
      <param name="url">The path and name of the Help file.</param>
      <param name="command">One of the <see cref="T:System.Windows.Forms.HelpNavigator" /> values.</param>
      <param name="parameter">A string that contains the topic identifier.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="parameter" /> is an integer.</exception>
    </member>
    <member name="M:System.Windows.Forms.Help.ShowHelpIndex(System.Windows.Forms.Control,System.String)">
      <summary>Displays the index of the specified Help file.</summary>
      <param name="parent">A <see cref="T:System.Windows.Forms.Control" /> that identifies the parent of the Help dialog box.</param>
      <param name="url">The path and name of the Help file.</param>
    </member>
    <member name="M:System.Windows.Forms.Help.ShowPopup(System.Windows.Forms.Control,System.String,System.Drawing.Point)">
      <summary>Displays a Help pop-up window.</summary>
      <param name="parent">A <see cref="T:System.Windows.Forms.Control" /> that identifies the parent of the Help dialog box.</param>
      <param name="caption">The message to display in the pop-up window.</param>
      <param name="location">A value that specifies the horizontal and vertical coordinates at which to display the pop-up window, relative to the upper-left corner of the screen.</param>
    </member>
    <member name="T:System.Windows.Forms.HelpEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.HelpRequested" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.HelpEventArgs.#ctor(System.Drawing.Point)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.HelpEventArgs" /> class.</summary>
      <param name="mousePos">The coordinates of the mouse pointer.</param>
    </member>
    <member name="P:System.Windows.Forms.HelpEventArgs.Handled">
      <summary>Gets or sets a value indicating whether the help event was handled.</summary>
      <returns>
        <see langword="true" /> if the event is handled; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HelpEventArgs.MousePos">
      <summary>Gets the screen coordinates of the mouse pointer.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> representing the screen coordinates of the mouse pointer.</returns>
    </member>
    <member name="T:System.Windows.Forms.HelpEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.HelpRequested" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="hlpevent">A <see cref="T:System.Windows.Forms.HelpEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.HelpNavigator">
      <summary>Specifies constants indicating which elements of the Help file to display.</summary>
    </member>
    <member name="F:System.Windows.Forms.HelpNavigator.AssociateIndex">
      <summary>The Help file opens to the index entry for the first letter of a specified topic.</summary>
    </member>
    <member name="F:System.Windows.Forms.HelpNavigator.Find">
      <summary>The Help file opens to the search page.</summary>
    </member>
    <member name="F:System.Windows.Forms.HelpNavigator.Index">
      <summary>The Help file opens to the index.</summary>
    </member>
    <member name="F:System.Windows.Forms.HelpNavigator.KeywordIndex">
      <summary>The Help file opens to the topic with the specified index entry, if one exists; otherwise, the index entry closest to the specified keyword is displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.HelpNavigator.TableOfContents">
      <summary>The Help file opens to the table of contents.</summary>
    </member>
    <member name="F:System.Windows.Forms.HelpNavigator.Topic">
      <summary>The Help file opens to a specified topic, if the topic exists.</summary>
    </member>
    <member name="F:System.Windows.Forms.HelpNavigator.TopicId">
      <summary>The Help file opens to a topic indicated by a numeric topic identifier.</summary>
    </member>
    <member name="T:System.Windows.Forms.HelpProvider">
      <summary>Provides pop-up or online Help for controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.HelpProvider" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.CanExtend(System.Object)">
      <summary>Specifies whether this object can provide its extender properties to the specified object.</summary>
      <param name="target">The object that the externder properties are provided to.</param>
      <returns>
        <see langword="true" /> if this object can provide its extender properties; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.GetHelpKeyword(System.Windows.Forms.Control)">
      <summary>Returns the Help keyword for the specified control.</summary>
      <param name="ctl">A <see cref="T:System.Windows.Forms.Control" /> from which to retrieve the Help topic.</param>
      <returns>The Help keyword associated with this control, or <see langword="null" /> if the <see cref="T:System.Windows.Forms.HelpProvider" /> is currently configured to display the entire Help file or is configured to provide a Help string.</returns>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.GetHelpNavigator(System.Windows.Forms.Control)">
      <summary>Returns the current <see cref="T:System.Windows.Forms.HelpNavigator" /> setting for the specified control.</summary>
      <param name="ctl">A <see cref="T:System.Windows.Forms.Control" /> from which to retrieve the Help navigator.</param>
      <returns>The <see cref="T:System.Windows.Forms.HelpNavigator" /> setting for the specified control. The default is <see cref="F:System.Windows.Forms.HelpNavigator.AssociateIndex" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.GetHelpString(System.Windows.Forms.Control)">
      <summary>Returns the contents of the pop-up Help window for the specified control.</summary>
      <param name="ctl">A <see cref="T:System.Windows.Forms.Control" /> from which to retrieve the Help string.</param>
      <returns>The Help string associated with this control. The default is <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.GetShowHelp(System.Windows.Forms.Control)">
      <summary>Returns a value indicating whether the specified control's Help should be displayed.</summary>
      <param name="ctl">A <see cref="T:System.Windows.Forms.Control" /> for which Help will be displayed.</param>
      <returns>
        <see langword="true" /> if Help will be displayed for the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.ResetShowHelp(System.Windows.Forms.Control)">
      <summary>Removes the Help associated with the specified control.</summary>
      <param name="ctl">The control to remove Help from.</param>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.SetHelpKeyword(System.Windows.Forms.Control,System.String)">
      <summary>Specifies the keyword used to retrieve Help when the user invokes Help for the specified control.</summary>
      <param name="ctl">A <see cref="T:System.Windows.Forms.Control" /> that specifies the control for which to set the Help topic.</param>
      <param name="keyword">The Help keyword to associate with the control.</param>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.SetHelpNavigator(System.Windows.Forms.Control,System.Windows.Forms.HelpNavigator)">
      <summary>Specifies the Help command to use when retrieving Help from the Help file for the specified control.</summary>
      <param name="ctl">A <see cref="T:System.Windows.Forms.Control" /> for which to set the Help keyword.</param>
      <param name="navigator">One of the <see cref="T:System.Windows.Forms.HelpNavigator" /> values.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value of <paramref name="navigator" /> is not one of the <see cref="T:System.Windows.Forms.HelpNavigator" /> values.</exception>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.SetHelpString(System.Windows.Forms.Control,System.String)">
      <summary>Specifies the Help string associated with the specified control.</summary>
      <param name="ctl">A <see cref="T:System.Windows.Forms.Control" /> with which to associate the Help string.</param>
      <param name="helpString">The Help string associated with the control.</param>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.SetShowHelp(System.Windows.Forms.Control,System.Boolean)">
      <summary>Specifies whether Help is displayed for the specified control.</summary>
      <param name="ctl">A <see cref="T:System.Windows.Forms.Control" /> for which Help is turned on or off.</param>
      <param name="value">
        <see langword="true" /> if Help displays for the control; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.HelpProvider.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.HelpProvider" />.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.HelpProvider" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HelpProvider.HelpNamespace">
      <summary>Gets or sets a value specifying the name of the Help file associated with this <see cref="T:System.Windows.Forms.HelpProvider" /> object.</summary>
      <returns>The name of the Help file. This can be of the form C:\path\sample.chm or /folder/file.htm.</returns>
    </member>
    <member name="P:System.Windows.Forms.HelpProvider.Tag">
      <summary>Gets or sets the object that contains supplemental data about the <see cref="T:System.Windows.Forms.HelpProvider" />.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the <see cref="T:System.Windows.Forms.HelpProvider" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.HorizontalAlignment">
      <summary>Specifies how an object or text in a control is horizontally aligned relative to an element of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.HorizontalAlignment.Center">
      <summary>The object or text is aligned in the center of the control element.</summary>
    </member>
    <member name="F:System.Windows.Forms.HorizontalAlignment.Left">
      <summary>The object or text is aligned on the left of the control element.</summary>
    </member>
    <member name="F:System.Windows.Forms.HorizontalAlignment.Right">
      <summary>The object or text is aligned on the right of the control element.</summary>
    </member>
    <member name="T:System.Windows.Forms.HScrollBar">
      <summary>Represents a standard Windows horizontal scroll bar.</summary>
    </member>
    <member name="M:System.Windows.Forms.HScrollBar.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.HScrollBar" /> class.</summary>
    </member>
    <member name="P:System.Windows.Forms.HScrollBar.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.HScrollBar.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="T:System.Windows.Forms.HScrollProperties">
      <summary>Provides basic properties for the <see cref="T:System.Windows.Forms.HScrollBar" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.HScrollProperties.#ctor(System.Windows.Forms.ScrollableControl)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.HScrollProperties" /> class.</summary>
      <param name="container">A <see cref="T:System.Windows.Forms.ScrollableControl" /> that contains the scroll bar.</param>
    </member>
    <member name="T:System.Windows.Forms.HtmlDocument">
      <summary>Provides top-level programmatic access to an HTML document hosted by the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.Click">
      <summary>Occurs when the user clicks anywhere on the document.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.ContextMenuShowing">
      <summary>Occurs when the user requests to display the document's context menu.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.Focusing">
      <summary>Occurs before focus is given to the document.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.LosingFocus">
      <summary>Occurs while focus is leaving a control.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.MouseDown">
      <summary>Occurs when the user clicks the left mouse button.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.MouseLeave">
      <summary>Occurs when the mouse is no longer hovering over the document.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.MouseMove">
      <summary>Occurs when the mouse is moved over the document.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.MouseOver">
      <summary>Occurs when the mouse is moved over the document.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.MouseUp">
      <summary>Occurs when the user releases the left mouse button.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlDocument.Stop">
      <summary>Occurs when navigation to another Web page is halted.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.AttachEventHandler(System.String,System.EventHandler)">
      <summary>Adds an event handler for the named HTML DOM event.</summary>
      <param name="eventName">The name of the event you want to handle.</param>
      <param name="eventHandler">The managed code that handles the event.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.CreateElement(System.String)">
      <summary>Creates a new <see langword="HtmlElement" /> of the specified HTML tag type.</summary>
      <param name="elementTag">The name of the HTML element to create.</param>
      <returns>A new element of the specified tag type.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.DetachEventHandler(System.String,System.EventHandler)">
      <summary>Removes an event handler from a named event on the HTML DOM.</summary>
      <param name="eventName">The name of the event you want to cease handling.</param>
      <param name="eventHandler">The managed code that handles the event.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.Equals(System.Object)">
      <summary>Tests the object for equality against the current object.</summary>
      <param name="obj">The object to test.</param>
      <returns>
        <see langword="true" /> if the objects are equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.ExecCommand(System.String,System.Boolean,System.Object)">
      <summary>Executes the specified command against the document.</summary>
      <param name="command">The name of the command to execute.</param>
      <param name="showUI">Whether or not to show command-specific dialog boxes or message boxes to the user.</param>
      <param name="value">The value to assign using the command. Not applicable for all commands.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.Focus">
      <summary>Sets user input focus on the current document.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.GetElementById(System.String)">
      <summary>Retrieves a single <see cref="T:System.Windows.Forms.HtmlElement" /> using the element's <c>ID</c> attribute as a search key.</summary>
      <param name="id">The ID attribute of the element to retrieve.</param>
      <returns>Returns the first object with the same <c>ID</c> attribute as the specified value, or <see langword="null" /> if the <paramref name="id" /> cannot be found.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.GetElementFromPoint(System.Drawing.Point)">
      <summary>Retrieves the HTML element located at the specified client coordinates.</summary>
      <param name="point">The x,y position of the element on the screen, relative to the top-left corner of the document.</param>
      <returns>The <see cref="T:System.Windows.Forms.HtmlElement" /> at the specified screen location in the document.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.GetElementsByTagName(System.String)">
      <summary>Retrieve a collection of elements with the specified HTML tag.</summary>
      <param name="tagName">The name of the HTML tag for the <see cref="T:System.Windows.Forms.HtmlElement" /> objects you want to retrieve.</param>
      <returns>The collection of elements who tag name is equal to the <paramref name="tagName" /> argument.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.GetHashCode">
      <summary>Retrieves the hash code for this object.</summary>
      <returns>An <see cref="T:System.Int32" /> representing an in-memory hash of this object.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.InvokeScript(System.String)">
      <summary>Executes an Active Scripting function defined in an HTML page.</summary>
      <param name="scriptName">The name of the script method to invoke.</param>
      <returns>The object returned by the Active Scripting call.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.InvokeScript(System.String,System.Object[])">
      <summary>Executes an Active Scripting function defined in an HTML page.</summary>
      <param name="scriptName">The name of the script method to invoke.</param>
      <param name="args">The arguments to pass to the script method.</param>
      <returns>The object returned by the Active Scripting call.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.op_Equality(System.Windows.Forms.HtmlDocument,System.Windows.Forms.HtmlDocument)">
      <summary>Returns a value that indicates whether the specified <see cref="T:System.Windows.Forms.HtmlDocument" /> instances represent the same value.</summary>
      <param name="left">The first instance to compare.</param>
      <param name="right">The second instance to compare.</param>
      <returns>
        <see langword="true" /> if the specified instances are equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.op_Inequality(System.Windows.Forms.HtmlDocument,System.Windows.Forms.HtmlDocument)">
      <summary>Returns a value that indicates whether the specified <see cref="T:System.Windows.Forms.HtmlDocument" /> instances do not represent the same value.</summary>
      <param name="left">The first instance to compare.</param>
      <param name="right">The second instance to compare.</param>
      <returns>
        <see langword="true" /> if the specified instances are not equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.OpenNew(System.Boolean)">
      <summary>Gets a new <see cref="T:System.Windows.Forms.HtmlDocument" /> to use with the <see cref="M:System.Windows.Forms.HtmlDocument.Write(System.String)" /> method.</summary>
      <param name="replaceInHistory">Whether the new window's navigation should replace the previous element in the navigation history of the DOM.</param>
      <returns>A new document for writing.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlDocument.Write(System.String)">
      <summary>Writes a new HTML page.</summary>
      <param name="text">The HTML text to write into the document.</param>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.ActiveElement">
      <summary>Provides the <see cref="T:System.Windows.Forms.HtmlElement" /> which currently has user input focus.</summary>
      <returns>The <see cref="T:System.Windows.Forms.HtmlElement" /> which currently has user input focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.ActiveLinkColor">
      <summary>Gets or sets the <see cref="T:System.Drawing.Color" /> of a hyperlink when clicked by a user.</summary>
      <returns>The <see cref="T:System.Drawing.Color" /> for active links.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.All">
      <summary>Gets an instance of <see cref="T:System.Windows.Forms.HtmlElementCollection" />, which stores all <see cref="T:System.Windows.Forms.HtmlElement" /> objects for the document.</summary>
      <returns>The <see cref="T:System.Windows.Forms.HtmlElementCollection" /> of all elements in the document.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.BackColor">
      <summary>Gets or sets the background color of the HTML document.</summary>
      <returns>The <see cref="T:System.Drawing.Color" /> of the document's background.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Body">
      <summary>Gets the <see cref="T:System.Windows.Forms.HtmlElement" /> for the <c>BODY</c> tag.</summary>
      <returns>The <see cref="T:System.Windows.Forms.HtmlElement" /> object for the <c>BODY</c> tag.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Cookie">
      <summary>Gets or sets the HTTP cookies associated with this document.</summary>
      <returns>A <see cref="T:System.String" /> containing a list of cookies, with each cookie separated by a semicolon.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.DefaultEncoding">
      <summary>Gets the encoding used by default for the current document.</summary>
      <returns>The <see cref="T:System.String" /> representing the encoding that the browser uses when the page is first displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Domain">
      <summary>Gets or sets the string describing the domain of this document for security purposes.</summary>
      <exception cref="T:System.ArgumentException">The argument for the <c>Domain</c> property must be a valid domain name using Domain Name System (DNS) conventions.</exception>
      <returns>A valid domain.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.DomDocument">
      <summary>Gets the unmanaged interface pointer for this <see cref="T:System.Windows.Forms.HtmlDocument" />.</summary>
      <returns>An <see cref="T:System.Object" /> representing an <c>IDispatch</c> pointer to the unmanaged document.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Encoding">
      <summary>Gets or sets the character encoding for this document.</summary>
      <returns>The <see cref="T:System.String" /> representing the current character encoding.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Focused">
      <summary>Gets a value indicating whether the document has user input focus.</summary>
      <returns>
        <see langword="true" /> if the document has focus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.ForeColor">
      <summary>Gets or sets the text color for the document.</summary>
      <returns>The color of the text in the document.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Forms">
      <summary>Gets a collection of all of the <c>&lt;FORM&gt;</c> elements in the document.</summary>
      <returns>An <see cref="T:System.Windows.Forms.HtmlElementCollection" /> of the <c>&lt;FORM&gt;</c> elements within the document.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Images">
      <summary>Gets a collection of all image tags in the document.</summary>
      <returns>A collection of <see cref="T:System.Windows.Forms.HtmlElement" /> objects, one for each IMG tag in the document. Elements are returned from the collection in source order.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.LinkColor">
      <summary>Gets or sets the color of hyperlinks.</summary>
      <returns>The color for hyperlinks in the current document.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Links">
      <summary>Gets a list of all the hyperlinks within this HTML document.</summary>
      <returns>An <see cref="T:System.Windows.Forms.HtmlElementCollection" /> of <see cref="T:System.Windows.Forms.HtmlElement" /> objects.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.RightToLeft">
      <summary>Gets or sets the direction of text in the current document.</summary>
      <returns>
        <see langword="true" /> if text renders from right to left; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Title">
      <summary>Gets or sets the text value of the <c>&lt;TITLE&gt;</c> tag in the current HTML document.</summary>
      <returns>The title of the current document.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Url">
      <summary>Gets the URL describing the location of this document.</summary>
      <returns>A <see cref="T:System.Uri" /> representing this document's URL.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.VisitedLinkColor">
      <summary>Gets or sets the Color of links to HTML pages that the user has already visited.</summary>
      <returns>The color of visited links.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlDocument.Window">
      <summary>Gets the <see cref="T:System.Windows.Forms.HtmlWindow" /> associated with this document.</summary>
      <returns>The window for this document.</returns>
    </member>
    <member name="T:System.Windows.Forms.HtmlElement">
      <summary>Represents an HTML element inside of a Web page.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.Click">
      <summary>Occurs when the user clicks on the element with the left mouse button.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.DoubleClick">
      <summary>Occurs when the user clicks the left mouse button over an element twice, in rapid succession.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.Drag">
      <summary>Occurs when the user drags text to various locations.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.DragEnd">
      <summary>Occurs when a user finishes a drag operation.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.DragLeave">
      <summary>Occurs when the user is no longer dragging an item over this element.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.DragOver">
      <summary>Occurs when the user drags text over the element.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.Focusing">
      <summary>Occurs when the element first receives user input focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.GotFocus">
      <summary>Occurs when the element has received user input focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.KeyDown">
      <summary>Occurs when the user presses a key on the keyboard.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.KeyPress">
      <summary>Occurs when the user presses and releases a key on the keyboard.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.KeyUp">
      <summary>Occurs when the user releases a key on the keyboard.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.LosingFocus">
      <summary>Occurs when the element is losing user input focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.LostFocus">
      <summary>Occurs when the element has lost user input focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.MouseDown">
      <summary>Occurs when the user presses a mouse button.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.MouseEnter">
      <summary>Occurs when the user first moves the mouse cursor over the current element.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.MouseLeave">
      <summary>Occurs when the user moves the mouse cursor off of the current element.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.MouseMove">
      <summary>Occurs when the user moves the mouse cursor across the element.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.MouseOver">
      <summary>Occurs when the mouse cursor enters the bounds of the element.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlElement.MouseUp">
      <summary>Occurs when the user releases a mouse button.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.AppendChild(System.Windows.Forms.HtmlElement)">
      <summary>Adds an element to another element's subtree.</summary>
      <param name="newElement">The <see cref="T:System.Windows.Forms.HtmlElement" /> to append to this location in the tree.</param>
      <returns>The element after it has been added to the tree.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.AttachEventHandler(System.String,System.EventHandler)">
      <summary>Adds an event handler for a named event on the HTML Document Object Model (DOM).</summary>
      <param name="eventName">The name of the event you want to handle.</param>
      <param name="eventHandler">The managed code that handles the event.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.DetachEventHandler(System.String,System.EventHandler)">
      <summary>Removes an event handler from a named event on the HTML Document Object Model (DOM).</summary>
      <param name="eventName">The name of the event you want to handle.</param>
      <param name="eventHandler">The managed code that handles the event.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.Equals(System.Object)">
      <summary>Tests if the supplied object is equal to the current element.</summary>
      <param name="obj">The object to test for equality.</param>
      <returns>
        <see langword="true" /> if <paramref name="obj" /> is an <see cref="T:System.Windows.Forms.HtmlElement" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.Focus">
      <summary>Puts user input focus on the current element.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.GetAttribute(System.String)">
      <summary>Retrieves the value of the named attribute on the element.</summary>
      <param name="attributeName">The name of the attribute. This argument is case-insensitive.</param>
      <returns>The value of this attribute on the element, as a <see cref="T:System.String" /> value. If the specified attribute does not exist on this element, returns an empty string.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.GetElementsByTagName(System.String)">
      <summary>Retrieves a collection of elements represented in HTML by the specified <c>HTML</c> tag.</summary>
      <param name="tagName">The name of the tag whose <see cref="T:System.Windows.Forms.HtmlElement" /> objects you wish to retrieve.</param>
      <returns>An <see cref="T:System.Windows.Forms.HtmlElementCollection" /> containing all elements whose <c>HTML</c> tag name is equal to <paramref name="tagName" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.GetHashCode">
      <summary>Serves as a hash function for a particular type.</summary>
      <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.InsertAdjacentElement(System.Windows.Forms.HtmlElementInsertionOrientation,System.Windows.Forms.HtmlElement)">
      <summary>Insert a new element into the Document Object Model (DOM).</summary>
      <param name="orient">Where to insert this element in relation to the current element.</param>
      <param name="newElement">The new element to insert.</param>
      <returns>The <see cref="T:System.Windows.Forms.HtmlElement" /> that was just inserted. If insertion failed, this will return <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.InvokeMember(System.String)">
      <summary>Executes an unexposed method on the underlying DOM element of this element.</summary>
      <param name="methodName">The name of the property or method to invoke.</param>
      <returns>The element returned by this method, represented as an <see cref="T:System.Object" />. If this <see cref="T:System.Object" /> is another HTML element, and you have a reference to the unmanaged MSHTML library added to your project, you can cast it to its appropriate unmanaged interface.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.InvokeMember(System.String,System.Object[])">
      <summary>Executes a function defined in the current HTML page by a scripting language.</summary>
      <param name="methodName">The name of the property or method to invoke.</param>
      <param name="parameter">A list of parameters to pass.</param>
      <returns>The element returned by the function, represented as an <see cref="T:System.Object" />. If this <see cref="T:System.Object" /> is another HTML element, and you have a reference to the unmanaged MSHTML library added to your project, you can cast it to its appropriate unmanaged interface.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.op_Equality(System.Windows.Forms.HtmlElement,System.Windows.Forms.HtmlElement)">
      <summary>Compares two elements for equality.</summary>
      <param name="left">The first <see cref="T:System.Windows.Forms.HtmlElement" />.</param>
      <param name="right">The second <see cref="T:System.Windows.Forms.HtmlElement" />.</param>
      <returns>
        <see langword="true" /> if both parameters are <see langword="null" />, or if both elements have the same underlying COM interface; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.op_Inequality(System.Windows.Forms.HtmlElement,System.Windows.Forms.HtmlElement)">
      <summary>Compares two <see cref="T:System.Windows.Forms.HtmlElement" /> objects for inequality.</summary>
      <param name="left">The first <see cref="T:System.Windows.Forms.HtmlElement" />.</param>
      <param name="right">The second <see cref="T:System.Windows.Forms.HtmlElement" />.</param>
      <returns>
        <see langword="true" /> is only one element is <see langword="null" />, or the two objects are not equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.RaiseEvent(System.String)">
      <summary>Causes the named event to call all registered event handlers.</summary>
      <param name="eventName">The name of the event to raise.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.RemoveFocus">
      <summary>Removes focus from the current element, if that element has focus.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.ScrollIntoView(System.Boolean)">
      <summary>Scrolls through the document containing this element until the top or bottom edge of this element is aligned with the document's window.</summary>
      <param name="alignWithTop">If <see langword="true" />, the top of the object will be displayed at the top of the window. If <see langword="false" />, the bottom of the object will be displayed at the bottom of the window.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlElement.SetAttribute(System.String,System.String)">
      <summary>Sets the value of the named attribute on the element.</summary>
      <param name="attributeName">The name of the attribute to set.</param>
      <param name="value">The new value of this attribute.</param>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.All">
      <summary>Gets an <see cref="T:System.Windows.Forms.HtmlElementCollection" /> of all elements underneath the current element.</summary>
      <returns>A collection of all elements that are direct or indirect children of the current element. If the current element is a <c>TABLE</c>, for example, <see cref="P:System.Windows.Forms.HtmlElement.All" /> will return every <c>TH</c>, <c>TR</c>, and <c>TD</c> element within the table, as well as any other elements, such as <c>DIV</c> and <c>SPAN</c> elements, contained within the cells.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.CanHaveChildren">
      <summary>Gets a value indicating whether this element can have child elements.</summary>
      <returns>
        <see langword="true" /> if element can have child elements; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.Children">
      <summary>Gets an <see cref="T:System.Windows.Forms.HtmlElementCollection" /> of all children of the current element.</summary>
      <returns>A collection of all <see cref="T:System.Windows.Forms.HtmlElement" /> objects that have the current element as a parent.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.ClientRectangle">
      <summary>Gets the bounds of the client area of the element in the HTML document.</summary>
      <returns>The client area occupied by the element, minus any area taken by borders and scroll bars. To obtain the position and dimensions of the element inclusive of its adornments, use <see cref="P:System.Windows.Forms.HtmlElement.OffsetRectangle" /> instead.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.Document">
      <summary>Gets the <see cref="T:System.Windows.Forms.HtmlDocument" /> to which this element belongs.</summary>
      <returns>The parent document of this element.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.DomElement">
      <summary>Gets an unmanaged interface pointer for this element.</summary>
      <returns>The COM <c>IUnknown</c> pointer for the element, which you can cast to one of the HTML element interfaces, such as <c>IHTMLElement</c>.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.Enabled">
      <summary>Gets or sets whether the user can input data into this element.</summary>
      <returns>
        <see langword="true" /> if the element allows user input; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.FirstChild">
      <summary>Gets the next element below this element in the document tree.</summary>
      <returns>An <see cref="T:System.Windows.Forms.HtmlElement" /> representing the first element contained underneath the current element, in source order.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.Id">
      <summary>Gets or sets a label by which to identify the element.</summary>
      <returns>The unique identifier for the element.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.InnerHtml">
      <summary>Gets or sets the HTML markup underneath this element.</summary>
      <exception cref="T:System.NotSupportedException">Creating child elements on this element is not allowed.</exception>
      <returns>The HTML markup that defines the child elements of the current element.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.InnerText">
      <summary>Gets or sets the text assigned to the element.</summary>
      <exception cref="T:System.NotSupportedException">The specified element cannot contain text (for example, an <c>IMG</c> element).</exception>
      <returns>The element's text, absent any HTML markup. If the element contains child elements, only the text in those child elements will be preserved.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.Name">
      <summary>Gets or sets the name of the element.</summary>
      <returns>A <see cref="T:System.String" /> representing the element's name.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.NextSibling">
      <summary>Gets the next element at the same level as this element in the document tree.</summary>
      <returns>An <see cref="T:System.Windows.Forms.HtmlElement" /> representing the element to the right of the current element.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.OffsetParent">
      <summary>Gets the element from which <see cref="P:System.Windows.Forms.HtmlElement.OffsetRectangle" /> is calculated.</summary>
      <returns>The element from which the offsets are calculated.  
  
 If an element's parent or another element in the element's hierarchy uses relative or absolute positioning, <see langword="OffsetParent" /> will be the first relatively or absolutely positioned element in which the current element is nested. If none of the elements above the current element are absolutely or relatively positioned, <see langword="OffsetParent" /> will be the <c>BODY</c> tag of the document.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.OffsetRectangle">
      <summary>Gets the location of an element relative to its parent.</summary>
      <returns>The x- and y-coordinate positions of the element, and its width and its height, in relation to its parent.  
  
 If an element's parent is relatively or absolutely positioned, <see cref="P:System.Windows.Forms.HtmlElement.OffsetRectangle" /> will return the offset of the parent element. If the element itself is relatively positioned with respect to its parent, <see cref="P:System.Windows.Forms.HtmlElement.OffsetRectangle" /> will return the offset from its parent.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.OuterHtml">
      <summary>Gets or sets the current element's HTML code.</summary>
      <returns>The HTML code for the current element and its children.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.OuterText">
      <summary>Gets or sets the current element's text.</summary>
      <exception cref="T:System.NotSupportedException">You cannot set text outside of this element.</exception>
      <returns>The text inside the current element, and in the element's children.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.Parent">
      <summary>Gets the current element's parent element.</summary>
      <returns>The element above the current element in the HTML document's hierarchy.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.ScrollLeft">
      <summary>Gets or sets the distance between the edge of the element and the left edge of its content.</summary>
      <returns>The distance, in pixels, between the left edge of the element and the left edge of its content.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.ScrollRectangle">
      <summary>Gets the dimensions of an element's scrollable region.</summary>
      <returns>The size and coordinate location of the scrollable area of an element.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.ScrollTop">
      <summary>Gets or sets the distance between the edge of the element and the top edge of its content.</summary>
      <returns>The distance, in pixels, between the top edge of the element and the top edge of its content.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.Style">
      <summary>Gets or sets a semicolon-delimited list of styles for the current element.</summary>
      <returns>A string consisting of all of the element's styles.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.TabIndex">
      <summary>Gets or sets the location of this element in the tab order.</summary>
      <returns>The numeric index of the element in the tab order.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElement.TagName">
      <summary>Gets the name of the HTML tag.</summary>
      <returns>The name used to create this element using HTML markup.</returns>
    </member>
    <member name="T:System.Windows.Forms.HtmlElementCollection">
      <summary>Defines a collection of <see cref="T:System.Windows.Forms.HtmlElement" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlElementCollection.GetElementsByName(System.String)">
      <summary>Gets a collection of elements by their name.</summary>
      <param name="name">The name or ID of the element.</param>
      <returns>An <see cref="T:System.Windows.Forms.HtmlElementCollection" /> containing the elements whose <see cref="P:System.Windows.Forms.HtmlElement.Name" /> property match <paramref name="name" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElementCollection.GetEnumerator">
      <summary>Returns an enumerator that iterates through a collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlElementCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
      <param name="dest">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from collection. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
      <param name="index">The zero-based index in <paramref name="dest" /> at which copying begins.</param>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementCollection.Count">
      <summary>Gets the number of elements in the collection.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the number of elements in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementCollection.Item(System.Int32)">
      <summary>Gets an item from the collection by specifying its numerical index.</summary>
      <param name="index">The position from which to retrieve an item from the collection.</param>
      <returns>An item from the collection by specifying its numerical index.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementCollection.Item(System.String)">
      <summary>Gets an item from the collection by specifying its name.</summary>
      <param name="elementId">The <see cref="P:System.Windows.Forms.HtmlElement.Name" /> or <see cref="P:System.Windows.Forms.HtmlElement.Id" /> attribute of the element.</param>
      <returns>An <see cref="T:System.Windows.Forms.HtmlElement" />, if the named element is found. Otherwise, <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the <see cref="T:System.Windows.Forms.HtmlElementCollection" /> is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.HtmlElementErrorEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.HtmlWindow.Error" /> event.</summary>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementErrorEventArgs.Description">
      <summary>Gets the descriptive string corresponding to the error.</summary>
      <returns>The descriptive string corresponding to the error.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementErrorEventArgs.Handled">
      <summary>Gets or sets whether this error has been handled by the application hosting the document.</summary>
      <returns>
        <see langword="true" /> if the event has been handled; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementErrorEventArgs.LineNumber">
      <summary>Gets the line of HTML script code on which the error occurred.</summary>
      <returns>An <see cref="T:System.Int32" /> designating the script line number.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementErrorEventArgs.Url">
      <summary>Gets the location of the document that generated the error.</summary>
      <returns>A <see cref="T:System.Uri" /> that represents the location of the document that generated the error.</returns>
    </member>
    <member name="T:System.Windows.Forms.HtmlElementErrorEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.HtmlWindow.Error" /> event of an <see cref="T:System.Windows.Forms.HtmlWindow" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.HtmlElementErrorEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.HtmlElementEventArgs">
      <summary>Provides data for the events defined on <see cref="T:System.Windows.Forms.HtmlDocument" /> and <see cref="T:System.Windows.Forms.HtmlElement" />.</summary>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.AltKeyPressed">
      <summary>Indicates whether the ALT key was pressed when this event occurred.</summary>
      <returns>
        <see langword="true" /> is the ALT key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.BubbleEvent">
      <summary>Gets or sets a value indicating whether the current event bubbles up through the element hierarchy of the HTML Document Object Model.</summary>
      <returns>
        <see langword="true" /> if the event bubbles; <see langword="false" /> if it does not.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.ClientMousePosition">
      <summary>Gets or sets the position of the mouse cursor in the document's client area.</summary>
      <returns>The current position of the mouse cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.CtrlKeyPressed">
      <summary>Indicates whether the CTRL key was pressed when this event occurred.</summary>
      <returns>
        <see langword="true" /> if the CTRL key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.EventType">
      <summary>Gets the name of the event that was raised.</summary>
      <returns>The name of the event.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.FromElement">
      <summary>Gets the <see cref="T:System.Windows.Forms.HtmlElement" /> the mouse pointer is moving away from.</summary>
      <returns>The <see cref="T:System.Windows.Forms.HtmlElement" /> the mouse pointer is moving away from.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.KeyPressedCode">
      <summary>Gets the ASCII value of the keyboard character typed in a <see cref="E:System.Windows.Forms.HtmlElement.KeyPress" />, <see cref="E:System.Windows.Forms.HtmlElement.KeyDown" />, or <see cref="E:System.Windows.Forms.HtmlElement.KeyUp" /> event.</summary>
      <returns>The ASCII value of the composed keyboard entry.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.MouseButtonsPressed">
      <summary>Gets the mouse button that was clicked during a <see cref="E:System.Windows.Forms.HtmlElement.MouseDown" /> or <see cref="E:System.Windows.Forms.HtmlElement.MouseUp" /> event.</summary>
      <returns>The mouse button that was clicked.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.MousePosition">
      <summary>Gets or sets the position of the mouse cursor relative to a relatively positioned parent element.</summary>
      <returns>The position of the mouse cursor relative to the upper-left corner of the parent of the element that raised the event, if the parent element is relatively positioned.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.OffsetMousePosition">
      <summary>Gets or sets the position of the mouse cursor relative to the element that raises the event.</summary>
      <returns>The mouse position relative to the element that raises the event.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.ReturnValue">
      <summary>Gets or sets the return value of the handled event.</summary>
      <returns>
        <see langword="true" /> if the event has been handled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.ShiftKeyPressed">
      <summary>Indicates whether the SHIFT key was pressed when this event occurred.</summary>
      <returns>
        <see langword="true" /> if the SHIFT key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlElementEventArgs.ToElement">
      <summary>Gets the <see cref="T:System.Windows.Forms.HtmlElement" /> toward which the user is moving the mouse pointer.</summary>
      <returns>The element toward which the mouse pointer is moving.</returns>
    </member>
    <member name="T:System.Windows.Forms.HtmlElementEventHandler">
      <summary>Represents the method that will handle the <see langword="Click" />, <see langword="MouseDown" /> and related events on <see cref="T:System.Windows.Forms.HtmlDocument" />, <see cref="T:System.Windows.Forms.HtmlElement" />, and <see cref="T:System.Windows.Forms.HtmlWindow" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.HtmlElementEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.HtmlElementInsertionOrientation">
      <summary>Defines values that describe where to insert a new element when using <see cref="M:System.Windows.Forms.HtmlElement.InsertAdjacentElement(System.Windows.Forms.HtmlElementInsertionOrientation,System.Windows.Forms.HtmlElement)" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.HtmlElementInsertionOrientation.AfterBegin">
      <summary>Insert the element after the current element, but before all other content in the current element.</summary>
    </member>
    <member name="F:System.Windows.Forms.HtmlElementInsertionOrientation.AfterEnd">
      <summary>Insert the element after the current element, but after all other content in the current element.</summary>
    </member>
    <member name="F:System.Windows.Forms.HtmlElementInsertionOrientation.BeforeBegin">
      <summary>Insert the element before the current element.</summary>
    </member>
    <member name="F:System.Windows.Forms.HtmlElementInsertionOrientation.BeforeEnd">
      <summary>Insert the element after the current element.</summary>
    </member>
    <member name="T:System.Windows.Forms.HtmlHistory">
      <summary>Manages the list of documents and Web sites the user has visited within the current session.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlHistory.Back(System.Int32)">
      <summary>Navigates backward in the navigation stack by the specified number of entries.</summary>
      <param name="numberBack">The number of entries to navigate backward in the navigation stack. This number must be a positive integer.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">Argument is not a positive 32-bit integer.</exception>
    </member>
    <member name="M:System.Windows.Forms.HtmlHistory.Dispose">
      <summary>Releases all resources used by the <see cref="T:System.Windows.Forms.HtmlHistory" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlHistory.Forward(System.Int32)">
      <summary>Navigates forward in the navigation stack by the specified number of entries.</summary>
      <param name="numberForward">The number of entries to navigate forward in the navigation stack. This number must be a positive integer.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">Argument is not a positive 32-bit integer.</exception>
    </member>
    <member name="M:System.Windows.Forms.HtmlHistory.Go(System.Int32)">
      <summary>Navigates to the specified relative position in the browser's history.</summary>
      <param name="relativePosition">The entry in the navigation stack you want to display.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlHistory.Go(System.String)">
      <summary>Navigates to the specified Uniform Resource Locator (URL).</summary>
      <param name="urlString">The URL you want to display. This may be a relative or virtual URL (for example, page.html, path/page.html, or /path/to/page.html), in which case the current Web page's URL is used as a base.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlHistory.Go(System.Uri)">
      <summary>Navigates to the specified Uniform Resource Locator (URL).</summary>
      <param name="url">The URL as a <see cref="T:System.Uri" /> object.</param>
    </member>
    <member name="P:System.Windows.Forms.HtmlHistory.DomHistory">
      <summary>Gets the unmanaged interface wrapped by this class.</summary>
      <returns>An <see cref="T:System.Object" /> that can be cast into an <see langword="IOmHistory" /> interface pointer.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlHistory.Length">
      <summary>Gets the size of the history stack.</summary>
      <returns>The current number of entries in the Uniform Resource Locator (URL) history.</returns>
    </member>
    <member name="T:System.Windows.Forms.HtmlWindow">
      <summary>Represents the logical window that contains one or more instances of <see cref="T:System.Windows.Forms.HtmlDocument" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlWindow.Error">
      <summary>Occurs when script running inside of the window encounters a run-time error.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlWindow.GotFocus">
      <summary>Occurs when the current window obtains user input focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlWindow.Load">
      <summary>Occurs when the window's document and all of its elements have finished initializing.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlWindow.LostFocus">
      <summary>Occurs when user input focus has left the window.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlWindow.Resize">
      <summary>Occurs when the user uses the mouse to change the dimensions of the window.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlWindow.Scroll">
      <summary>Occurs when the user scrolls through the window to view off-screen text.</summary>
    </member>
    <member name="E:System.Windows.Forms.HtmlWindow.Unload">
      <summary>Occurs when the current page is unloading, and a new page is about to be displayed.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Alert(System.String)">
      <summary>Displays a message box.</summary>
      <param name="message">The <see cref="T:System.String" /> to display in the message box.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.AttachEventHandler(System.String,System.EventHandler)">
      <summary>Adds an event handler for the named HTML DOM event.</summary>
      <param name="eventName">The name of the event you want to handle.</param>
      <param name="eventHandler">A reference to the managed code that handles the event.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Close">
      <summary>Closes the window.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Confirm(System.String)">
      <summary>Displays a dialog box with a message and buttons to solicit a yes/no response.</summary>
      <param name="message">The text to display to the user.</param>
      <returns>
        <see langword="true" /> if the user clicked Yes; <see langword="false" /> if the user clicked No or closed the dialog box.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.DetachEventHandler(System.String,System.EventHandler)">
      <summary>Removes the named event handler.</summary>
      <param name="eventName">The name of the event you want to handle.</param>
      <param name="eventHandler">A reference to the managed code that handles the event.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Equals(System.Object)">
      <summary>Tests the object for equality against the current object.</summary>
      <param name="obj">The object to test.</param>
      <returns>
        <see langword="true" /> if the objects are equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Focus">
      <summary>Puts the focus on the current window.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.GetHashCode">
      <summary>Serves as a hash function for a particular type.</summary>
      <returns>A hash code for the current <see cref="T:System.Windows.Forms.HtmlWindow" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.MoveTo(System.Drawing.Point)">
      <summary>Moves the window to the specified coordinates on the screen.</summary>
      <param name="point">The x- and y-coordinates of the window's upper-left corner.</param>
      <exception cref="T:System.UnauthorizedAccessException">The code trying to execute this operation does not have permission to manipulate this window.</exception>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.MoveTo(System.Int32,System.Int32)">
      <summary>Moves the window to the specified coordinates on the screen.</summary>
      <param name="x">The x-coordinate of the window's upper-left corner.</param>
      <param name="y">The y-coordinate of the window's upper-left corner.</param>
      <exception cref="T:System.UnauthorizedAccessException">The code trying to execute this operation does not have permission to manipulate this window.</exception>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Navigate(System.String)">
      <summary>Displays or downloads the new content located at the specified URL.</summary>
      <param name="urlString">The resource to display, described by a Uniform Resource Locator.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Navigate(System.Uri)">
      <summary>Displays a new document in the current window.</summary>
      <param name="url">The location, specified as a <see cref="T:System.Uri" />, of the document or object to display in the current window.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.op_Equality(System.Windows.Forms.HtmlWindow,System.Windows.Forms.HtmlWindow)">
      <summary>Tests the two <see cref="T:System.Windows.Forms.HtmlWindow" /> objects for equality.</summary>
      <param name="left">The first <see cref="T:System.Windows.Forms.HtmlWindow" /> object.</param>
      <param name="right">The second <see cref="T:System.Windows.Forms.HtmlWindow" /> object.</param>
      <returns>
        <see langword="true" /> if both parameters are <see langword="null" />, or if both elements have the same underlying COM interface; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.op_Inequality(System.Windows.Forms.HtmlWindow,System.Windows.Forms.HtmlWindow)">
      <summary>Tests two <see langword="HtmlWindow" /> objects for inequality.</summary>
      <param name="left">The first <see cref="T:System.Windows.Forms.HtmlWindow" /> object.</param>
      <param name="right">The second <see cref="T:System.Windows.Forms.HtmlWindow" /> object.</param>
      <returns>
        <see langword="true" /> if one but not both of the objects is <see langword="null" />, or the underlying COM pointers do not match; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Open(System.String,System.String,System.String,System.Boolean)">
      <summary>Displays a file in the named window.</summary>
      <param name="urlString">The Uniform Resource Locator that describes the location of the file to load.</param>
      <param name="target">The name of the window in which to open the resource. This may be a developer-supplied name, or one of the following special values:  
  
 <c>_blank</c>: Opens <paramref name="urlString" /> in a new window. Works the same as a call to <see cref="M:System.Windows.Forms.HtmlWindow.OpenNew(System.String,System.String)" />.  
  
 <c>_media</c>: Opens <paramref name="urlString" /> in the Media bar.  
  
 <c>_parent</c>: Opens <paramref name="urlString" /> in the window that created the current window.  
  
 <c>_search</c>: Opens <paramref name="urlString" /> in the Search bar.  
  
 <c>_self</c>: Opens <paramref name="urlString" /> in the current window.  
  
 <c>_top</c>: If called against a window belonging to a <c>FRAME</c> element, opens <paramref name="urlString" /> in the window hosting its <c>FRAMESET</c>. Otherwise, acts the same as <c>_self</c>.</param>
      <param name="windowOptions">A comma-delimited string consisting of zero or more of the following options in the form <c>name=value</c>. Except for the <c>left</c>, <c>top</c>, <c>height</c>, and <c>width</c> options, which take arbitrary integers, each option accepts <c>yes</c> or <see langword="1" />, and <c>no</c> or <see langword="0" />, as valid values.  
  
 <c>channelmode</c>: Used with the deprecated channels technology of Internet Explorer 4.0. Default is <c>no</c>.  
  
 <c>directories</c>: Whether the window should display directory navigation buttons. Default is <c>yes</c>.  
  
 <c>height</c>: The height of the window's client area, in pixels. The minimum is 100; attempts to open a window smaller than this will cause the window to open according to the Internet Explorer defaults.  
  
 <c>left</c>: The left (x-coordinate) position of the window, relative to the upper-left corner of the user's screen, in pixels. Must be a positive integer.  
  
 <c>location</c>: Whether to display the Address bar, which enables users to navigate the window to a new URL. Default is <c>yes</c>.  
  
 <c>menubar</c>: Whether to display menus on the new window. Default is <c>yes</c>.  
  
 <c>resizable</c>: Whether the window can be resized by the user. Default is <c>yes</c>.  
  
 <c>scrollbars</c>: Whether the window has horizontal and vertical scroll bars. Default is <c>yes</c>.  
  
 <c>status</c>: Whether the window has a status bar at the bottom. Default is <c>yes</c>.  
  
 <c>titlebar</c>: Whether the title of the current page is displayed. Setting this option to <c>no</c> has no effect within a managed application; the title bar will always appear.  
  
 <c>toolbar</c>: Whether toolbar buttons such as Back, Forward, and Stop are visible. Default is <c>yes</c>.  
  
 <c>top</c>: The top (y-coordinate) position of the window, relative to the upper-left corner of the user's screen, in pixels. Must be a positive integer.  
  
 <c>width</c>: The width of the window's client area, in pixels. The minimum is 100; attempts to open a window smaller than this will cause the window to open according to the Internet Explorer defaults.</param>
      <param name="replaceEntry">
        <see langword="true" /> to replace the current window's URL with <paramref name="urlString" /> in the navigation history. This will effect the operation of methods on the <see cref="T:System.Windows.Forms.HtmlHistory" /> class.</param>
      <returns>The new window, or the previously created window named by the <paramref name="target" /> parameter.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Open(System.Uri,System.String,System.String,System.Boolean)">
      <summary>Displays a file in the named window.</summary>
      <param name="url">The Uniform Resource Locator that describes the location of the file to load.</param>
      <param name="target">The name of the window in which to open the resource. This can be a developer-supplied name, or one of the following special values:  
  
 <c>_blank</c>: Opens <paramref name="url" /> in a new window. Works the same as a call to <see cref="M:System.Windows.Forms.HtmlWindow.OpenNew(System.String,System.String)" />.  
  
 <c>_media</c>: Opens <paramref name="url" /> in the Media bar.  
  
 <c>_parent</c>: Opens <paramref name="url" /> in the window that created the current window.  
  
 <c>_search</c>: Opens <paramref name="url" /> in the Search bar.  
  
 <c>_self</c>: Opens <paramref name="url" /> in the current window.  
  
 <c>_top</c>: If called against a window belonging to a <c>FRAME</c> element, opens <paramref name="url" /> in the window hosting its <c>FRAMESET</c>. Otherwise, acts the same as <c>_self</c>.</param>
      <param name="windowOptions">A comma-delimited string consisting of zero or more of the following options in the form <c>name=value</c>. Except for the <c>left</c>, <c>top</c>, <c>height</c>, and <c>width</c> options, which take arbitrary integers, each option accepts <c>yes</c> or <see langword="1" />, and <c>no</c> or <see langword="0" />, as valid values.  
  
 <c>channelmode</c>: Used with the deprecated channels technology of Internet Explorer 4.0. Default is <c>no</c>.  
  
 <c>directories</c>: Whether the window should display directory navigation buttons. Default is <c>yes</c>.  
  
 <c>height</c>: The height of the window's client area, in pixels. The minimum is 100; attempts to open a window smaller than this will cause the window to open according to the Internet Explorer defaults.  
  
 <c>left</c>: The left (x-coordinate) position of the window, relative to the upper-left corner of the user's screen, in pixels. Must be a positive integer.  
  
 <c>location</c>: Whether to display the Address bar, which enables users to navigate the window to a new URL. Default is <c>yes</c>.  
  
 <c>menubar</c>: Whether to display menus on the new window. Default is <c>yes</c>.  
  
 <c>resizable</c>: Whether the window can be resized by the user. Default is <c>yes</c>.  
  
 <c>scrollbars</c>: Whether the window has horizontal and vertical scroll bars. Default is <c>yes</c>.  
  
 <c>status</c>: Whether the window has a status bar at the bottom. Default is <c>yes</c>.  
  
 <c>titlebar</c>: Whether the title of the current page is displayed. Setting this option to <c>no</c> has no effect within a managed application; the title bar will always appear.  
  
 <c>toolbar</c>: Whether toolbar buttons such as Back, Forward, and Stop are visible. Default is <c>yes</c>.  
  
 <c>top</c>: The top (y-coordinate) position of the window, relative to the upper-left corner of the user's screen, in pixels. Must be a positive integer.  
  
 <c>width</c>: The width of the window's client area, in pixels. The minimum is 100; attempts to open a window smaller than this will cause the window to open according to the Internet Explorer defaults.</param>
      <param name="replaceEntry">
        <see langword="true" /> to replace the current window's URL with <paramref name="url" /> in the navigation history. This will affect the operation of methods on the <see cref="T:System.Windows.Forms.HtmlHistory" /> class.</param>
      <returns>An <see cref="T:System.Windows.Forms.HtmlWindow" /> representing the new window, or the previously created window named by the <paramref name="target" /> parameter.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.OpenNew(System.String,System.String)">
      <summary>Displays a file in a new window.</summary>
      <param name="urlString">The Uniform Resource Locator that describes the location of the file to load.</param>
      <param name="windowOptions">A comma-delimited string consisting of zero or more of the following options in the form <c>name=value</c>. See <see cref="M:System.Windows.Forms.HtmlWindow.Open(System.String,System.String,System.String,System.Boolean)" /> for a full description of the valid options.</param>
      <returns>An <see cref="T:System.Windows.Forms.HtmlWindow" /> representing the new window.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.OpenNew(System.Uri,System.String)">
      <summary>Displays a file in a new window.</summary>
      <param name="url">The Uniform Resource Locator that describes the location of the file to load.</param>
      <param name="windowOptions">A comma-delimited string consisting of zero or more of the following options in the form <c>name=value</c>. See <see cref="M:System.Windows.Forms.HtmlWindow.Open(System.String,System.String,System.String,System.Boolean)" /> for a full description of the valid options.</param>
      <returns>An <see cref="T:System.Windows.Forms.HtmlWindow" /> representing the new window.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.Prompt(System.String,System.String)">
      <summary>Shows a dialog box that displays a message and a text box to the user.</summary>
      <param name="message">The message to display to the user.</param>
      <param name="defaultInputValue">The default value displayed in the text box.</param>
      <returns>A <see cref="T:System.String" /> representing the text entered by the user.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.RemoveFocus">
      <summary>Takes focus off of the current window.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.ResizeTo(System.Drawing.Size)">
      <summary>Changes the size of the window to the specified dimensions.</summary>
      <param name="size">A <see cref="T:System.Drawing.Size" /> describing the desired width and height of the window, in pixels. Must be 100 pixels or more in both dimensions.</param>
      <exception cref="T:System.UnauthorizedAccessException">The window you are trying to resize is in a different domain than its parent window. This restriction is part of cross-frame scripting security.</exception>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.ResizeTo(System.Int32,System.Int32)">
      <summary>Changes the size of the window to the specified dimensions.</summary>
      <param name="width">Describes the desired width of the window, in pixels. Must be 100 pixels or more.</param>
      <param name="height">Describes the desired height of the window, in pixels. Must be 100 pixels or more.</param>
      <exception cref="T:System.UnauthorizedAccessException">The window you are trying to resize is in a different domain than its parent window. This restriction is part of cross-frame scripting security; for more information, see About Cross-Frame Scripting and Security.</exception>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.ScrollTo(System.Drawing.Point)">
      <summary>Moves the window to the specified coordinates.</summary>
      <param name="point">The x- and y-coordinates, relative to the top-left corner of the current window, toward which the page should scroll.</param>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindow.ScrollTo(System.Int32,System.Int32)">
      <summary>Scrolls the window to the designated position.</summary>
      <param name="x">The x-coordinate, relative to the top-left corner of the current window, toward which the page should scroll.</param>
      <param name="y">The y-coordinate, relative to the top-left corner of the current window, toward which the page should scroll.</param>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.Document">
      <summary>Gets the HTML document contained within the window.</summary>
      <returns>A valid instance of <see cref="T:System.Windows.Forms.HtmlDocument" />, if a document is loaded. If this window contains a <c>FRAMESET</c>, or no document is currently loaded, it will return <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.DomWindow">
      <summary>Gets the unmanaged interface wrapped by this class.</summary>
      <returns>An object that can be cast to an <see langword="IHTMLWindow2" />, <see langword="IHTMLWindow3" />, or <see langword="IHTMLWindow4" /> pointer.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.Frames">
      <summary>Gets a reference to each of the <c>FRAME</c> elements defined within the Web page.</summary>
      <returns>An <see cref="T:System.Windows.Forms.HtmlWindowCollection" /> of a document's <c>FRAME</c> and <c>IFRAME</c> objects.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.History">
      <summary>Gets an object containing the user's most recently visited URLs.</summary>
      <returns>The <see cref="T:System.Windows.Forms.HtmlHistory" /> for the current window.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.IsClosed">
      <summary>Gets a value indicating whether this window is open or closed.</summary>
      <returns>
        <see langword="true" /> if the window is still open on the screen; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.Name">
      <summary>Gets or sets the name of the window.</summary>
      <returns>A <see cref="T:System.String" /> representing the name.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.Opener">
      <summary>Gets a reference to the window that opened the current window.</summary>
      <returns>The <see cref="T:System.Windows.Forms.HtmlWindow" /> that was created by a call to the <see cref="M:System.Windows.Forms.HtmlWindow.Open(System.String,System.String,System.String,System.Boolean)" /> or <see cref="M:System.Windows.Forms.HtmlWindow.OpenNew(System.String,System.String)" /> methods. If the window was not created using one of these methods, this property returns <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.Parent">
      <summary>Gets the window which resides above the current one in a page containing frames.</summary>
      <returns>The <see cref="T:System.Windows.Forms.HtmlWindow" /> that owns the current window. If the current window is not a <c>FRAME</c>, or is not embedded inside of a <c>FRAME</c>, it returns <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.Position">
      <summary>Gets the position of the window's client area on the screen.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> describing the x -and y-coordinates of the top-left corner of the screen, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.Size">
      <summary>Gets or sets the size of the current window.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> describing the size of the window in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.StatusBarText">
      <summary>Gets or sets the text displayed in the status bar of a window.</summary>
      <returns>A <see cref="T:System.String" /> containing the current status text.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.Url">
      <summary>Gets the URL corresponding to the current item displayed in the window.</summary>
      <returns>A <see cref="T:System.Uri" /> describing the URL.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindow.WindowFrameElement">
      <summary>Gets the frame element corresponding to this window.</summary>
      <returns>An <see cref="T:System.Windows.Forms.HtmlElement" /> corresponding to this window's <c>FRAME</c> element. If this window is not a frame, it returns <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.HtmlWindowCollection">
      <summary>Represents the windows contained within another <see cref="T:System.Windows.Forms.HtmlWindow" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindowCollection.GetEnumerator">
      <summary>Returns an enumerator that can iterate through all elements in the <see cref="T:System.Windows.Forms.HtmlWindowCollection" />.</summary>
      <returns>The <see cref="T:System.Collections.IEnumerator" /> that enables enumeration of this collection's elements.</returns>
    </member>
    <member name="M:System.Windows.Forms.HtmlWindowCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
      <param name="dest">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from collection. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
      <param name="index">The zero-based index in <see langword="Array" /> at which copying begins.</param>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindowCollection.Count">
      <summary>Gets the number of elements in the collection.</summary>
      <returns>The number of <see cref="T:System.Windows.Forms.HtmlWindow" /> objects in the current <see cref="T:System.Windows.Forms.HtmlWindowCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindowCollection.Item(System.Int32)">
      <summary>Retrieves a frame window by supplying the frame's position in the collection.</summary>
      <param name="index">The position of the <see cref="T:System.Windows.Forms.HtmlWindow" /> within the collection.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is greater than the number of items in the collection.</exception>
      <returns>The <see cref="T:System.Windows.Forms.HtmlWindow" /> corresponding to the requested frame.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindowCollection.Item(System.String)">
      <summary>Retrieves a frame window by supplying the frame's name.</summary>
      <param name="windowId">The name of the <see cref="T:System.Windows.Forms.HtmlWindow" /> to retrieve.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="windowId" /> is not the name of a <see langword="Frame" /> object in the current document or in any of its children.</exception>
      <returns>The <see cref="T:System.Windows.Forms.HtmlWindow" /> element corresponding to the supplied name.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindowCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.HtmlWindowCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An object that can be used to synchronize access to the collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.IBindableComponent">
      <summary>Enables a non-control component to emulate the data-binding behavior of a Windows Forms control.</summary>
    </member>
    <member name="P:System.Windows.Forms.IBindableComponent.BindingContext">
      <summary>Gets or sets the collection of currency managers for the <see cref="T:System.Windows.Forms.IBindableComponent" />.</summary>
      <returns>The collection of <see cref="T:System.Windows.Forms.BindingManagerBase" /> objects for this <see cref="T:System.Windows.Forms.IBindableComponent" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.IBindableComponent.DataBindings">
      <summary>Gets the collection of data-binding objects for this <see cref="T:System.Windows.Forms.IBindableComponent" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ControlBindingsCollection" /> for this <see cref="T:System.Windows.Forms.IBindableComponent" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.IButtonControl">
      <summary>Allows a control to act like a button on a form.</summary>
    </member>
    <member name="M:System.Windows.Forms.IButtonControl.NotifyDefault(System.Boolean)">
      <summary>Notifies a control that it is the default button so that its appearance and behavior is adjusted accordingly.</summary>
      <param name="value">
        <see langword="true" /> if the control should behave as a default button; otherwise <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.IButtonControl.PerformClick">
      <summary>Generates a <see cref="E:System.Windows.Forms.Control.Click" /> event for the control.</summary>
    </member>
    <member name="P:System.Windows.Forms.IButtonControl.DialogResult">
      <summary>Gets or sets the value returned to the parent form when the button is clicked.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.ICommandExecutor">
      <summary>Defines a method that executes a certain action on the type that implements this interface.</summary>
    </member>
    <member name="M:System.Windows.Forms.ICommandExecutor.Execute">
      <summary>Performs a task that is determined by the type that implements this method.</summary>
    </member>
    <member name="T:System.Windows.Forms.IComponentEditorPageSite">
      <summary>The site for a <see cref="T:System.Windows.Forms.Design.ComponentEditorPage" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.IComponentEditorPageSite.GetControl">
      <summary>Returns the parent control for the page window.</summary>
      <returns>The parent control for the page window.</returns>
    </member>
    <member name="M:System.Windows.Forms.IComponentEditorPageSite.SetDirty">
      <summary>Notifies the site that the editor is in a modified state.</summary>
    </member>
    <member name="T:System.Windows.Forms.IContainerControl">
      <summary>Provides the functionality for a control to act as a parent for other controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.IContainerControl.ActivateControl(System.Windows.Forms.Control)">
      <summary>Activates a specified control.</summary>
      <param name="active">The <see cref="T:System.Windows.Forms.Control" /> being activated.</param>
      <returns>
        <see langword="true" /> if the control is successfully activated; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.IContainerControl.ActiveControl">
      <summary>Gets or sets the control that is active on the container control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that is currently active on the container control.</returns>
    </member>
    <member name="T:System.Windows.Forms.ICurrencyManagerProvider">
      <summary>Provides custom binding management for components.</summary>
    </member>
    <member name="M:System.Windows.Forms.ICurrencyManagerProvider.GetRelatedCurrencyManager(System.String)">
      <summary>Gets the <see cref="T:System.Windows.Forms.CurrencyManager" /> for this <see cref="T:System.Windows.Forms.ICurrencyManagerProvider" /> and the specified data member.</summary>
      <param name="dataMember">The name of the column or list, within the data source, to obtain the <see cref="T:System.Windows.Forms.CurrencyManager" /> for.</param>
      <returns>The related <see cref="T:System.Windows.Forms.CurrencyManager" /> obtained from this <see cref="T:System.Windows.Forms.ICurrencyManagerProvider" /> and the specified data member.</returns>
    </member>
    <member name="P:System.Windows.Forms.ICurrencyManagerProvider.CurrencyManager">
      <summary>Gets the <see cref="T:System.Windows.Forms.CurrencyManager" /> associated with this <see cref="T:System.Windows.Forms.ICurrencyManagerProvider" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.CurrencyManager" /> associated with this <see cref="T:System.Windows.Forms.ICurrencyManagerProvider" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.IDataGridColumnStyleEditingNotificationService">
      <summary>Provides an editing notification interface.</summary>
    </member>
    <member name="M:System.Windows.Forms.IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing(System.Windows.Forms.Control)">
      <summary>Informs the <see cref="T:System.Windows.Forms.DataGrid" /> that the user has begun editing the column.</summary>
      <param name="editingControl">The <see cref="T:System.Windows.Forms.Control" /> that is editing the column.</param>
    </member>
    <member name="T:System.Windows.Forms.IDataGridViewEditingCell">
      <summary>Defines common functionality for a cell that allows the manipulation of its value.</summary>
    </member>
    <member name="M:System.Windows.Forms.IDataGridViewEditingCell.GetEditingCellFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Retrieves the formatted value of the cell.</summary>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the context in which the data is needed.</param>
      <returns>An <see cref="T:System.Object" /> that represents the formatted version of the cell contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataGridViewEditingCell.PrepareEditingCellForEdit(System.Boolean)">
      <summary>Prepares the currently selected cell for editing.</summary>
      <param name="selectAll">
        <see langword="true" /> to select the cell contents; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.IDataGridViewEditingCell.EditingCellFormattedValue">
      <summary>Gets or sets the formatted value of the cell.</summary>
      <returns>An <see cref="T:System.Object" /> that contains the cell's value.</returns>
    </member>
    <member name="P:System.Windows.Forms.IDataGridViewEditingCell.EditingCellValueChanged">
      <summary>Gets or sets a value indicating whether the value of the cell has changed.</summary>
      <returns>
        <see langword="true" /> if the value of the cell has changed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.IDataGridViewEditingControl">
      <summary>Defines common functionality for controls that are hosted within cells of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.IDataGridViewEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle)">
      <summary>Changes the control's user interface (UI) to be consistent with the specified cell style.</summary>
      <param name="dataGridViewCellStyle">The <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to use as the model for the UI.</param>
    </member>
    <member name="M:System.Windows.Forms.IDataGridViewEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys,System.Boolean)">
      <summary>Determines whether the specified key is a regular input key that the editing control should process or a special key that the <see cref="T:System.Windows.Forms.DataGridView" /> should process.</summary>
      <param name="keyData">A <see cref="T:System.Windows.Forms.Keys" /> that represents the key that was pressed.</param>
      <param name="dataGridViewWantsInputKey">
        <see langword="true" /> when the <see cref="T:System.Windows.Forms.DataGridView" /> wants to process the <see cref="T:System.Windows.Forms.Keys" /> in <paramref name="keyData" />; otherwise, <see langword="false" />.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key that should be handled by the editing control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataGridViewEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts)">
      <summary>Retrieves the formatted value of the cell.</summary>
      <param name="context">A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the context in which the data is needed.</param>
      <returns>An <see cref="T:System.Object" /> that represents the formatted version of the cell contents.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataGridViewEditingControl.PrepareEditingControlForEdit(System.Boolean)">
      <summary>Prepares the currently selected cell for editing.</summary>
      <param name="selectAll">
        <see langword="true" /> to select all of the cell's content; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.IDataGridViewEditingControl.EditingControlDataGridView">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.DataGridView" /> that contains the cell.</summary>
      <returns>The <see cref="T:System.Windows.Forms.DataGridView" /> that contains the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is being edited; <see langword="null" /> if there is no associated <see cref="T:System.Windows.Forms.DataGridView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.IDataGridViewEditingControl.EditingControlFormattedValue">
      <summary>Gets or sets the formatted value of the cell being modified by the editor.</summary>
      <returns>An <see cref="T:System.Object" /> that represents the formatted value of the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.IDataGridViewEditingControl.EditingControlRowIndex">
      <summary>Gets or sets the index of the hosting cell's parent row.</summary>
      <returns>The index of the row that contains the cell, or -1 if there is no parent row.</returns>
    </member>
    <member name="P:System.Windows.Forms.IDataGridViewEditingControl.EditingControlValueChanged">
      <summary>Gets or sets a value indicating whether the value of the editing control differs from the value of the hosting cell.</summary>
      <returns>
        <see langword="true" /> if the value of the control differs from the cell value; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.IDataGridViewEditingControl.EditingPanelCursor">
      <summary>Gets the cursor used when the mouse pointer is over the <see cref="P:System.Windows.Forms.DataGridView.EditingPanel" /> but not over the editing control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Cursor" /> that represents the mouse pointer used for the editing panel.</returns>
    </member>
    <member name="P:System.Windows.Forms.IDataGridViewEditingControl.RepositionEditingControlOnValueChange">
      <summary>Gets or sets a value indicating whether the cell contents need to be repositioned whenever the value changes.</summary>
      <returns>
        <see langword="true" /> if the contents need to be repositioned; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.IDataObject">
      <summary>Provides a format-independent mechanism for transferring data.</summary>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.GetData(System.String)">
      <summary>Retrieves the data associated with the specified data format.</summary>
      <param name="format">The format of the data to retrieve. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <returns>The data associated with the specified format, or <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.GetData(System.String,System.Boolean)">
      <summary>Retrieves the data associated with the specified data format, using a Boolean to determine whether to convert the data to the format.</summary>
      <param name="format">The format of the data to retrieve. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="autoConvert">
        <see langword="true" /> to convert the data to the specified format; otherwise, <see langword="false" />.</param>
      <returns>The data associated with the specified format, or <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.GetData(System.Type)">
      <summary>Retrieves the data associated with the specified class type format.</summary>
      <param name="format">A <see cref="T:System.Type" /> representing the format of the data to retrieve. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <returns>The data associated with the specified format, or <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.GetDataPresent(System.String)">
      <summary>Determines whether data stored in this instance is associated with, or can be converted to, the specified format.</summary>
      <param name="format">The format for which to check. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <returns>
        <see langword="true" /> if data stored in this instance is associated with, or can be converted to, the specified format; otherwise <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.GetDataPresent(System.String,System.Boolean)">
      <summary>Determines whether data stored in this instance is associated with the specified format, using a Boolean value to determine whether to convert the data to the format.</summary>
      <param name="format">The format for which to check. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="autoConvert">
        <see langword="true" /> to determine whether data stored in this instance can be converted to the specified format; <see langword="false" /> to check whether the data is in the specified format.</param>
      <returns>
        <see langword="true" /> if the data is in, or can be converted to, the specified format; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.GetDataPresent(System.Type)">
      <summary>Determines whether data stored in this instance is associated with, or can be converted to, the specified format.</summary>
      <param name="format">A <see cref="T:System.Type" /> representing the format for which to check. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <returns>
        <see langword="true" /> if data stored in this instance is associated with, or can be converted to, the specified format; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.GetFormats">
      <summary>Returns a list of all formats that data stored in this instance is associated with or can be converted to.</summary>
      <returns>An array of the names that represents a list of all formats that are supported by the data stored in this object.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.GetFormats(System.Boolean)">
      <summary>Gets a list of all formats that data stored in this instance is associated with or can be converted to, using a Boolean value to determine whether to retrieve all formats that the data can be converted to or only native data formats.</summary>
      <param name="autoConvert">
        <see langword="true" /> to retrieve all formats that data stored in this instance is associated with or can be converted to; <see langword="false" /> to retrieve only native data formats.</param>
      <returns>An array of the names that represents a list of all formats that are supported by the data stored in this object.</returns>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.SetData(System.Object)">
      <summary>Stores the specified data in this instance, using the class of the data for the format.</summary>
      <param name="data">The data to store.</param>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.SetData(System.String,System.Boolean,System.Object)">
      <summary>Stores the specified data and its associated format in this instance, using a Boolean value to specify whether the data can be converted to another format.</summary>
      <param name="format">The format associated with the data. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="autoConvert">
        <see langword="true" /> to allow the data to be converted to another format; otherwise, <see langword="false" />.</param>
      <param name="data">The data to store.</param>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.SetData(System.String,System.Object)">
      <summary>Stores the specified data and its associated format in this instance.</summary>
      <param name="format">The format associated with the data. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="data">The data to store.</param>
    </member>
    <member name="M:System.Windows.Forms.IDataObject.SetData(System.Type,System.Object)">
      <summary>Stores the specified data and its associated class type in this instance.</summary>
      <param name="format">A <see cref="T:System.Type" /> representing the format associated with the data. See <see cref="T:System.Windows.Forms.DataFormats" /> for predefined formats.</param>
      <param name="data">The data to store.</param>
    </member>
    <member name="T:System.Windows.Forms.IDropTarget">
      <summary>Defines mouse events.</summary>
    </member>
    <member name="M:System.Windows.Forms.IDropTarget.OnDragDrop(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragDrop" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.IDropTarget.OnDragEnter(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragEnter" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.IDropTarget.OnDragLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.IDropTarget.OnDragOver(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DragOver" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.IFeatureSupport">
      <summary>Specifies a standard interface for retrieving feature information from the current system.</summary>
    </member>
    <member name="M:System.Windows.Forms.IFeatureSupport.GetVersionPresent(System.Object)">
      <summary>Retrieves the version of the specified feature.</summary>
      <param name="feature">The feature whose version is requested.</param>
      <returns>A <see cref="T:System.Version" /> representing the version number of the specified feature; or <see langword="null" /> if the feature is not installed.</returns>
    </member>
    <member name="M:System.Windows.Forms.IFeatureSupport.IsPresent(System.Object)">
      <summary>Determines whether any version of the specified feature is currently available on the system.</summary>
      <param name="feature">The feature to look for.</param>
      <returns>
        <see langword="true" /> if the feature is present; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.IFeatureSupport.IsPresent(System.Object,System.Version)">
      <summary>Determines whether the specified or newer version of the specified feature is currently available on the system.</summary>
      <param name="feature">The feature to look for.</param>
      <param name="minimumVersion">A <see cref="T:System.Version" /> representing the minimum version number of the feature to look for.</param>
      <returns>
        <see langword="true" /> if the requested version of the feature is present; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.IFileReaderService">
      <summary>Defines a method that opens a file from the current directory.</summary>
    </member>
    <member name="M:System.Windows.Forms.IFileReaderService.OpenFileFromSource(System.String)">
      <summary>Opens a file from the current directory.</summary>
      <param name="relativePath">The file to open.</param>
      <returns>A stream of the specified file.</returns>
    </member>
    <member name="T:System.Windows.Forms.ImageIndexConverter">
      <summary>Provides a type converter to convert data for an image index to and from a string.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageIndexConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ImageIndexConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageIndexConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the specified value object to a 32-bit signed integer object.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> to provide locale information.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <exception cref="T:System.Exception">The conversion could not be performed.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageIndexConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the specified object to the specified destination type.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that provides locale information.</param>
      <param name="value">The object to convert, typically an index represented as an <see cref="T:System.Int32" />.</param>
      <param name="destinationType">The type to convert the object to, often a <see cref="T:System.String" />.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="destinationType" /> is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">The specified <paramref name="value" /> could not be converted to the specified <paramref name="destinationType" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Returns a collection of standard index values for the image list associated with the specified format context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <returns>A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> that holds a standard set of valid index values. If no image list is found, this collection will contain a single object with a value of -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageIndexConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines if the list of standard values returned from the <see cref="Overload:System.Windows.Forms.ImageIndexConverter.GetStandardValues" /> method is an exclusive list.</summary>
      <param name="context">A formatter context.</param>
      <returns>
        <see langword="true" /> if the <see cref="Overload:System.Windows.Forms.ImageIndexConverter.GetStandardValues" /> method returns an exclusive list of valid values; otherwise, <see langword="false" />. This implementation always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageIndexConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines if the type converter supports a standard set of values that can be picked from a list.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="Overload:System.Windows.Forms.ImageIndexConverter.GetStandardValues" /> method returns a standard set of values; otherwise, <see langword="false" />. Always returns <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageIndexConverter.IncludeNoneAsStandardValue">
      <summary>Gets a value that indicates whether a <see langword="none" /> or <see langword="null" /> value is valid in the <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> collection.</summary>
      <returns>
        <see langword="true" /> if a <see langword="none" /> or <see langword="null" /> value is valid in the standard values collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ImageKeyConverter">
      <summary>Provides a type converter to convert data for an image key to and from another data type.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageKeyConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ImageKeyConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageKeyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns whether this converter can convert an object of the given type to a string using the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="sourceType">A <see cref="T:System.Type" /> that specifies the type you want to convert from.</param>
      <returns>
        <see langword="true" /> to indicate the specified conversion can be performed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageKeyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts from the specified object to a string.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> to provide locale information.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageKeyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the given object to the specified type.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that provides locale information.</param>
      <param name="value">The object to convert, typically an image key.</param>
      <param name="destinationType">The type to convert the object to.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destinationType" /> is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">The specified <paramref name="value" /> could not be converted to the specified <paramref name="destinationType" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageKeyConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Returns a collection of standard image keys for the image list associated with the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <returns>A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> that contains the standard set of image key values.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageKeyConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines whether the list of standard values for the <see cref="T:System.Windows.Forms.ImageKeyConverter" /> is exclusive (that is, whether it allows values other than those returned by <see cref="Overload:System.Windows.Forms.ImageKeyConverter.GetStandardValues" />).</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <returns>
        <see langword="true" /> to indicate the list does not allow additional values; otherwise, <see langword="false" />. Always returns <see langword="true" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageKeyConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines whether this type converter supports a standard set of values that can be picked from a list.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <returns>
        <see langword="true" /> to indicate a list of standard values is supported; otherwise, <see langword="false" />. Always returns <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageKeyConverter.IncludeNoneAsStandardValue">
      <summary>Gets or sets a value indicating whether <see langword="null" /> is valid in the <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> collection.</summary>
      <returns>
        <see langword="true" /> in all cases, indicating <see langword="null" /> is valid in the standard values collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.ImageLayout">
      <summary>Specifies the position of the image on the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImageLayout.Center">
      <summary>The image is centered within the control's client rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImageLayout.None">
      <summary>The image is left-aligned at the top across the control's client rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImageLayout.Stretch">
      <summary>The image is stretched across the control's client rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImageLayout.Tile">
      <summary>The image is tiled across the control's client rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImageLayout.Zoom">
      <summary>The image is enlarged within the control's client rectangle.</summary>
    </member>
    <member name="T:System.Windows.Forms.ImageList">
      <summary>Provides methods to manage a collection of <see cref="T:System.Drawing.Image" /> objects. This class cannot be inherited.</summary>
    </member>
    <member name="E:System.Windows.Forms.ImageList.RecreateHandle">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ImageList.Handle" /> is recreated.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageList.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ImageList" /> class with default values for <see cref="P:System.Windows.Forms.ImageList.ColorDepth" />, <see cref="P:System.Windows.Forms.ImageList.ImageSize" />, and <see cref="P:System.Windows.Forms.ImageList.TransparentColor" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageList.#ctor(System.ComponentModel.IContainer)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ImageList" /> class, associating it with a container.</summary>
      <param name="container">An object implementing <see cref="T:System.ComponentModel.IContainer" /> to associate with this instance of <see cref="T:System.Windows.Forms.ImageList" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics,System.Drawing.Point,System.Int32)">
      <summary>Draws the image indicated by the specified index on the specified <see cref="T:System.Drawing.Graphics" /> at the given location.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="pt">The location defined by a <see cref="T:System.Drawing.Point" /> at which to draw the image.</param>
      <param name="index">The index of the image in the <see cref="T:System.Windows.Forms.ImageList" /> to draw.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index is less than 0.  
  
 -or-  
  
 The index is greater than or equal to the count of images in the image list.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32)">
      <summary>Draws the image indicated by the given index on the specified <see cref="T:System.Drawing.Graphics" /> at the specified location.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The horizontal position at which to draw the image.</param>
      <param name="y">The vertical position at which to draw the image.</param>
      <param name="index">The index of the image in the <see cref="T:System.Windows.Forms.ImageList" /> to draw.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index is less than 0.  
  
 -or-  
  
 The index is greater than or equal to the count of images in the image list.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Draws the image indicated by the given index on the specified <see cref="T:System.Drawing.Graphics" /> using the specified location and size.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> to draw on.</param>
      <param name="x">The horizontal position at which to draw the image.</param>
      <param name="y">The vertical position at which to draw the image.</param>
      <param name="width">The width, in pixels, of the destination image.</param>
      <param name="height">The height, in pixels, of the destination image.</param>
      <param name="index">The index of the image in the <see cref="T:System.Windows.Forms.ImageList" /> to draw.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index is less than 0.  
  
 -or-  
  
 The index is greater than or equal to the count of images in the image list.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.ImageList" />.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.ImageList" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ColorDepth">
      <summary>Gets or sets the color depth of the image list.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The color depth is not a valid <see cref="T:System.Windows.Forms.ColorDepth" /> enumeration value.</exception>
      <returns>The number of available colors for the image. In .NET Framework and .NET (Core) versions through .NET 7, the default is <see cref="F:System.Windows.Forms.ColorDepth.Depth8Bit" />. In .NET 8 and later versions, the default is <see cref="F:System.Windows.Forms.ColorDepth.Depth32Bit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.Handle">
      <summary>Gets the handle of the image list object.</summary>
      <exception cref="T:System.InvalidOperationException">Creating the handle for the <see cref="T:System.Windows.Forms.ImageList" /> failed.</exception>
      <returns>The handle for the image list. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.HandleCreated">
      <summary>Gets a value indicating whether the underlying Win32 handle has been created.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.ImageList.Handle" /> has been created; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.Images">
      <summary>Gets the <see cref="T:System.Windows.Forms.ImageList.ImageCollection" /> for this image list.</summary>
      <returns>The collection of images.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageSize">
      <summary>Gets or sets the size of the images in the image list.</summary>
      <exception cref="T:System.ArgumentException">The value assigned is equal to <see cref="P:System.Drawing.Size.IsEmpty" />.  
  
 -or-  
  
 The value of the height or width is less than or equal to 0.  
  
 -or-  
  
 The value of the height or width is greater than 256.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The new size has a dimension less than 0 or greater than 256.</exception>
      <returns>The <see cref="T:System.Drawing.Size" /> that defines the height and width, in pixels, of the images in the list. The default size is 16 by 16. The maximum size is 256 by 256.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageStream">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ImageListStreamer" /> associated with this image list.</summary>
      <returns>
        <see langword="null" /> if the image list is empty; otherwise, a <see cref="T:System.Windows.Forms.ImageListStreamer" /> for this <see cref="T:System.Windows.Forms.ImageList" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.Tag">
      <summary>Gets or sets an object that contains additional data about the <see cref="T:System.Windows.Forms.ImageList" />.</summary>
      <returns>An <see cref="T:System.Object" /> that contains additional data about the <see cref="T:System.Windows.Forms.ImageList" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.TransparentColor">
      <summary>Gets or sets the color to treat as transparent.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values. The default is <see langword="Transparent" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ImageList.ImageCollection">
      <summary>Encapsulates the collection of <see cref="T:System.Drawing.Image" /> objects in an <see cref="T:System.Windows.Forms.ImageList" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Icon)">
      <summary>Adds the specified icon to the <see cref="T:System.Windows.Forms.ImageList" />.</summary>
      <param name="value">An <see cref="T:System.Drawing.Icon" /> to add to the list.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />  
  
 -or-  
  
 value is not an <see cref="T:System.Drawing.Icon" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Image)">
      <summary>Adds the specified image to the <see cref="T:System.Windows.Forms.ImageList" />.</summary>
      <param name="value">A <see cref="T:System.Drawing.Bitmap" /> of the image to add to the list.</param>
      <exception cref="T:System.ArgumentNullException">The image being added is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The image being added is not a <see cref="T:System.Drawing.Bitmap" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Image,System.Drawing.Color)">
      <summary>Adds the specified image to the <see cref="T:System.Windows.Forms.ImageList" />, using the specified color to generate the mask.</summary>
      <param name="value">A <see cref="T:System.Drawing.Bitmap" /> of the image to add to the list.</param>
      <param name="transparentColor">The <see cref="T:System.Drawing.Color" /> to mask this image.</param>
      <exception cref="T:System.ArgumentNullException">The image being added is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The image being added is not a <see cref="T:System.Drawing.Bitmap" />.</exception>
      <returns>The index of the newly added image, or -1 if the image cannot be added.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.Add(System.String,System.Drawing.Icon)">
      <summary>Adds an icon with the specified key to the end of the collection.</summary>
      <param name="key">The name of the icon.</param>
      <param name="icon">The <see cref="T:System.Drawing.Icon" /> to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="icon" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.Add(System.String,System.Drawing.Image)">
      <summary>Adds an image with the specified key to the end of the collection.</summary>
      <param name="key">The name of the image.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="image" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.AddRange(System.Drawing.Image[])">
      <summary>Adds an array of images to the collection.</summary>
      <param name="images">The array of <see cref="T:System.Drawing.Image" /> objects to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="images" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.AddStrip(System.Drawing.Image)">
      <summary>Adds an image strip for the specified image to the <see cref="T:System.Windows.Forms.ImageList" />.</summary>
      <param name="value">A <see cref="T:System.Drawing.Bitmap" /> with the images to add.</param>
      <exception cref="T:System.ArgumentException">The image being added is <see langword="null" />.  
  
 -or-  
  
 The image being added is not a <see cref="T:System.Drawing.Bitmap" />.</exception>
      <exception cref="T:System.InvalidOperationException">The image cannot be added.  
  
 -or-  
  
 The width of image strip being added is 0, or the width is not equal to the existing image width.  
  
 -or-  
  
 The image strip height is not equal to existing image height.</exception>
      <returns>The index of the newly added image, or -1 if the image cannot be added.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.Clear">
      <summary>Removes all the images and masks from the <see cref="T:System.Windows.Forms.ImageList" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.Contains(System.Drawing.Image)">
      <summary>Not supported. The <see cref="M:System.Collections.IList.Contains(System.Object)" /> method indicates whether a specified object is contained in the list.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to find in the list.</param>
      <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
      <returns>
        <see langword="true" /> if the image is found in the list; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.ContainsKey(System.String)">
      <summary>Determines if the collection contains an image with the specified key.</summary>
      <param name="key">The key of the image to search for.</param>
      <returns>
        <see langword="true" /> to indicate an image with the specified key is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the item collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the item collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.IndexOf(System.Drawing.Image)">
      <summary>Not supported. The <see cref="M:System.Collections.IList.IndexOf(System.Object)" /> method returns the index of a specified object in the list.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to find in the list.</param>
      <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
      <returns>The index of the image in the list.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.IndexOfKey(System.String)">
      <summary>Determines the index of the first occurrence of an image with the specified key in the collection.</summary>
      <param name="key">The key of the image to retrieve the index for.</param>
      <returns>The zero-based index of the first occurrence of an image with the specified key in the collection, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.Remove(System.Drawing.Image)">
      <summary>Not supported. The <see cref="M:System.Collections.IList.Remove(System.Object)" /> method removes a specified object from the list.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to remove from the list.</param>
      <exception cref="T:System.NotSupportedException">This method is not supported.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.RemoveAt(System.Int32)">
      <summary>Removes an image from the list.</summary>
      <param name="index">The index of the image to remove.</param>
      <exception cref="T:System.InvalidOperationException">The image cannot be removed.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The index value was less than 0.  
  
 -or-  
  
 The index value is greater than or equal to the <see cref="P:System.Windows.Forms.ImageList.ImageCollection.Count" /> of images.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.RemoveByKey(System.String)">
      <summary>Removes the image with the specified key from the collection.</summary>
      <param name="key">The key of the image to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.SetKeyName(System.Int32,System.String)">
      <summary>Sets the key for an image in the collection.</summary>
      <param name="index">The zero-based index of an image in the collection.</param>
      <param name="name">The name of the image to be set as the image key.</param>
      <exception cref="T:System.IndexOutOfRangeException">The specified index is less than 0 or greater than or equal to <see cref="P:System.Windows.Forms.ImageList.ImageCollection.Count" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the items in this collection to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
      <param name="dest">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the <see cref="T:System.Array" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dest" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="dest" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.ComboBox.ObjectCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination array.</exception>
      <exception cref="T:System.InvalidCastException">The type of the <see cref="T:System.Windows.Forms.ComboBox.ObjectCollection" /> cannot be cast automatically to the type of the destination array.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds the specified image to the <see cref="T:System.Windows.Forms.ImageList" />.</summary>
      <param name="value">The image to add to the list.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="value" /> is not a <see cref="T:System.Drawing.Bitmap" />.</exception>
      <returns>The index of the newly added image, or -1 if the image could not be added.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Contains(System.Object)" /> method. Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Collections.IList" />.</param>
      <exception cref="T:System.NotSupportedException">In all cases.</exception>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.IndexOf(System.Object)" /> method. Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Collections.IList" />.</param>
      <exception cref="T:System.NotSupportedException">In all cases.</exception>
      <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" /> method. Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The object to insert into the collection.</param>
      <exception cref="T:System.NotSupportedException">In all cases.</exception>
    </member>
    <member name="M:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Implements the <see cref="M:System.Collections.IList.Remove(System.Object)" />. Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
      <param name="value">The object to remove from the <see cref="T:System.Collections.IList" />.</param>
      <exception cref="T:System.NotSupportedException">In all cases.</exception>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.Count">
      <summary>Gets the number of images currently in the list.</summary>
      <returns>The number of images in the list. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.Empty">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ImageList" /> has any images.</summary>
      <returns>
        <see langword="true" /> if there are no images in the list; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.IsReadOnly">
      <summary>Gets a value indicating whether the list is read-only.</summary>
      <returns>Always <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.Item(System.Int32)">
      <summary>Gets or sets an <see cref="T:System.Drawing.Image" /> at the specified index within the collection.</summary>
      <param name="index">The index of the image to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index is less than 0 or greater than or equal to <see cref="P:System.Windows.Forms.ImageList.ImageCollection.Count" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="image" /> is not a <see cref="T:System.Drawing.Bitmap" />.</exception>
      <exception cref="T:System.ArgumentNullException">The image to be assigned is <see langword="null" /> or not a <see cref="T:System.Drawing.Bitmap" />.</exception>
      <exception cref="T:System.InvalidOperationException">The image cannot be added to the list.</exception>
      <returns>The image in the list specified by <paramref name="index" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.Item(System.String)">
      <summary>Gets an <see cref="T:System.Drawing.Image" /> with the specified key from the collection.</summary>
      <param name="key">The name of the image to retrieve from the collection.</param>
      <returns>The <see cref="T:System.Drawing.Image" /> with the specified key.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.Keys">
      <summary>Gets the collection of keys associated with the images in the <see cref="T:System.Windows.Forms.ImageList.ImageCollection" />.</summary>
      <returns>A <see cref="T:System.Collections.Specialized.StringCollection" /> containing the names of the images in the <see cref="T:System.Windows.Forms.ImageList.ImageCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>The object used to synchronize the <see cref="T:System.Windows.Forms.ImageList.ImageCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ImageList.ImageCollection" /> has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImageList.ImageCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets an image in an existing <see cref="T:System.Windows.Forms.ImageList.ImageCollection" />.</summary>
      <param name="index">The zero-based index of the image to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index is less than 0 or greater than or equal to <see cref="P:System.Windows.Forms.ImageList.ImageCollection.Count" />.</exception>
      <exception cref="T:System.Exception">The attempt to replace the image failed.</exception>
      <exception cref="T:System.ArgumentNullException">The image to be assigned is <see langword="null" /> or not a bitmap.</exception>
      <returns>The image in the list specified by the index.</returns>
    </member>
    <member name="T:System.Windows.Forms.ImageListStreamer">
      <summary>Provides the data portion of an <see cref="T:System.Windows.Forms.ImageList" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageListStreamer.Dispose">
      <summary>Releases all resources used by the current instance of the <see cref="T:System.Windows.Forms.ImageListStreamer" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImageListStreamer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
      <param name="si">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
      <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that is the destination for this serialization.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> cannot be populated with data because no data exists, or it is not in the correct format.</exception>
    </member>
    <member name="T:System.Windows.Forms.ImeContext">
      <summary>Contains static methods that interact directly with the IME API.</summary>
    </member>
    <member name="M:System.Windows.Forms.ImeContext.Disable(System.IntPtr)">
      <summary>Disables the specified IME.</summary>
      <param name="handle">A pointer to the IME to disable.</param>
    </member>
    <member name="M:System.Windows.Forms.ImeContext.Enable(System.IntPtr)">
      <summary>Enables the specified IME.</summary>
      <param name="handle">A pointer to the IME to enable.</param>
    </member>
    <member name="M:System.Windows.Forms.ImeContext.GetImeMode(System.IntPtr)">
      <summary>Returns the <see cref="T:System.Windows.Forms.ImeMode" /> of the specified IME.</summary>
      <param name="handle">A pointer to the IME to query.</param>
      <returns>The <see cref="T:System.Windows.Forms.ImeMode" /> of the specified IME.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImeContext.IsOpen(System.IntPtr)">
      <summary>Returns a value that indicates whether the specified IME is open.</summary>
      <param name="handle">A pointer to the IME to query.</param>
      <returns>
        <see langword="true" /> if the specified IME is open; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ImeContext.SetImeStatus(System.Windows.Forms.ImeMode,System.IntPtr)">
      <summary>Sets the status of the specified IME.</summary>
      <param name="imeMode">The status to set.</param>
      <param name="handle">A pointer to the IME to set status of.</param>
    </member>
    <member name="M:System.Windows.Forms.ImeContext.SetOpenStatus(System.Boolean,System.IntPtr)">
      <summary>Opens or closes the IME context.</summary>
      <param name="open">
        <see langword="true" /> to open the IME or <see langword="false" /> to close it.</param>
      <param name="handle">A pointer to the IME to open or close.</param>
    </member>
    <member name="T:System.Windows.Forms.ImeMode">
      <summary>Specifies a value that determines the Input Method Editor (IME) status of an object when the object is selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.Alpha">
      <summary>Alphanumeric single-byte characters(SBC). This setting is valid for Korean and Japanese IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.AlphaFull">
      <summary>Alphanumeric double-byte characters. This setting is valid for Korean and Japanese IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.Close">
      <summary>IME closed. This setting is valid for Chinese IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.Disable">
      <summary>The IME is disabled. With this setting, the users cannot turn the IME on from the keyboard, and the IME floating window is hidden.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.Hangul">
      <summary>Hangul SBC. This setting is valid for the Korean IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.HangulFull">
      <summary>Hangul DBC. This setting is valid for the Korean IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.Hiragana">
      <summary>Hiragana DBC. This setting is valid for the Japanese IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.Inherit">
      <summary>Inherits the IME mode of the parent control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.Katakana">
      <summary>Katakana DBC. This setting is valid for the Japanese IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.KatakanaHalf">
      <summary>Katakana SBC. This setting is valid for the Japanese IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.NoControl">
      <summary>None (Default).</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.Off">
      <summary>The IME is off. This mode indicates that the IME is off, meaning that the object behaves the same as English entry mode. This setting is valid for Japanese, Simplified Chinese, and Traditional Chinese IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.On">
      <summary>The IME is on. This value indicates that the IME is on and characters specific to Chinese or Japanese can be entered. This setting is valid for Japanese, Simplified Chinese, and Traditional Chinese IME only.</summary>
    </member>
    <member name="F:System.Windows.Forms.ImeMode.OnHalf">
      <summary>IME on HalfShape. This setting is valid for Chinese IME only.</summary>
    </member>
    <member name="T:System.Windows.Forms.ImeModeConversion">
      <summary>Helper class that provides information about the IME conversion mode.</summary>
    </member>
    <member name="P:System.Windows.Forms.ImeModeConversion.ImeModeConversionBits">
      <summary>Gets a dictionary that contains the conversion mode flags corresponding to each <see cref="T:System.Windows.Forms.ImeMode" />.</summary>
      <returns>A dictionary that contains the flags to <see cref="T:System.Windows.Forms.ImeMode" /> mapping.</returns>
    </member>
    <member name="P:System.Windows.Forms.ImeModeConversion.IsCurrentConversionTableSupported">
      <summary>Gets a value that indicates whether the current language table is supported.</summary>
      <returns>
        <see langword="true" /> if the language table is supported; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.IMessageFilter">
      <summary>Defines a message filter interface.</summary>
    </member>
    <member name="M:System.Windows.Forms.IMessageFilter.PreFilterMessage(System.Windows.Forms.Message@)">
      <summary>Filters out a message before it is dispatched.</summary>
      <param name="m">The message to be dispatched. You cannot modify this message.</param>
      <returns>
        <see langword="true" /> to filter the message and stop it from being dispatched; <see langword="false" /> to allow the message to continue to the next filter or control.</returns>
    </member>
    <member name="T:System.Windows.Forms.InputLanguage">
      <summary>Provides methods and fields to manage the input language. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.InputLanguage.Equals(System.Object)">
      <summary>Specifies whether two input languages are equal.</summary>
      <param name="value">The language to test for equality.</param>
      <returns>
        <see langword="true" /> if the two languages are equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.InputLanguage.FromCulture(System.Globalization.CultureInfo)">
      <summary>Returns the input language associated with the specified culture.</summary>
      <param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to convert from.</param>
      <returns>An <see cref="T:System.Windows.Forms.InputLanguage" /> that represents the previously selected input language.</returns>
    </member>
    <member name="M:System.Windows.Forms.InputLanguage.GetHashCode">
      <summary>Returns the hash code for this input language.</summary>
      <returns>The hash code for this input language.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguage.Culture">
      <summary>Gets the culture of the current input language.</summary>
      <returns>A <see cref="T:System.Globalization.CultureInfo" /> that represents the culture of the current input language.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguage.CurrentInputLanguage">
      <summary>Gets or sets the input language for the current thread.</summary>
      <exception cref="T:System.ArgumentException">The input language is not recognized by the system.</exception>
      <returns>An <see cref="T:System.Windows.Forms.InputLanguage" /> that represents the input language for the current thread.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguage.DefaultInputLanguage">
      <summary>Gets the default input language for the system.</summary>
      <returns>An <see cref="T:System.Windows.Forms.InputLanguage" /> representing the default input language for the system.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguage.Handle">
      <summary>Gets the handle for the input language.</summary>
      <returns>An <see cref="T:System.IntPtr" /> that represents the handle of this input language.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguage.InstalledInputLanguages">
      <summary>Gets a list of all installed input languages.</summary>
      <returns>An array of <see cref="T:System.Windows.Forms.InputLanguage" /> objects that represent the input languages installed on the computer.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguage.LayoutName">
      <summary>Gets the name of the current keyboard layout as it appears in the regional settings of the operating system on the computer.</summary>
      <returns>The name of the layout.</returns>
    </member>
    <member name="T:System.Windows.Forms.InputLanguageChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Form.InputLanguageChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.InputLanguageChangedEventArgs.#ctor(System.Globalization.CultureInfo,System.Byte)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.InputLanguageChangedEventArgs" /> class with the specified locale and character set.</summary>
      <param name="culture">The locale of the input language.</param>
      <param name="charSet">The character set associated with the new input language.</param>
      <exception cref="T:System.ArgumentException">.NET 5 and later: An <see cref="T:System.Windows.Forms.InputLanguage" /> cannot be retrieved for <paramref name="culture" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.InputLanguageChangedEventArgs.#ctor(System.Windows.Forms.InputLanguage,System.Byte)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.InputLanguageChangedEventArgs" /> class with the specified input language and character set.</summary>
      <param name="inputLanguage">The input language.</param>
      <param name="charSet">The character set associated with the new input language.</param>
    </member>
    <member name="P:System.Windows.Forms.InputLanguageChangedEventArgs.CharSet">
      <summary>Gets the character set associated with the new input language.</summary>
      <returns>An 8-bit unsigned integer that corresponds to the character set, as shown in the following table.  
  
 <list type="table"><listheader><term> Character Set</term><description> Value</description></listheader><item><term> ANSI_CHARSET</term><description> 0</description></item><item><term> DEFAULT_CHARSET</term><description> 1</description></item><item><term> SYMBOL_CHARSET</term><description> 2</description></item><item><term> MAC_CHARSET</term><description> 77</description></item><item><term> SHIFTJI_CHARSET</term><description> 128</description></item><item><term> HANGEUL_CHARSET</term><description> 129</description></item><item><term> HANGUL_CHARSET</term><description> 129</description></item><item><term> JOHAB_CHARSET</term><description> 130</description></item><item><term> GB2312_CHARSET</term><description> 134</description></item><item><term> CHINESEBIG5_CHARSET</term><description> 136</description></item><item><term> GREEK_CHARSET</term><description> 161</description></item><item><term> TURKISH_CHARSET</term><description> 162</description></item><item><term> VIETNAMESE_CHARSET</term><description> 163</description></item><item><term> HEBREW_CHARSET</term><description> 177</description></item><item><term> ARABIC_CHARSET</term><description> 178</description></item><item><term> BALTIC_CHARSET</term><description> 186</description></item><item><term> RUSSIAN_CHARSET</term><description> 204</description></item><item><term> THAI_CHARSET</term><description> 222</description></item><item><term> EASTEUROPE_CHARSET</term><description> 238</description></item><item><term> OEM_CHARSET</term><description> 255</description></item></list></returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguageChangedEventArgs.Culture">
      <summary>Gets the locale of the input language.</summary>
      <returns>A <see cref="T:System.Globalization.CultureInfo" /> that specifies the locale of the input language.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguageChangedEventArgs.InputLanguage">
      <summary>Gets a value indicating the input language.</summary>
      <returns>The input language associated with the object.</returns>
    </member>
    <member name="T:System.Windows.Forms.InputLanguageChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Form.InputLanguageChanged" /> event of a <see cref="T:System.Windows.Forms.Form" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.InputLanguageChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.InputLanguageChangingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Form.InputLanguageChanging" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.InputLanguageChangingEventArgs.#ctor(System.Globalization.CultureInfo,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.InputLanguageChangingEventArgs" /> class with the specified locale, character set, and acceptance.</summary>
      <param name="culture">The locale of the requested input language.</param>
      <param name="sysCharSet">
        <see langword="true" /> if the system default font supports the character set required for the requested input language; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.InputLanguageChangingEventArgs.#ctor(System.Windows.Forms.InputLanguage,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.InputLanguageChangingEventArgs" /> class with the specified input language, character set, and acceptance of a language change.</summary>
      <param name="inputLanguage">The requested input language.</param>
      <param name="sysCharSet">
        <see langword="true" /> if the system default font supports the character set required for the requested input language; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="inputLanguage" /> is <see langword="null" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.InputLanguageChangingEventArgs.Culture">
      <summary>Gets the locale of the requested input language.</summary>
      <returns>A <see cref="T:System.Globalization.CultureInfo" /> that specifies the locale of the requested input language.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguageChangingEventArgs.InputLanguage">
      <summary>Gets a value indicating the input language.</summary>
      <returns>The input language.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguageChangingEventArgs.SysCharSet">
      <summary>Gets a value indicating whether the system default font supports the character set required for the requested input language.</summary>
      <returns>
        <see langword="true" /> if the system default font supports the character set required for the requested input language; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.InputLanguageChangingEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Form.InputLanguageChanging" /> event of a <see cref="T:System.Windows.Forms.Form" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.InputLanguageChangingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.InputLanguageCollection">
      <summary>Stores <see cref="T:System.Windows.Forms.InputLanguage" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.InputLanguageCollection.Contains(System.Windows.Forms.InputLanguage)">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.InputLanguageCollection" /> contains the specified <see cref="T:System.Windows.Forms.InputLanguage" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.InputLanguage" /> to locate.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.InputLanguage" /> is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.InputLanguageCollection.CopyTo(System.Windows.Forms.InputLanguage[],System.Int32)">
      <summary>Copies the <see cref="T:System.Windows.Forms.InputLanguageCollection" /> values to a one-dimensional <see cref="T:System.Array" /> at the specified index.</summary>
      <param name="array">The one-dimensional array that is the destination of the values copied from <see cref="T:System.Windows.Forms.InputLanguageCollection" />.</param>
      <param name="index">The index in <paramref name="array" /> where copying begins.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> specifies a multidimensional array.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.InputLanguageCollection" /> is greater than the available space between the <paramref name="index" /> and the end of <paramref name="array" />.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than the lower bound of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.InputLanguageCollection.IndexOf(System.Windows.Forms.InputLanguage)">
      <summary>Returns the index of an <see cref="T:System.Windows.Forms.InputLanguage" /> in the <see cref="T:System.Windows.Forms.InputLanguageCollection" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.InputLanguage" /> to locate.</param>
      <returns>The index of the <see cref="T:System.Windows.Forms.InputLanguage" /> in the <see cref="T:System.Windows.Forms.InputLanguageCollection" />, if found; otherwise, -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.InputLanguageCollection.Item(System.Int32)">
      <summary>Gets the entry at the specified index of the <see cref="T:System.Windows.Forms.InputLanguageCollection" />.</summary>
      <param name="index">The zero-based index of the entry to locate in the collection.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is outside the valid range of indexes for the collection.</exception>
      <returns>The <see cref="T:System.Windows.Forms.InputLanguage" /> at the specified index of the collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.InsertKeyMode">
      <summary>Represents the insertion mode used by text boxes.</summary>
    </member>
    <member name="F:System.Windows.Forms.InsertKeyMode.Default">
      <summary>Honors the current INSERT key mode of the keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.InsertKeyMode.Insert">
      <summary>Indicates that the insertion mode is enabled regardless of the INSERT key mode of the keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.InsertKeyMode.Overwrite">
      <summary>Indicates that the overwrite mode is enabled regardless of the INSERT key mode of the keyboard.</summary>
    </member>
    <member name="T:System.Windows.Forms.InvalidateEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.Invalidated" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.InvalidateEventArgs.#ctor(System.Drawing.Rectangle)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.InvalidateEventArgs" /> class.</summary>
      <param name="invalidRect">The <see cref="T:System.Drawing.Rectangle" /> that contains the invalidated window area.</param>
    </member>
    <member name="P:System.Windows.Forms.InvalidateEventArgs.InvalidRect">
      <summary>Gets the <see cref="T:System.Drawing.Rectangle" /> that contains the invalidated window area.</summary>
      <returns>The invalidated window area.</returns>
    </member>
    <member name="T:System.Windows.Forms.InvalidateEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.Invalidated" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.InvalidateEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ItemActivation">
      <summary>Specifies the user action that is required to activate items in a list view control and the feedback that is given as the user moves the mouse pointer over an item.</summary>
    </member>
    <member name="F:System.Windows.Forms.ItemActivation.OneClick">
      <summary>The user must single-click to activate items. The cursor changes to a hand pointer cursor, and the item text changes color as the user moves the mouse pointer over the item.</summary>
    </member>
    <member name="F:System.Windows.Forms.ItemActivation.Standard">
      <summary>The user must double-click to activate items. No feedback is given as the user moves the mouse pointer over an item.</summary>
    </member>
    <member name="F:System.Windows.Forms.ItemActivation.TwoClick">
      <summary>The user must click an item twice to activate it. This is different from the standard double-click because the two clicks can have any duration between them. The item text changes color as the user moves the mouse pointer over the item.</summary>
    </member>
    <member name="T:System.Windows.Forms.ItemBoundsPortion">
      <summary>Specifies a portion of the list view item from which to retrieve the bounding rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.ItemBoundsPortion.Entire">
      <summary>The bounding rectangle of the entire item, including the icon, the item text, and the subitem text (if displayed), should be retrieved.</summary>
    </member>
    <member name="F:System.Windows.Forms.ItemBoundsPortion.Icon">
      <summary>The bounding rectangle of the icon or small icon should be retrieved.</summary>
    </member>
    <member name="F:System.Windows.Forms.ItemBoundsPortion.ItemOnly">
      <summary>The bounding rectangle of the icon or small icon and the item text should be retrieved. In all views except the details view of the <see cref="T:System.Windows.Forms.ListView" />, this value specifies the same bounding rectangle as the <see langword="Entire" /> value. In details view, this value specifies the bounding rectangle specified by the <see langword="Entire" /> value without the subitems. If the <see cref="P:System.Windows.Forms.ListView.CheckBoxes" /> property is set to <see langword="true" />, this property does not include the area of the check boxes in its bounding rectangle. To include the entire item, including the check boxes, use the <see langword="Entire" /> value when calling the <see cref="M:System.Windows.Forms.ListView.GetItemRect(System.Int32)" /> method.</summary>
    </member>
    <member name="F:System.Windows.Forms.ItemBoundsPortion.Label">
      <summary>The bounding rectangle of the item text should be retrieved.</summary>
    </member>
    <member name="T:System.Windows.Forms.ItemChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.CurrencyManager.ItemChanged" /> event.</summary>
    </member>
    <member name="P:System.Windows.Forms.ItemChangedEventArgs.Index">
      <summary>Indicates the position of the item being changed within the list.</summary>
      <returns>The zero-based index to the item being changed.</returns>
    </member>
    <member name="T:System.Windows.Forms.ItemChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.CurrencyManager.ItemChanged" /> event of the <see cref="T:System.Windows.Forms.CurrencyManager" /> class.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.ItemChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ItemCheckedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.ItemChecked" /> event of the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ItemCheckedEventArgs.#ctor(System.Windows.Forms.ListViewItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ItemCheckedEventArgs" /> class.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ListViewItem" /> that is being checked or unchecked.</param>
    </member>
    <member name="P:System.Windows.Forms.ItemCheckedEventArgs.Item">
      <summary>Gets the <see cref="T:System.Windows.Forms.ListViewItem" /> whose checked state is changing.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> whose checked state is changing.</returns>
    </member>
    <member name="T:System.Windows.Forms.ItemCheckedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.ItemChecked" /> event of a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ItemCheckEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ItemCheckEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.CheckedListBox.ItemCheck" /> event of the <see cref="T:System.Windows.Forms.CheckedListBox" /> and <see cref="T:System.Windows.Forms.ListView" /> controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.ItemCheckEventArgs.#ctor(System.Int32,System.Windows.Forms.CheckState,System.Windows.Forms.CheckState)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ItemCheckEventArgs" /> class.</summary>
      <param name="index">The zero-based index of the item to change.</param>
      <param name="newCheckValue">One of the <see cref="T:System.Windows.Forms.CheckState" /> values that indicates whether to change the check box for the item to be checked, unchecked, or indeterminate.</param>
      <param name="currentValue">One of the <see cref="T:System.Windows.Forms.CheckState" /> values that indicates whether the check box for the item is currently checked, unchecked, or indeterminate.</param>
    </member>
    <member name="P:System.Windows.Forms.ItemCheckEventArgs.CurrentValue">
      <summary>Gets a value indicating the current state of the item's check box.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.CheckState" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ItemCheckEventArgs.Index">
      <summary>Gets the zero-based index of the item to change.</summary>
      <returns>The zero-based index of the item to change.</returns>
    </member>
    <member name="P:System.Windows.Forms.ItemCheckEventArgs.NewValue">
      <summary>Gets or sets a value indicating whether to set the check box for the item to be checked, unchecked, or indeterminate.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.CheckState" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.ItemCheckEventHandler">
      <summary>Represents the method that will handle the <see langword="ItemCheck" /> event of a <see cref="T:System.Windows.Forms.CheckedListBox" /> or <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.ItemCheckEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ItemDragEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.ItemDrag" /> event of the <see cref="T:System.Windows.Forms.ListView" /> and <see cref="T:System.Windows.Forms.TreeView" /> controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.ItemDragEventArgs.#ctor(System.Windows.Forms.MouseButtons)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ItemDragEventArgs" /> class with a specified mouse button.</summary>
      <param name="button">A bitwise combination of <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicates which mouse buttons were pressed.</param>
    </member>
    <member name="M:System.Windows.Forms.ItemDragEventArgs.#ctor(System.Windows.Forms.MouseButtons,System.Object)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ItemDragEventArgs" /> class with a specified mouse button and the item that is being dragged.</summary>
      <param name="button">A bitwise combination of <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicates which mouse buttons were pressed.</param>
      <param name="item">The item being dragged.</param>
    </member>
    <member name="P:System.Windows.Forms.ItemDragEventArgs.Button">
      <summary>Gets a value that indicates which mouse buttons were pressed during the drag operation.</summary>
      <returns>A bitwise combination of <see cref="T:System.Windows.Forms.MouseButtons" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ItemDragEventArgs.Item">
      <summary>Gets the item that is being dragged.</summary>
      <returns>An object that represents the item being dragged.</returns>
    </member>
    <member name="T:System.Windows.Forms.ItemDragEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.ItemDrag" /> event of a <see cref="T:System.Windows.Forms.ListView" /> or <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.ItemDragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.IWin32Window">
      <summary>Provides an interface to expose Win32 HWND handles.</summary>
    </member>
    <member name="P:System.Windows.Forms.IWin32Window.Handle">
      <summary>Gets the handle to the window represented by the implementer.</summary>
      <returns>A handle to the window represented by the implementer.</returns>
    </member>
    <member name="T:System.Windows.Forms.IWindowTarget">
      <summary>Defines the communication layer between a control and the Windows API.</summary>
    </member>
    <member name="M:System.Windows.Forms.IWindowTarget.OnHandleChange(System.IntPtr)">
      <summary>Sets the handle of the <see cref="T:System.Windows.Forms.IWindowTarget" /> to the specified handle.</summary>
      <param name="newHandle">The new handle of the <see cref="T:System.Windows.Forms.IWindowTarget" />.</param>
    </member>
    <member name="M:System.Windows.Forms.IWindowTarget.OnMessage(System.Windows.Forms.Message@)">
      <summary>Processes the Windows messages.</summary>
      <param name="m">The Windows message to process.</param>
    </member>
    <member name="T:System.Windows.Forms.KeyEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.KeyDown" /> or <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.KeyEventArgs.#ctor(System.Windows.Forms.Keys)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.KeyEventArgs" /> class.</summary>
      <param name="keyData">A <see cref="T:System.Windows.Forms.Keys" /> representing the key that was pressed, combined with any modifier flags that indicate which CTRL, SHIFT, and ALT keys were pressed at the same time. Possible values are obtained by applying the bitwise OR (|) operator to constants from the <see cref="T:System.Windows.Forms.Keys" /> enumeration.</param>
    </member>
    <member name="P:System.Windows.Forms.KeyEventArgs.Alt">
      <summary>Gets a value indicating whether the ALT key was pressed.</summary>
      <returns>
        <see langword="true" /> if the ALT key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.KeyEventArgs.Control">
      <summary>Gets a value indicating whether the CTRL key was pressed.</summary>
      <returns>
        <see langword="true" /> if the CTRL key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.KeyEventArgs.Handled">
      <summary>Gets or sets a value indicating whether the event was handled.</summary>
      <returns>
        <see langword="true" /> to bypass the control's default handling; otherwise, <see langword="false" /> to also pass the event along to the default control handler.</returns>
    </member>
    <member name="P:System.Windows.Forms.KeyEventArgs.KeyCode">
      <summary>Gets the keyboard code for a <see cref="E:System.Windows.Forms.Control.KeyDown" /> or <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Keys" /> value that is the key code for the event.</returns>
    </member>
    <member name="P:System.Windows.Forms.KeyEventArgs.KeyData">
      <summary>Gets the key data for a <see cref="E:System.Windows.Forms.Control.KeyDown" /> or <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Keys" /> representing the key code for the key that was pressed, combined with modifier flags that indicate which combination of CTRL, SHIFT, and ALT keys was pressed at the same time.</returns>
    </member>
    <member name="P:System.Windows.Forms.KeyEventArgs.KeyValue">
      <summary>Gets the keyboard value for a <see cref="E:System.Windows.Forms.Control.KeyDown" /> or <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <returns>The integer representation of the <see cref="P:System.Windows.Forms.KeyEventArgs.KeyCode" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.KeyEventArgs.Modifiers">
      <summary>Gets the modifier flags for a <see cref="E:System.Windows.Forms.Control.KeyDown" /> or <see cref="E:System.Windows.Forms.Control.KeyUp" /> event. The flags indicate which combination of CTRL, SHIFT, and ALT keys was pressed.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Keys" /> value representing one or more modifier flags.</returns>
    </member>
    <member name="P:System.Windows.Forms.KeyEventArgs.Shift">
      <summary>Gets a value indicating whether the SHIFT key was pressed.</summary>
      <returns>
        <see langword="true" /> if the SHIFT key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.KeyEventArgs.SuppressKeyPress">
      <summary>Gets or sets a value indicating whether the key event should be passed on to the underlying control.</summary>
      <returns>
        <see langword="true" /> if the key event should not be sent to the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.KeyEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.KeyUp" /> or <see cref="E:System.Windows.Forms.Control.KeyDown" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.KeyPressEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.KeyPressEventArgs.#ctor(System.Char)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> class.</summary>
      <param name="keyChar">The ASCII character corresponding to the key the user pressed.</param>
    </member>
    <member name="P:System.Windows.Forms.KeyPressEventArgs.Handled">
      <summary>Gets or sets a value indicating whether the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event was handled.</summary>
      <returns>
        <see langword="true" /> if the event is handled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.KeyPressEventArgs.KeyChar">
      <summary>Gets or sets the character corresponding to the key pressed.</summary>
      <returns>The ASCII character that is composed. For example, if the user presses SHIFT + K, this property returns an uppercase K.</returns>
    </member>
    <member name="T:System.Windows.Forms.KeyPressEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.Keys">
      <summary>Specifies key codes and modifiers.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.A">
      <summary>The A key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Add">
      <summary>The add key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Alt">
      <summary>The ALT modifier key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Apps">
      <summary>The application key (Microsoft Natural Keyboard).</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Attn">
      <summary>The ATTN key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.B">
      <summary>The B key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Back">
      <summary>The BACKSPACE key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.BrowserBack">
      <summary>The browser back key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.BrowserFavorites">
      <summary>The browser favorites key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.BrowserForward">
      <summary>The browser forward key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.BrowserHome">
      <summary>The browser home key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.BrowserRefresh">
      <summary>The browser refresh key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.BrowserSearch">
      <summary>The browser search key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.BrowserStop">
      <summary>The browser stop key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.C">
      <summary>The C key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Cancel">
      <summary>The CANCEL key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Capital">
      <summary>The CAPS LOCK key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.CapsLock">
      <summary>The CAPS LOCK key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Clear">
      <summary>The CLEAR key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Control">
      <summary>The CTRL modifier key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.ControlKey">
      <summary>The CTRL key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Crsel">
      <summary>The CRSEL key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D">
      <summary>The D key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D0">
      <summary>The 0 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D1">
      <summary>The 1 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D2">
      <summary>The 2 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D3">
      <summary>The 3 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D4">
      <summary>The 4 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D5">
      <summary>The 5 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D6">
      <summary>The 6 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D7">
      <summary>The 7 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D8">
      <summary>The 8 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.D9">
      <summary>The 9 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Decimal">
      <summary>The decimal key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Delete">
      <summary>The DEL key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Divide">
      <summary>The divide key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Down">
      <summary>The DOWN ARROW key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.E">
      <summary>The E key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.End">
      <summary>The END key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Enter">
      <summary>The ENTER key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.EraseEof">
      <summary>The ERASE EOF key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Escape">
      <summary>The ESC key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Execute">
      <summary>The EXECUTE key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Exsel">
      <summary>The EXSEL key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F">
      <summary>The F key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F1">
      <summary>The F1 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F10">
      <summary>The F10 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F11">
      <summary>The F11 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F12">
      <summary>The F12 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F13">
      <summary>The F13 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F14">
      <summary>The F14 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F15">
      <summary>The F15 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F16">
      <summary>The F16 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F17">
      <summary>The F17 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F18">
      <summary>The F18 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F19">
      <summary>The F19 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F2">
      <summary>The F2 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F20">
      <summary>The F20 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F21">
      <summary>The F21 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F22">
      <summary>The F22 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F23">
      <summary>The F23 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F24">
      <summary>The F24 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F3">
      <summary>The F3 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F4">
      <summary>The F4 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F5">
      <summary>The F5 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F6">
      <summary>The F6 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F7">
      <summary>The F7 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F8">
      <summary>The F8 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.F9">
      <summary>The F9 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.FinalMode">
      <summary>The IME final mode key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.G">
      <summary>The G key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.H">
      <summary>The H key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.HanguelMode">
      <summary>The IME Hanguel mode key. (maintained for compatibility; use <see langword="HangulMode" />)</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.HangulMode">
      <summary>The IME Hangul mode key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.HanjaMode">
      <summary>The IME Hanja mode key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Help">
      <summary>The HELP key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Home">
      <summary>The HOME key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.I">
      <summary>The I key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.IMEAccept">
      <summary>The IME accept key, replaces <see cref="F:System.Windows.Forms.Keys.IMEAceept" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.IMEAceept">
      <summary>The IME accept key. Obsolete, use <see cref="F:System.Windows.Forms.Keys.IMEAccept" /> instead.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.IMEConvert">
      <summary>The IME convert key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.IMEModeChange">
      <summary>The IME mode change key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.IMENonconvert">
      <summary>The IME nonconvert key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Insert">
      <summary>The INS key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.J">
      <summary>The J key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.JunjaMode">
      <summary>The IME Junja mode key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.K">
      <summary>The K key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.KanaMode">
      <summary>The IME Kana mode key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.KanjiMode">
      <summary>The IME Kanji mode key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.KeyCode">
      <summary>The bitmask to extract a key code from a key value.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.L">
      <summary>The L key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.LaunchApplication1">
      <summary>The start application one key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.LaunchApplication2">
      <summary>The start application two key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.LaunchMail">
      <summary>The launch mail key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.LButton">
      <summary>The left mouse button.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.LControlKey">
      <summary>The left CTRL key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Left">
      <summary>The LEFT ARROW key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.LineFeed">
      <summary>The LINEFEED key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.LMenu">
      <summary>The left ALT key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.LShiftKey">
      <summary>The left SHIFT key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.LWin">
      <summary>The left Windows logo key (Microsoft Natural Keyboard).</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.M">
      <summary>The M key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.MButton">
      <summary>The middle mouse button (three-button mouse).</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.MediaNextTrack">
      <summary>The media next track key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.MediaPlayPause">
      <summary>The media play pause key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.MediaPreviousTrack">
      <summary>The media previous track key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.MediaStop">
      <summary>The media Stop key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Menu">
      <summary>The ALT key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Modifiers">
      <summary>The bitmask to extract modifiers from a key value.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Multiply">
      <summary>The multiply key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.N">
      <summary>The N key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Next">
      <summary>The PAGE DOWN key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NoName">
      <summary>A constant reserved for future use.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.None">
      <summary>No key pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumLock">
      <summary>The NUM LOCK key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad0">
      <summary>The 0 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad1">
      <summary>The 1 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad2">
      <summary>The 2 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad3">
      <summary>The 3 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad4">
      <summary>The 4 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad5">
      <summary>The 5 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad6">
      <summary>The 6 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad7">
      <summary>The 7 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad8">
      <summary>The 8 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.NumPad9">
      <summary>The 9 key on the numeric keypad.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.O">
      <summary>The O key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oem1">
      <summary>The OEM 1 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oem102">
      <summary>The OEM 102 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oem2">
      <summary>The OEM 2 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oem3">
      <summary>The OEM 3 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oem4">
      <summary>The OEM 4 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oem5">
      <summary>The OEM 5 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oem6">
      <summary>The OEM 6 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oem7">
      <summary>The OEM 7 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oem8">
      <summary>The OEM 8 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemBackslash">
      <summary>The OEM angle bracket or backslash key on the RT 102 key keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemClear">
      <summary>The CLEAR key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemCloseBrackets">
      <summary>The OEM close bracket key on a US standard keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oemcomma">
      <summary>The OEM comma key on any country/region keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemMinus">
      <summary>The OEM minus key on any country/region keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemOpenBrackets">
      <summary>The OEM open bracket key on a US standard keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemPeriod">
      <summary>The OEM period key on any country/region keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemPipe">
      <summary>The OEM pipe key on a US standard keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oemplus">
      <summary>The OEM plus key on any country/region keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemQuestion">
      <summary>The OEM question mark key on a US standard keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemQuotes">
      <summary>The OEM singled/double quote key on a US standard keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.OemSemicolon">
      <summary>The OEM Semicolon key on a US standard keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Oemtilde">
      <summary>The OEM tilde key on a US standard keyboard.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.P">
      <summary>The P key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Pa1">
      <summary>The PA1 key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Packet">
      <summary>Used to pass Unicode characters as if they were keystrokes. The Packet key value is the low word of a 32-bit virtual-key value used for non-keyboard input methods.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.PageDown">
      <summary>The PAGE DOWN key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.PageUp">
      <summary>The PAGE UP key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Pause">
      <summary>The PAUSE key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Play">
      <summary>The PLAY key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Print">
      <summary>The PRINT key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.PrintScreen">
      <summary>The PRINT SCREEN key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Prior">
      <summary>The PAGE UP key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.ProcessKey">
      <summary>The PROCESS KEY key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Q">
      <summary>The Q key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.R">
      <summary>The R key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.RButton">
      <summary>The right mouse button.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.RControlKey">
      <summary>The right CTRL key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Return">
      <summary>The RETURN key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Right">
      <summary>The RIGHT ARROW key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.RMenu">
      <summary>The right ALT key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.RShiftKey">
      <summary>The right SHIFT key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.RWin">
      <summary>The right Windows logo key (Microsoft Natural Keyboard).</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.S">
      <summary>The S key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Scroll">
      <summary>The SCROLL LOCK key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Select">
      <summary>The SELECT key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.SelectMedia">
      <summary>The select media key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Separator">
      <summary>The separator key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Shift">
      <summary>The SHIFT modifier key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.ShiftKey">
      <summary>The SHIFT key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Sleep">
      <summary>The computer sleep key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Snapshot">
      <summary>The PRINT SCREEN key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Space">
      <summary>The SPACEBAR key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Subtract">
      <summary>The subtract key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.T">
      <summary>The T key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Tab">
      <summary>The TAB key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.U">
      <summary>The U key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Up">
      <summary>The UP ARROW key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.V">
      <summary>The V key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.VolumeDown">
      <summary>The volume down key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.VolumeMute">
      <summary>The volume mute key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.VolumeUp">
      <summary>The volume up key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.W">
      <summary>The W key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.X">
      <summary>The X key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.XButton1">
      <summary>The first x mouse button (five-button mouse).</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.XButton2">
      <summary>The second x mouse button (five-button mouse).</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Y">
      <summary>The Y key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Z">
      <summary>The Z key.</summary>
    </member>
    <member name="F:System.Windows.Forms.Keys.Zoom">
      <summary>The ZOOM key.</summary>
    </member>
    <member name="T:System.Windows.Forms.KeysConverter">
      <summary>Provides a <see cref="T:System.ComponentModel.TypeConverter" /> to convert <see cref="T:System.Windows.Forms.Keys" /> objects to and from other representations.</summary>
    </member>
    <member name="M:System.Windows.Forms.KeysConverter.#ctor">
      <summary>Initializes an instance of the <see cref="T:System.Windows.Forms.KeysConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.KeysConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns a value indicating whether this converter can convert an object in the specified source type to the native type of the converter using the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <param name="sourceType">The <see cref="T:System.Type" /> to convert from.</param>
      <returns>
        <see langword="true" /> if the conversion can be performed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.KeysConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns a value indicating whether this converter can convert an object in the specified source type to the native type of the converter using the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <param name="destinationType">The <see cref="T:System.Type" /> to convert to.</param>
      <returns>
        <see langword="true" /> if the conversion can be performed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.KeysConverter.Compare(System.Object,System.Object)">
      <summary>Compares two key values for equivalence.</summary>
      <param name="a">An <see cref="T:System.Object" /> that represents the first key to compare.</param>
      <param name="b">An <see cref="T:System.Object" /> that represents the second key to compare.</param>
      <returns>An integer indicating the relationship between the two parameters.  
  
 <list type="table"><listheader><term> Value Type</term><description> Condition</description></listheader><item><term> A negative integer.</term><description><paramref name="a" /> is less than <paramref name="b" />.</description></item><item><term>0</term><description><paramref name="a" /> equals <paramref name="b" />.</description></item><item><term> A positive integer.</term><description><paramref name="a" /> is greater than <paramref name="b" />.</description></item></list></returns>
    </member>
    <member name="M:System.Windows.Forms.KeysConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the specified object to the converter's native type.</summary>
      <param name="context">An <see langword="ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this converter is being invoked from. This parameter or properties of this parameter can be null.</param>
      <param name="culture">A <see langword="CultureInfo" /> object to provide locale information.</param>
      <param name="value">The object to convert.</param>
      <exception cref="T:System.FormatException">An invalid key combination was supplied.  
  
 -or-  
  
 An invalid key name was supplied.</exception>
      <returns>An object that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.KeysConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the specified object to the specified destination type.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> to provide locale information.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <param name="destinationType">The <see cref="T:System.Type" /> to convert the object to.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destinationType" /> is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.KeysConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Returns a collection of standard values for the data type that this type converter is designed for when provided with a format context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <returns>A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> that holds a standard set of valid values, which can be empty if the data type does not support a standard set of values.</returns>
    </member>
    <member name="M:System.Windows.Forms.KeysConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines if the list of standard values returned from <see langword="GetStandardValues" /> is an exclusive list using the specified <see cref="T:System.ComponentModel.ITypeDescriptorContext" />.</summary>
      <param name="context">A formatter context. This object can be used to extract additional information about the environment this converter is being invoked from. This may be <see langword="null" />, so you should always check. Also, properties on the context object may also return <see langword="null" />.</param>
      <returns>
        <see langword="true" /> if the collection returned from <see cref="Overload:System.Windows.Forms.KeysConverter.GetStandardValues" /> is an exhaustive list of possible values; otherwise, <see langword="false" /> if other values are possible. The default implementation for this method always returns <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.KeysConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Gets a value indicating whether this object supports a standard set of values that can be picked from a list.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <returns>Always returns <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.Label">
      <summary>Represents a standard Windows label.</summary>
    </member>
    <member name="E:System.Windows.Forms.Label.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Label.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Label.BackgroundImageChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Label.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Label.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Label.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Label.ImeModeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Label.ImeMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Label.KeyDown">
      <summary>Occurs when the user presses a key while the label has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Label.KeyPress">
      <summary>Occurs when the user presses a key while the label has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Label.KeyUp">
      <summary>Occurs when the user releases a key while the label has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.Label.TabStopChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.Label.TabStop" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.Label.TextAlignChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Label.TextAlign" /> property has changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.Label.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Label" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Label.CalcImageRenderBounds(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.ContentAlignment)">
      <summary>Determines the size and location of an image drawn within the <see cref="T:System.Windows.Forms.Label" /> control based on the alignment of the control.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> used to determine size and location when drawn within the control.</param>
      <param name="r">A <see cref="T:System.Drawing.Rectangle" /> that represents the area to draw the image in.</param>
      <param name="align">The alignment of content within the control.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the size and location of the specified image within the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.Label.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.Label.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Label" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.DrawImage(System.Drawing.Graphics,System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.ContentAlignment)">
      <summary>Draws an <see cref="T:System.Drawing.Image" /> within the specified bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> surface on which to draw.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw.</param>
      <param name="r">The <see cref="T:System.Drawing.Rectangle" /> bounds to draw within.</param>
      <param name="align">The alignment of the image to draw within the <see cref="T:System.Windows.Forms.Label" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a control can be fitted.</summary>
      <param name="proposedSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.Label.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnMouseEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseEnter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnPaddingChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.PaddingChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnParentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnTextAlignChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Label.TextAlignChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Label.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Sets the specified bounds of the label.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values. For any parameter not specified, the current value will be used.</param>
    </member>
    <member name="M:System.Windows.Forms.Label.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.Label" />.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.Label" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Label.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.Label.AutoEllipsis">
      <summary>Gets or sets a value indicating whether the ellipsis character (...) appears at the right edge of the <see cref="T:System.Windows.Forms.Label" />, denoting that the <see cref="T:System.Windows.Forms.Label" /> text extends beyond the specified length of the <see cref="T:System.Windows.Forms.Label" />.</summary>
      <returns>
        <see langword="true" /> if the additional label text is to be indicated by an ellipsis; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.AutoSize">
      <summary>Gets or sets a value indicating whether the control is automatically resized to display its entire contents.</summary>
      <returns>
        <see langword="true" /> if the control adjusts its width to closely fit its contents; otherwise, <see langword="false" />. When added to a form using the designer, the default value is <see langword="true" />. When instantiated from code, the default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.BackgroundImage">
      <summary>Gets or sets the image rendered on the background of the control.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> that represents the background image of the control. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.BackgroundImageLayout">
      <summary>This property is not relevant for this class.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageLayout" /> object.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.BorderStyle">
      <summary>Gets or sets the border style for the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see langword="BorderStyle.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.DefaultImeMode">
      <summary>Gets the default Input Method Editor (IME) mode supported by this control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> supported by this control. The default is <see cref="F:System.Windows.Forms.ImeMode.Disable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.DefaultMargin">
      <summary>Gets the space, in pixels, that is specified by default between controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value that represents the default space between controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.FlatStyle">
      <summary>Gets or sets the flat style appearance of the label control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.FlatStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.FlatStyle" /> values. The default value is <see langword="Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.Image">
      <summary>Gets or sets the image that is displayed on a <see cref="T:System.Windows.Forms.Label" />.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> displayed on the <see cref="T:System.Windows.Forms.Label" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.ImageAlign">
      <summary>Gets or sets the alignment of an image that is displayed in the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Drawing.ContentAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default is <see langword="ContentAlignment.MiddleCenter" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.ImageIndex">
      <summary>Gets or sets the index value of the image displayed on the <see cref="T:System.Windows.Forms.Label" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than -1.</exception>
      <returns>A zero-based index that represents the position in the <see cref="T:System.Windows.Forms.ImageList" /> control (assigned to the <see cref="P:System.Windows.Forms.Label.ImageList" /> property) where the image is located. The default is -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.ImageKey">
      <summary>Gets or sets the key accessor for the image in the <see cref="P:System.Windows.Forms.Label.ImageList" />.</summary>
      <returns>A string representing the key of the image.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.ImageList">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ImageList" /> that contains the images to display in the <see cref="T:System.Windows.Forms.Label" /> control.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageList" /> that stores the collection of <see cref="T:System.Drawing.Image" /> objects. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.ImeMode">
      <summary>Gets or sets the Input Method Editor (IME) mode supported by this control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned to this property is not within the range of valid values specified in the enumeration.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.LiveSetting">
      <summary>Indicates the politeness level that a client should use to notify the user of changes to the live region.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.Automation.AutomationLiveSetting" /> values.</exception>
      <returns>The politeness level for notifications. Its default value is <see cref="F:System.Windows.Forms.Automation.AutomationLiveSetting.Off" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.PreferredHeight">
      <summary>Gets the preferred height of the control.</summary>
      <returns>The height of the control (in pixels), assuming a single line of text is displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.PreferredWidth">
      <summary>Gets the preferred width of the control.</summary>
      <returns>The width of the control (in pixels), assuming a single line of text is displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.RenderTransparent">
      <summary>Indicates whether the container control background is rendered on the <see cref="T:System.Windows.Forms.Label" />.</summary>
      <returns>
        <see langword="true" /> if the background of the <see cref="T:System.Windows.Forms.Label" /> control's container is rendered on the <see cref="T:System.Windows.Forms.Label" />; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.TabStop">
      <summary>Gets or sets a value indicating whether the user can tab to the <see cref="T:System.Windows.Forms.Label" />. This property is not used by this class.</summary>
      <returns>This property is not used by this class. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.TextAlign">
      <summary>Gets or sets the alignment of text in the label.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Drawing.ContentAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default is <see cref="F:System.Drawing.ContentAlignment.TopLeft" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.UseCompatibleTextRendering">
      <summary>Gets or sets a value that determines whether to use the <see cref="T:System.Drawing.Graphics" /> class (GDI+) or the <see cref="T:System.Windows.Forms.TextRenderer" /> class (GDI) to render text.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Drawing.Graphics" /> class should be used to perform text rendering for compatibility with versions 1.0 and 1.1. of the .NET Framework; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Label.UseMnemonic">
      <summary>Gets or sets a value indicating whether the control interprets an ampersand character (&amp;) in the control's <see cref="P:System.Windows.Forms.Control.Text" /> property to be an access key prefix character.</summary>
      <returns>
        <see langword="true" /> if the label doesn't display the ampersand character and underlines the character after the ampersand in its displayed text and treats the underlined character as an access key; otherwise, <see langword="false" /> if the ampersand character is displayed in the text of the control. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.LabelEditEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.BeforeLabelEdit" /> and <see cref="E:System.Windows.Forms.ListView.AfterLabelEdit" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.LabelEditEventArgs.#ctor(System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LabelEditEventArgs" /> class with the specified index to the <see cref="T:System.Windows.Forms.ListViewItem" /> to edit.</summary>
      <param name="item">The zero-based index of the <see cref="T:System.Windows.Forms.ListViewItem" />, containing the label to edit.</param>
    </member>
    <member name="M:System.Windows.Forms.LabelEditEventArgs.#ctor(System.Int32,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LabelEditEventArgs" /> class with the specified index to the <see cref="T:System.Windows.Forms.ListViewItem" /> being edited and the new text for the label of the <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
      <param name="item">The zero-based index of the <see cref="T:System.Windows.Forms.ListViewItem" />, containing the label to edit.</param>
      <param name="label">The new text assigned to the label of the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
    </member>
    <member name="P:System.Windows.Forms.LabelEditEventArgs.CancelEdit">
      <summary>Gets or sets a value indicating whether changes made to the label of the <see cref="T:System.Windows.Forms.ListViewItem" /> should be canceled.</summary>
      <returns>
        <see langword="true" /> if the edit operation of the label for the <see cref="T:System.Windows.Forms.ListViewItem" /> should be canceled; otherwise <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LabelEditEventArgs.Item">
      <summary>Gets the zero-based index of the <see cref="T:System.Windows.Forms.ListViewItem" /> containing the label to edit.</summary>
      <returns>The zero-based index of the <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LabelEditEventArgs.Label">
      <summary>Gets the new text assigned to the label of the <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
      <returns>The new text to associate with the <see cref="T:System.Windows.Forms.ListViewItem" /> or <see langword="null" /> if the text is unchanged.</returns>
    </member>
    <member name="T:System.Windows.Forms.LabelEditEventHandler">
      <summary>Represents the method that handles the <see cref="E:System.Windows.Forms.ListView.BeforeLabelEdit" /> and <see cref="E:System.Windows.Forms.ListView.AfterLabelEdit" /> events.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.LabelEditEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.Layout.ArrangedElementCollection">
      <summary>Represents a collection of objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire contents of this collection to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from the current collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="array" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the source collection is greater than the available space from <paramref name="index" /> to the end of <paramref name="array" />.</exception>
      <exception cref="T:System.InvalidCastException">The type of the source element cannot be cast automatically to the type of <paramref name="array" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.Equals(System.Object)">
      <summary>Determines whether two <see cref="T:System.Windows.Forms.Layout.ArrangedElementCollection" /> instances are equal.</summary>
      <param name="obj">The <see cref="T:System.Windows.Forms.Layout.ArrangedElementCollection" /> to compare with the current <see cref="T:System.Windows.Forms.Layout.ArrangedElementCollection" />.</param>
      <returns>
        <see langword="true" /> if the specified <see cref="T:System.Windows.Forms.Layout.ArrangedElementCollection" /> is equal to the current <see cref="T:System.Windows.Forms.Layout.ArrangedElementCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.GetEnumerator">
      <summary>Returns an enumerator for the entire collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> for the entire collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.GetHashCode">
      <summary>Returns the hash code for this instance.</summary>
      <returns>A hash code for the current <see cref="T:System.Windows.Forms.Layout.ArrangedElementCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Add(System.Object)">
      <summary>For a description of this member, see the <see cref="M:System.Collections.IList.Add(System.Object)" /> method.</summary>
      <param name="value">The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />.</param>
      <returns>The position into which the new element was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Clear">
      <summary>For a description of this member, see the <see cref="M:System.Collections.IList.Clear" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Contains(System.Object)">
      <summary>For a description of this member, see the <see cref="M:System.Collections.IList.Contains(System.Object)" /> method.</summary>
      <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>For a description of this member, see the <see cref="M:System.Collections.IList.IndexOf(System.Object)" /> method.</summary>
      <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />.</param>
      <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>For a description of this member, see the <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" /> method.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The <see cref="T:System.Object" /> to insert into the <see cref="T:System.Collections.IList" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Remove(System.Object)">
      <summary>For a description of this member, see the <see cref="M:System.Collections.IList.Remove(System.Object)" /> method.</summary>
      <param name="value">The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.IList" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>For a description of this member, see the <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" /> method.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
    </member>
    <member name="P:System.Windows.Forms.Layout.ArrangedElementCollection.Count">
      <summary>Gets the number of elements in the collection.</summary>
      <returns>The number of elements currently contained in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.Layout.ArrangedElementCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this member, see the <see cref="P:System.Collections.ICollection.IsSynchronized" /> property.</summary>
      <returns>
        <see langword="true" /> if access to the <see cref="T:System.Windows.Forms.Layout.ArrangedElementCollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this member, see the <see cref="P:System.Collections.ICollection.SyncRoot" /> property.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.Layout.ArrangedElementCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this member, see the <see cref="P:System.Collections.IList.IsFixedSize" /> property.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Layout.ArrangedElementCollection.System#Collections#IList#Item(System.Int32)">
      <summary>For a description of this member, see the <see cref="P:System.Collections.IList.Item(System.Int32)" /> property.</summary>
      <param name="index">The zero-based index of the element to get.</param>
      <returns>The element at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.Layout.LayoutEngine">
      <summary>Provides the base class for implementing layout engines.</summary>
    </member>
    <member name="M:System.Windows.Forms.Layout.LayoutEngine.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Layout.LayoutEngine.InitLayout(System.Object,System.Windows.Forms.BoundsSpecified)">
      <summary>Initializes the layout engine.</summary>
      <param name="child">The container on which the layout engine will operate.</param>
      <param name="specified">The bounds defining the container's size and position.</param>
      <exception cref="T:System.NotSupportedException">
        <paramref name="child" /> is not a type on which <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> can perform layout.</exception>
    </member>
    <member name="M:System.Windows.Forms.Layout.LayoutEngine.Layout(System.Object,System.Windows.Forms.LayoutEventArgs)">
      <summary>Requests that the layout engine perform a layout operation.</summary>
      <param name="container">The container on which the layout engine will operate.</param>
      <param name="layoutEventArgs">An event argument from a <see cref="E:System.Windows.Forms.Control.Layout" /> event.</param>
      <exception cref="T:System.NotSupportedException">
        <paramref name="container" /> is not a type on which <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> can perform layout.</exception>
      <returns>
        <see langword="true" /> if layout should be performed again by the parent of <paramref name="container" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter">
      <summary>Provides a unified way of converting types of values to other types, as well as for accessing standard values and subproperties.</summary>
    </member>
    <member name="M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Determines whether this converter can convert an object in the given source type to the native type of this converter.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="sourceType">A <see cref="T:System.Type" /> that represents the type you want to convert from.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns a value indicating whether this converter can convert an object to the given destination type by using the context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you want to convert to.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the given object to the type of this converter by using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> to use as the current culture.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="M:System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the given value object to the specified type by using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> to use as the current culture.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <param name="destinationType">The <see cref="T:System.Type" /> to convert the value parameter to.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destinationType" /> is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="T:System.Windows.Forms.LayoutEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.Layout" /> event. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.LayoutEventArgs.#ctor(System.ComponentModel.IComponent,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LayoutEventArgs" /> class with the specified component and property affected.</summary>
      <param name="affectedComponent">The <see cref="T:System.ComponentModel.Component" /> affected by the layout change.</param>
      <param name="affectedProperty">The property affected by the layout change.</param>
    </member>
    <member name="M:System.Windows.Forms.LayoutEventArgs.#ctor(System.Windows.Forms.Control,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LayoutEventArgs" /> class with the specified control and property affected.</summary>
      <param name="affectedControl">The <see cref="T:System.Windows.Forms.Control" /> affected by the layout change.</param>
      <param name="affectedProperty">The property affected by the layout change.</param>
    </member>
    <member name="P:System.Windows.Forms.LayoutEventArgs.AffectedComponent">
      <summary>Gets the <see cref="T:System.ComponentModel.Component" /> affected by the layout change.</summary>
      <returns>An <see cref="T:System.ComponentModel.IComponent" /> representing the <see cref="T:System.ComponentModel.Component" /> affected by the layout change.</returns>
    </member>
    <member name="P:System.Windows.Forms.LayoutEventArgs.AffectedControl">
      <summary>Gets the child control affected by the change.</summary>
      <returns>The child <see cref="T:System.Windows.Forms.Control" /> affected by the change.</returns>
    </member>
    <member name="P:System.Windows.Forms.LayoutEventArgs.AffectedProperty">
      <summary>Gets the property affected by the change.</summary>
      <returns>The property affected by the change.</returns>
    </member>
    <member name="T:System.Windows.Forms.LayoutEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.Layout" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.LayoutSettings">
      <summary>Provides a base class for collecting layout scheme characteristics.</summary>
    </member>
    <member name="M:System.Windows.Forms.LayoutSettings.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LayoutSettings" /> class.</summary>
    </member>
    <member name="P:System.Windows.Forms.LayoutSettings.LayoutEngine">
      <summary>Gets the current table layout engine.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> currently being used.</returns>
    </member>
    <member name="T:System.Windows.Forms.LeftRightAlignment">
      <summary>Specifies whether an object or text is aligned to the left or right of a reference point.</summary>
    </member>
    <member name="F:System.Windows.Forms.LeftRightAlignment.Left">
      <summary>The object or text is aligned to the left of the reference point.</summary>
    </member>
    <member name="F:System.Windows.Forms.LeftRightAlignment.Right">
      <summary>The object or text is aligned to the right of the reference point.</summary>
    </member>
    <member name="T:System.Windows.Forms.LinkArea">
      <summary>Represents an area within a <see cref="T:System.Windows.Forms.LinkLabel" /> control that represents a hyperlink within the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkArea" /> class.</summary>
      <param name="start">The zero-based starting location of the link area within the text of the <see cref="T:System.Windows.Forms.LinkLabel" />.</param>
      <param name="length">The number of characters, after the starting character, to include in the link area.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.Equals(System.Object)">
      <summary>Determines whether this <see cref="T:System.Windows.Forms.LinkArea" /> is equal to the specified object.</summary>
      <param name="o">The object to compare to this <see cref="T:System.Windows.Forms.LinkArea" />.</param>
      <returns>
        <see langword="true" /> if the specified object is equal to the current <see cref="T:System.Windows.Forms.LinkArea" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.Equals(System.Windows.Forms.LinkArea)">
      <summary>Indicates whether the current object is equal to another object of the same type.</summary>
      <param name="other">An object to compare with this object.</param>
      <returns>
        <see langword="true" /> if the current object is equal to the <paramref name="other" /> parameter; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.GetHashCode">
      <summary>Returns the hash code for this instance.</summary>
      <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.op_Equality(System.Windows.Forms.LinkArea,System.Windows.Forms.LinkArea)">
      <summary>Returns a value indicating whether two instances of the <see cref="T:System.Windows.Forms.LinkArea" /> class are equal.</summary>
      <param name="linkArea1">A <see cref="T:System.Windows.Forms.LinkArea" /> to compare.</param>
      <param name="linkArea2">A <see cref="T:System.Windows.Forms.LinkArea" /> to compare.</param>
      <returns>
        <see langword="true" /> if two instances of the <see cref="T:System.Windows.Forms.LinkArea" /> class are equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.op_Inequality(System.Windows.Forms.LinkArea,System.Windows.Forms.LinkArea)">
      <summary>Returns a value indicating whether two instances of the <see cref="T:System.Windows.Forms.LinkArea" /> class are not equal.</summary>
      <param name="linkArea1">A <see cref="T:System.Windows.Forms.LinkArea" /> to compare.</param>
      <param name="linkArea2">A <see cref="T:System.Windows.Forms.LinkArea" /> to compare.</param>
      <returns>
        <see langword="true" /> if two instances of the <see cref="T:System.Windows.Forms.LinkArea" /> class are not equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.ToString">
      <summary>Returns the fully qualified type name of this instance.</summary>
      <returns>A <see cref="T:System.String" /> containing a fully qualified type name.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkArea.IsEmpty">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.LinkArea" /> is empty.</summary>
      <returns>
        <see langword="true" /> if the specified start and length return an empty link area; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkArea.Length">
      <summary>Gets or sets the number of characters in the link area.</summary>
      <returns>The number of characters, including spaces, in the link area.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkArea.Start">
      <summary>Gets or sets the starting location of the link area within the text of the <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
      <returns>The location within the text of the <see cref="T:System.Windows.Forms.LinkLabel" /> control where the link starts.</returns>
    </member>
    <member name="T:System.Windows.Forms.LinkArea.LinkAreaConverter">
      <summary>Provides a type converter to convert <see cref="T:System.Windows.Forms.LinkArea.LinkAreaConverter" /> objects to and from various other representations.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.LinkAreaConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkArea.LinkAreaConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.LinkAreaConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Determines if this converter can convert an object in the given source type to the native type of the converter.</summary>
      <param name="context">A formatter context. This object can be used to extract additional information about the environment this converter is being invoked from. This may be null, so you should always check. Also, properties on the context object may also return null.</param>
      <param name="sourceType">The type you wish to convert from.</param>
      <returns>
        <see langword="true" /> if this object can perform the conversion.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.LinkAreaConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.LinkAreaConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the given object to the converter's native type.</summary>
      <param name="context">A formatter context. This object can be used to extract additional information about the environment this converter is being invoked from. This may be null, so you should always check. Also, properties on the context object may also return null.</param>
      <param name="culture">An optional culture info. If not supplied, the current culture is assumed.</param>
      <param name="value">The object to convert.</param>
      <returns>The converted object. This will throw an exception if the conversion could not be performed.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.LinkAreaConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the given object to another type. The most common types to convert are to and from a string object. The default implementation will make a call to <see cref="M:System.Windows.Forms.LinkArea.ToString" /> on the object if the object is valid and if the destination type is string. If this cannot convert to the destination type, this will throw a <see cref="T:System.NotSupportedException" />.</summary>
      <param name="context">A formatter context. This object can be used to extract additional information about the environment this converter is being invoked from. This may be null, so you should always check. Also, properties on the context object may also return null.</param>
      <param name="culture">An optional culture info. If not supplied the current culture is assumed.</param>
      <param name="value">The object to convert.</param>
      <param name="destinationType">The type to convert the object to.</param>
      <returns>The converted object.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.LinkAreaConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
      <summary>Creates an instance of this type, given a set of property values for the object. This is useful for objects that are immutable, but still want to provide changeable properties.</summary>
      <param name="context">A type descriptor through which additional context may be provided.</param>
      <param name="propertyValues">A dictionary of new property values. The dictionary contains a series of name-value pairs, one for each property returned from <see cref="M:System.Windows.Forms.LinkArea.LinkAreaConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])" />.</param>
      <returns>The newly created object, or null if the object could not be created. The default implementation returns null.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.LinkAreaConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines if changing a value on this object should require a call to <see cref="M:System.Windows.Forms.LinkArea.LinkAreaConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)" /> to create a new value.</summary>
      <param name="context">A type descriptor through which additional context may be provided.</param>
      <returns>Returns <see langword="true" /> if <see cref="M:System.Windows.Forms.LinkArea.LinkAreaConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)" /> should be called when a change is made to one or more properties of this object.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.LinkAreaConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
      <summary>Retrieves the set of properties for this type.</summary>
      <param name="context">A type descriptor through which additional context may be provided.</param>
      <param name="value">The value of the object to get the properties for.</param>
      <param name="attributes">The attributes of the object to get the properties for.</param>
      <returns>The set of properties that should be exposed for this data type. If no properties should be exposed, this might return <see langword="null" />. The default implementation always returns <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkArea.LinkAreaConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines if this object supports properties. By default, this is <see langword="false" />.</summary>
      <param name="context">A type descriptor through which additional context may be provided.</param>
      <returns>Returns <see langword="true" /> if <see cref="M:System.Windows.Forms.LinkArea.LinkAreaConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])" /> should be called to find the properties of this object.</returns>
    </member>
    <member name="T:System.Windows.Forms.LinkBehavior">
      <summary>Specifies the behaviors of a link in a <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.LinkBehavior.AlwaysUnderline">
      <summary>The link always displays with underlined text.</summary>
    </member>
    <member name="F:System.Windows.Forms.LinkBehavior.HoverUnderline">
      <summary>The link displays underlined text only when the mouse is hovered over the link text.</summary>
    </member>
    <member name="F:System.Windows.Forms.LinkBehavior.NeverUnderline">
      <summary>The link text is never underlined. The link can still be distinguished from other text by use of the <see cref="P:System.Windows.Forms.LinkLabel.LinkColor" /> property of the <see cref="T:System.Windows.Forms.LinkLabel" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.LinkBehavior.SystemDefault">
      <summary>The behavior of this setting depends on the options set using the Internet Options dialog box in Control Panel or Internet Explorer.</summary>
    </member>
    <member name="T:System.Windows.Forms.LinkClickedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.RichTextBox.LinkClicked" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkClickedEventArgs.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkClickedEventArgs" /> class.</summary>
      <param name="linkText">The text of the link that is clicked in the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkClickedEventArgs.#ctor(System.String,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkClickedEventArgs" /> class.</summary>
      <param name="linkText">The text of the link being clicked.</param>
      <param name="linkStart">The start of the link span being clicked.</param>
      <param name="linkLength">The length of the link span being clicked.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value for <paramref name="linkStart" /> or <paramref name="linkLength" /> is negative.

-or-

The values for <paramref name="linkStart" /> and <paramref name="linkLength" /> would overflow addition.</exception>
    </member>
    <member name="P:System.Windows.Forms.LinkClickedEventArgs.LinkLength">
      <summary>Gets the length of the link span being clicked.</summary>
    </member>
    <member name="P:System.Windows.Forms.LinkClickedEventArgs.LinkStart">
      <summary>Gets the start of the link span being clicked.</summary>
    </member>
    <member name="P:System.Windows.Forms.LinkClickedEventArgs.LinkText">
      <summary>Gets the text of the link being clicked.</summary>
      <returns>The text of the link that is clicked in the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</returns>
    </member>
    <member name="T:System.Windows.Forms.LinkClickedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.RichTextBox.LinkClicked" /> event of a <see cref="T:System.Windows.Forms.RichTextBox" />.</summary>
      <param name="sender">The source of the object.</param>
      <param name="e">The <see cref="T:System.Windows.Forms.LinkClickedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.LinkConverter">
      <summary>Provides a type converter for <see cref="T:System.Windows.Forms.LinkLabel.Link" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Retrieves a value that determines if this <see cref="T:System.Windows.Forms.LinkConverter" /> can convert an object having the specified context and source type to the native type of the <see cref="T:System.Windows.Forms.LinkConverter" />.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> providing contextual information about the object to be converted.</param>
      <param name="sourceType">The type of the object to be converted.</param>
      <returns>
        <see langword="true" /> if this <see cref="T:System.Windows.Forms.LinkConverter" /> can convert the specified object; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Retrieves a value that determines if this <see cref="T:System.Windows.Forms.LinkConverter" /> can convert an object having the specified context to the specified type.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> providing contextual information about the object to be converted.</param>
      <param name="destinationType">The type to convert the object to.</param>
      <returns>
        <see langword="true" /> if this <see cref="T:System.Windows.Forms.LinkConverter" /> can convert the specified object; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the specified object to the native type of the <see cref="T:System.Windows.Forms.LinkConverter" />.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> providing contextual information about the object to be converted.</param>
      <param name="culture">Cultural attributes of the object to be converted. If this parameter is <see langword="null" />, the <see cref="P:System.Globalization.CultureInfo.CurrentCulture" /> property value is used.</param>
      <param name="value">The object to be converted.</param>
      <exception cref="T:System.ArgumentException">The text of the object to be converted could not be parsed.</exception>
      <returns>The converted object.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the specified object to another type.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> providing contextual information about the object to be converted.</param>
      <param name="culture">Cultural attributes of the object to be converted. If this parameter is <see langword="null" />, the <see cref="P:System.Globalization.CultureInfo.CurrentCulture" /> property value is used.</param>
      <param name="value">The object to be converted.</param>
      <param name="destinationType">The type to convert the object to.</param>
      <exception cref="T:System.NotSupportedException">The object cannot be converted to the destination type.</exception>
      <exception cref="T:System.ArgumentNullException">The <paramref name="destinationType" /> is <see langword="null" />.</exception>
      <returns>The converted object.</returns>
    </member>
    <member name="T:System.Windows.Forms.LinkLabel">
      <summary>Represents a Windows label control that can display hyperlinks.</summary>
    </member>
    <member name="E:System.Windows.Forms.LinkLabel.LinkClicked">
      <summary>Occurs when a link is clicked within the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.LinkLabel.TabStopChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Label.TabStop" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.#ctor">
      <summary>Initializes a new default instance of the <see cref="T:System.Windows.Forms.LinkLabel" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.LinkLabel" /> control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.CreateHandle">
      <summary>Creates a handle for this control. This method is called by .NET, and should not be called by user code. Inheriting classes should always call <see langword="base.CreateHandle" /> when overriding this method.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnAutoSizeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Label.AutoSizeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnEnabledChanged(System.EventArgs)">
      <summary>Provides handling for the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnKeyDown(System.Windows.Forms.KeyEventArgs)" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnLinkClicked(System.Windows.Forms.LinkLabelLinkClickedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.LinkLabel.LinkClicked" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LinkLabelLinkClickedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseDown(System.Windows.Forms.MouseEventArgs)" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseLeave(System.EventArgs)" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseMove(System.Windows.Forms.MouseEventArgs)" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnMouseUp(System.Windows.Forms.MouseEventArgs)" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnPaddingChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.PaddingChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnPaint(System.Windows.Forms.PaintEventArgs)" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Paints the background of the control.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnTextAlignChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Label.TextAlignChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.OnTextChanged(System.EventArgs)">
      <summary>Provides handling for the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.PointInLink(System.Int32,System.Int32)">
      <summary>Gets the link located at the specified client coordinates.</summary>
      <param name="x">The horizontal coordinate of the point to search for a link.</param>
      <param name="y">The vertical coordinate of the point to search for a link.</param>
      <returns>A <see cref="T:System.Windows.Forms.LinkLabel.Link" /> representing the link located at the specified coordinates. If the point does not contain a link, <see langword="null" /> is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">Key code and modifier flags.</param>
      <returns>
        <see langword="true" /> to consume the key; <see langword="false" /> to allow further processing.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.Select(System.Boolean,System.Boolean)">
      <summary>Activates a child control. Optionally specifies the direction in the tab order to select the control from.</summary>
      <param name="directed">
        <see langword="true" /> to specify the direction of the control to select; otherwise, <see langword="false" />.</param>
      <param name="forward">
        <see langword="true" /> to move forward in the tab order; <see langword="false" /> to move backward in the tab order.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Performs the work of setting the bounds of this control.</summary>
      <param name="x">New left of the control.</param>
      <param name="y">New right of the control.</param>
      <param name="width">New width of the control.</param>
      <param name="height">New height of the control.</param>
      <param name="specified">Which values were specified. This parameter reflects user intent, not which values have changed.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.System#Windows#Forms#IButtonControl#NotifyDefault(System.Boolean)">
      <summary>Notifies the <see cref="T:System.Windows.Forms.LinkLabel" /> control that it is the default button.</summary>
      <param name="value">
        <see langword="true" /> if the control should behave as a default button; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.System#Windows#Forms#IButtonControl#PerformClick">
      <summary>Generates a <see cref="E:System.Windows.Forms.Control.Click" /> event for the <see cref="T:System.Windows.Forms.LinkLabel" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes the specified Windows message.</summary>
      <param name="msg">The message to process.</param>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.ActiveLinkColor">
      <summary>Gets or sets the color used to display an active link.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color to display an active link. The default color is specified by the system, typically this color is <see langword="Color.Red" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.DisabledLinkColor">
      <summary>Gets or sets the color used when displaying a disabled link.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color when displaying a disabled link. The default is <see langword="Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.FlatStyle">
      <summary>Gets or sets the flat style appearance of the <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.FlatStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkArea">
      <summary>Gets or sets the range in the text to treat as a link.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.Windows.Forms.LinkArea.Start" /> property of the <see cref="T:System.Windows.Forms.LinkArea" /> object is less than zero.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.LinkArea.Length" /> property of the <see cref="T:System.Windows.Forms.LinkArea" /> object is less than -1.</exception>
      <returns>A <see cref="T:System.Windows.Forms.LinkArea" /> that represents the area treated as a link.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkBehavior">
      <summary>Gets or sets a value that represents the behavior of a link.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">A value is assigned that is not one of the <see cref="T:System.Windows.Forms.LinkBehavior" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.LinkBehavior" /> values. The default is <see langword="LinkBehavior.SystemDefault" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkColor">
      <summary>Gets or sets the color used when displaying a normal link.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to displaying a normal link. The default color is specified by the system, typically this color is <see langword="Color.Blue" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Links">
      <summary>Gets the collection of links contained within the <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.LinkLabel.LinkCollection" /> that represents the links contained within the <see cref="T:System.Windows.Forms.LinkLabel" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkVisited">
      <summary>Gets or sets a value indicating whether a link should be displayed as though it were visited.</summary>
      <returns>
        <see langword="true" /> if links should display as though they were visited; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.OverrideCursor">
      <summary>Gets or sets the mouse pointer to use when the mouse pointer is within the bounds of the <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Cursor" /> to use when the mouse pointer is within the <see cref="T:System.Windows.Forms.LinkLabel" /> bounds.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Padding">
      <summary>Gets or sets the interior spacing, in pixels, between the edges of a <see cref="T:System.Windows.Forms.LinkLabel" /> and its contents.</summary>
      <returns>
        <see cref="T:System.Windows.Forms.Padding" /> values representing the interior spacing, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.System#Windows#Forms#IButtonControl#DialogResult">
      <summary>For a description of this member, see <see cref="P:System.Windows.Forms.IButtonControl.DialogResult" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.TabStop">
      <summary>Gets or sets a value that indicates whether the user can tab to the <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
      <returns>
        <see langword="true" /> if the user can tab to the <see cref="T:System.Windows.Forms.LinkLabel" />;otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Text">
      <summary>Gets or sets the text displayed by the <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
      <returns>The text displayed by the <see cref="T:System.Windows.Forms.LinkLabel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.UseCompatibleTextRendering">
      <summary>Gets or sets a value that determines whether to use the <see cref="T:System.Drawing.Graphics" /> class (GDI+) or the <see cref="T:System.Windows.Forms.TextRenderer" /> class (GDI) to render text.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Drawing.Graphics" /> class should be used to perform text rendering for compatibility with versions 1.0 and 1.1. of the .NET Framework; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.VisitedLinkColor">
      <summary>Gets or sets the color used when displaying a link that has been previously visited.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to display links that have been visited. The default color is specified by the system, typically this color is <see langword="Color.Purple" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.LinkLabel.Link">
      <summary>Represents a link within a <see cref="T:System.Windows.Forms.LinkLabel" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.Link.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkLabel.Link" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.Link.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkLabel.Link" /> class with the specified starting location and number of characters after the starting location within the <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
      <param name="start">The zero-based starting location of the link area within the text of the <see cref="T:System.Windows.Forms.LinkLabel" />.</param>
      <param name="length">The number of characters, after the starting character, to include in the link area.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.Link.#ctor(System.Int32,System.Int32,System.Object)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkLabel.Link" /> class with the specified starting location, number of characters after the starting location within the <see cref="T:System.Windows.Forms.LinkLabel" />, and the data associated with the link.</summary>
      <param name="start">The zero-based starting location of the link area within the text of the <see cref="T:System.Windows.Forms.LinkLabel" />.</param>
      <param name="length">The number of characters, after the starting character, to include in the link area.</param>
      <param name="linkData">The data associated with the link.</param>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Link.Description">
      <summary>Gets or sets a text description of the link.</summary>
      <returns>A <see cref="T:System.String" /> representing a text description of the link.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Link.Enabled">
      <summary>Gets or sets a value indicating whether the link is enabled.</summary>
      <returns>
        <see langword="true" /> if the link is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Link.Length">
      <summary>Gets or sets the number of characters in the link text.</summary>
      <returns>The number of characters, including spaces, in the link text.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Link.LinkData">
      <summary>Gets or sets the data associated with the link.</summary>
      <returns>An <see cref="T:System.Object" /> representing the data associated with the link.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Link.Name">
      <summary>Gets or sets the name of the <see cref="T:System.Windows.Forms.LinkLabel.Link" />.</summary>
      <returns>A <see cref="T:System.String" /> representing the name of the <see cref="T:System.Windows.Forms.LinkLabel.Link" />. The default value is the empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Link.Start">
      <summary>Gets or sets the starting location of the link within the text of the <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
      <returns>The location within the text of the <see cref="T:System.Windows.Forms.LinkLabel" /> control where the link starts.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Link.Tag">
      <summary>Gets or sets the object that contains data about the <see cref="T:System.Windows.Forms.LinkLabel.Link" />.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the control. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.Link.Visited">
      <summary>Gets or sets a value indicating whether the user has visited the link.</summary>
      <returns>
        <see langword="true" /> if the link has been visited; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.LinkLabel.LinkCollection">
      <summary>Represents the collection of links within a <see cref="T:System.Windows.Forms.LinkLabel" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.#ctor(System.Windows.Forms.LinkLabel)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkLabel.LinkCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.LinkLabel" /> control that owns the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.Add(System.Int32,System.Int32)">
      <summary>Adds a link to the collection.</summary>
      <param name="start">The starting character within the text of the label where the link is created.</param>
      <param name="length">The number of characters after the starting character to include in the link text.</param>
      <returns>A <see cref="T:System.Windows.Forms.LinkLabel.Link" /> representing the link that was created and added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.Add(System.Int32,System.Int32,System.Object)">
      <summary>Adds a link to the collection with information to associate with the link.</summary>
      <param name="start">The starting character within the text of the label where the link is created.</param>
      <param name="length">The number of characters after the starting character to include in the link text.</param>
      <param name="linkData">The object containing the information to associate with the link.</param>
      <returns>A <see cref="T:System.Windows.Forms.LinkLabel.Link" /> representing the link that was created and added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.Add(System.Windows.Forms.LinkLabel.Link)">
      <summary>Adds a link with the specified value to the collection.</summary>
      <param name="value">A <see cref="T:System.Windows.Forms.LinkLabel.Link" /> representing the link to add.</param>
      <returns>The zero-based index where the link specified by the <paramref name="value" /> parameter is located in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.Clear">
      <summary>Clears all links from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.Contains(System.Windows.Forms.LinkLabel.Link)">
      <summary>Determines whether the specified link is within the collection.</summary>
      <param name="link">A <see cref="T:System.Windows.Forms.LinkLabel.Link" /> representing the link to search for in the collection.</param>
      <returns>
        <see langword="true" /> if the specified link is within the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.ContainsKey(System.String)">
      <summary>Returns a value indicating whether the collection contains a link with the specified key.</summary>
      <param name="key">The link to search for in the collection.</param>
      <returns>
        <see langword="true" /> if the collection contains an item with the specified key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.GetEnumerator">
      <summary>Returns an enumerator to use to iterate through the link collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the link collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.IndexOf(System.Windows.Forms.LinkLabel.Link)">
      <summary>Returns the index of the specified link within the collection.</summary>
      <param name="link">A <see cref="T:System.Windows.Forms.LinkLabel.Link" /> representing the link to search for in the collection.</param>
      <returns>The zero-based index where the link is located within the collection; otherwise, negative one (-1).</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.IndexOfKey(System.String)">
      <summary>Retrieves the zero-based index of the first occurrence of the specified key within the entire collection.</summary>
      <param name="key">The key to search the collection for.</param>
      <returns>The zero-based index of the first occurrence of value within the entire collection, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.Remove(System.Windows.Forms.LinkLabel.Link)">
      <summary>Removes the specified link from the collection.</summary>
      <param name="value">A <see cref="T:System.Windows.Forms.LinkLabel.Link" /> that represents the link to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.RemoveAt(System.Int32)">
      <summary>Removes a link at a specified location within the collection.</summary>
      <param name="index">The zero-based index of the item to remove from the collection.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="index" /> is a negative value or greater than the number of items in the collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.RemoveByKey(System.String)">
      <summary>Removes the link with the specified key.</summary>
      <param name="key">The key of the link to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>For a description of this member, see <see cref="M:System.Collections.ICollection.CopyTo(System.Array,System.Int32)" />.</summary>
      <param name="dest">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
      <param name="index">The zero-based index in <paramref name="dest" /> at which copying begins.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Add(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
      <param name="value">The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />.</param>
      <returns>The position into which the new element was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Contains(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Collections.IList" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Collections.IList" />.</param>
      <returns>The index of the <paramref name="link" /> parameter, if found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The <see cref="T:System.Object" /> to insert into the <see cref="T:System.Collections.IList" />.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Remove(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
      <param name="value">The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.IList" />.</param>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkCollection.Count">
      <summary>Gets the number of links in the collection.</summary>
      <returns>The number of links in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkCollection.IsReadOnly">
      <summary>Gets a value indicating whether this collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkCollection.Item(System.Int32)">
      <summary>Gets or sets the link at the specified index within the collection.</summary>
      <param name="index">The index of the link in the collection to get.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="index" /> is a negative value or greater than the number of items in the collection.</exception>
      <returns>An object representing the link located at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkCollection.Item(System.String)">
      <summary>Gets a link with the specified key from the collection.</summary>
      <param name="key">The name of the link to retrieve from the collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.LinkLabel.Link" /> with the specified key within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkCollection.LinksAdded">
      <summary>Gets a value indicating whether links have been added to the <see cref="T:System.Windows.Forms.LinkLabel.LinkCollection" />.</summary>
      <returns>
        <see langword="true" /> if links have been added to the <see cref="T:System.Windows.Forms.LinkLabel.LinkCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
      <returns>
        <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabel.LinkCollection.System#Collections#IList#Item(System.Int32)">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <returns>The element at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.LinkLabelLinkClickedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.LinkLabel.LinkClicked" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.LinkLabelLinkClickedEventArgs.#ctor(System.Windows.Forms.LinkLabel.Link)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkLabelLinkClickedEventArgs" /> class with the specified link.</summary>
      <param name="link">The <see cref="T:System.Windows.Forms.LinkLabel.Link" /> that was clicked.</param>
    </member>
    <member name="M:System.Windows.Forms.LinkLabelLinkClickedEventArgs.#ctor(System.Windows.Forms.LinkLabel.Link,System.Windows.Forms.MouseButtons)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.LinkLabelLinkClickedEventArgs" /> class with the specified link and the specified mouse button.</summary>
      <param name="link">The <see cref="T:System.Windows.Forms.LinkLabel.Link" /> that was clicked.</param>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.LinkLabelLinkClickedEventArgs.Button">
      <summary>Gets the mouse button that causes the link to be clicked.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.LinkLabelLinkClickedEventArgs.Link">
      <summary>Gets the <see cref="T:System.Windows.Forms.LinkLabel.Link" /> that was clicked.</summary>
      <returns>A link on the <see cref="T:System.Windows.Forms.LinkLabel" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.LinkLabelLinkClickedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.LinkLabel.LinkClicked" /> event of a <see cref="T:System.Windows.Forms.LinkLabel" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.LinkLabelLinkClickedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.LinkState">
      <summary>Specifies constants that define the state of the link.</summary>
    </member>
    <member name="F:System.Windows.Forms.LinkState.Active">
      <summary>The state of a link that has been clicked.</summary>
    </member>
    <member name="F:System.Windows.Forms.LinkState.Hover">
      <summary>The state of a link over which a mouse pointer is resting.</summary>
    </member>
    <member name="F:System.Windows.Forms.LinkState.Normal">
      <summary>The state of a link in its normal state (none of the other states apply).</summary>
    </member>
    <member name="F:System.Windows.Forms.LinkState.Visited">
      <summary>The state of a link that has been visited.</summary>
    </member>
    <member name="T:System.Windows.Forms.ListBindingConverter">
      <summary>Provides a type converter to convert <see cref="T:System.Windows.Forms.Binding" /> objects to and from various other representations.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBindingConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListBindingConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBindingConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns whether this converter can convert the object to the specified type, using the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you want to convert to.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the given value object to the specified type, using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" />. If <see langword="null" /> is passed, the current culture is assumed.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <param name="destinationType">The <see cref="T:System.Type" /> to convert the value parameter to.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
      <summary>Creates an instance of the type that this <see cref="T:System.ComponentModel.TypeConverter" /> is associated with, using the specified context, given a set of property values for the object.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="propertyValues">An <see cref="T:System.Collections.IDictionary" /> of new property values.</param>
      <returns>An <see cref="T:System.Object" /> representing the given <see cref="T:System.Collections.IDictionary" />, or <see langword="null" /> if the object cannot be created. This method always returns <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Returns whether changing a value on this object requires a call to <see cref="M:System.ComponentModel.TypeConverter.CreateInstance(System.Collections.IDictionary)" /> to create a new value, using the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <returns>
        <see langword="true" /> if changing a property on this object requires a call to <see cref="M:System.ComponentModel.TypeConverter.CreateInstance(System.Collections.IDictionary)" /> to create a new value; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListBindingHelper">
      <summary>Provides functionality to discover a bindable list and the properties of the items contained in the list when they differ from the public properties of the object to which they bind.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBindingHelper.GetList(System.Object)">
      <summary>Returns a list associated with the specified data source.</summary>
      <param name="list">The data source to examine for its underlying list.</param>
      <returns>An <see cref="T:System.Object" /> representing the underlying list if it exists; otherwise, the original data source specified by <paramref name="list" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingHelper.GetList(System.Object,System.String)">
      <summary>Returns an object, typically a list, from the evaluation of a specified data source and optional data member.</summary>
      <param name="dataSource">The data source from which to find the list.</param>
      <param name="dataMember">The name of the data source property that contains the list. This can be <see langword="null" />.</param>
      <exception cref="T:System.ArgumentException">The specified data member name did not match any of the properties found for the data source.</exception>
      <returns>An <see cref="T:System.Object" /> representing the underlying list if it was found; otherwise, <paramref name="dataSource" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingHelper.GetListItemProperties(System.Object)">
      <summary>Returns the <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that describes the properties of an item type contained in a specified data source, or properties of the specified data source.</summary>
      <param name="list">The data source to examine for property information.</param>
      <returns>The <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> containing the properties of the items contained in <paramref name="list" />, or properties of <paramref name="list" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingHelper.GetListItemProperties(System.Object,System.ComponentModel.PropertyDescriptor[])">
      <summary>Returns the <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that describes the properties of an item type contained in a collection property of a data source. Uses the specified <see cref="T:System.ComponentModel.PropertyDescriptor" /> array to indicate which properties to examine.</summary>
      <param name="list">The data source to be examined for property information.</param>
      <param name="listAccessors">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> array describing which properties of the data source to examine. This can be <see langword="null" />.</param>
      <returns>The <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> describing the properties of the item type contained in a collection property of the data source.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingHelper.GetListItemProperties(System.Object,System.String,System.ComponentModel.PropertyDescriptor[])">
      <summary>Returns the <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that describes the properties of an item type contained in the specified data member of a data source. Uses the specified <see cref="T:System.ComponentModel.PropertyDescriptor" /> array to indicate which properties to examine.</summary>
      <param name="dataSource">The data source to be examined for property information.</param>
      <param name="dataMember">The optional data member to be examined for property information. This can be <see langword="null" />.</param>
      <param name="listAccessors">The <see cref="T:System.ComponentModel.PropertyDescriptor" /> array describing which properties of the data member to examine. This can be <see langword="null" />.</param>
      <exception cref="T:System.ArgumentException">The specified data member could not be found in the specified data source.</exception>
      <returns>The <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> describing the properties of an item type contained in a collection property of the specified data source.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingHelper.GetListItemType(System.Object)">
      <summary>Returns the data type of the items in the specified list.</summary>
      <param name="list">The list to be examined for type information.</param>
      <returns>The <see cref="T:System.Type" /> of the items contained in the list.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingHelper.GetListItemType(System.Object,System.String)">
      <summary>Returns the data type of the items in the specified data source.</summary>
      <param name="dataSource">The data source to examine for items.</param>
      <param name="dataMember">The optional name of the property on the data source that is to be used as the data member. This can be <see langword="null" />.</param>
      <returns>For complex data binding, the <see cref="T:System.Type" /> of the items represented by the <paramref name="dataMember" /> in the data source; otherwise, the <see cref="T:System.Type" /> of the item in the list itself.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBindingHelper.GetListName(System.Object,System.ComponentModel.PropertyDescriptor[])">
      <summary>Returns the name of an underlying list, given a data source and optional <see cref="T:System.ComponentModel.PropertyDescriptor" /> array.</summary>
      <param name="list">The data source to examine for the list name.</param>
      <param name="listAccessors">An array of <see cref="T:System.ComponentModel.PropertyDescriptor" /> objects to find in the data source. This can be <see langword="null" />.</param>
      <returns>The name of the list in the data source, as described by <paramref name="listAccessors" />, or the name of the data source type.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListBox">
      <summary>Represents a Windows control to display a list of items.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.BackgroundImageChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListBox.BackgroundImage" /> property of the label changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListBox.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.Click">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ListBox" /> control is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.DrawItem">
      <summary>Occurs when a visual aspect of an owner-drawn <see cref="T:System.Windows.Forms.ListBox" /> changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.MeasureItem">
      <summary>Occurs when an owner-drawn <see cref="T:System.Windows.Forms.ListBox" /> is created and the sizes of the list items are determined.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.MouseClick">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.ListBox" /> control with the mouse pointer.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ListBox.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.Paint">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ListBox" /> control is painted.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.SelectedIndexChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListBox.SelectedIndex" /> property or the <see cref="P:System.Windows.Forms.ListBox.SelectedIndices" /> collection has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListBox.TextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListBox.Text" /> property is changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListBox.DefaultItemHeight">
      <summary>Specifies the default item height for an owner-drawn <see cref="T:System.Windows.Forms.ListBox" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListBox.NoMatches">
      <summary>Specifies that no matches are found during a search.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.AddItemsCore(System.Object[])">
      <summary>This member is obsolete, and there is no replacement.</summary>
      <param name="value">An array of objects.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.BeginUpdate">
      <summary>Maintains performance while items are added to the <see cref="T:System.Windows.Forms.ListBox" /> one at a time by preventing the control from drawing until the <see cref="M:System.Windows.Forms.ListBox.EndUpdate" /> method is called.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ClearSelected">
      <summary>Unselects all items in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for this control.</summary>
      <returns>An accessibility object for this control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.CreateItemCollection">
      <summary>Creates a new instance of the item collection.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> that represents the new item collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.EndUpdate">
      <summary>Resumes painting the <see cref="T:System.Windows.Forms.ListBox" /> control after painting is suspended by the <see cref="M:System.Windows.Forms.ListBox.BeginUpdate" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.FindString(System.String)">
      <summary>Finds the first item in the <see cref="T:System.Windows.Forms.ListBox" /> that starts with the specified string.</summary>
      <param name="s">The text to search for.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="s" /> parameter is less than -1 or greater than or equal to the item count.</exception>
      <returns>The zero-based index of the first item found; returns <see langword="ListBox.NoMatches" /> if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.FindString(System.String,System.Int32)">
      <summary>Finds the first item in the <see cref="T:System.Windows.Forms.ListBox" /> that starts with the specified string. The search starts at a specific starting index.</summary>
      <param name="s">The text to search for.</param>
      <param name="startIndex">The zero-based index of the item before the first item to be searched. Set to negative one (-1) to search from the beginning of the control.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="startIndex" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListBox.ObjectCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> class.</exception>
      <returns>The zero-based index of the first item found; returns <see langword="ListBox.NoMatches" /> if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.FindStringExact(System.String)">
      <summary>Finds the first item in the <see cref="T:System.Windows.Forms.ListBox" /> that exactly matches the specified string.</summary>
      <param name="s">The text to search for.</param>
      <returns>The zero-based index of the first item found; returns <see langword="ListBox.NoMatches" /> if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.FindStringExact(System.String,System.Int32)">
      <summary>Finds the first item in the <see cref="T:System.Windows.Forms.ListBox" /> that exactly matches the specified string. The search starts at a specific starting index.</summary>
      <param name="s">The text to search for.</param>
      <param name="startIndex">The zero-based index of the item before the first item to be searched. Set to negative one (-1) to search from the beginning of the control.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="startIndex" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListBox.ObjectCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> class.</exception>
      <returns>The zero-based index of the first item found; returns <see langword="ListBox.NoMatches" /> if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.GetItemHeight(System.Int32)">
      <summary>Returns the height of an item in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <param name="index">The zero-based index of the item to return the height for.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value of the <paramref name="index" /> parameter is less than zero or greater than the item count.</exception>
      <returns>The height, in pixels, of the specified item.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.GetItemRectangle(System.Int32)">
      <summary>Returns the bounding rectangle for an item in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <param name="index">The zero-based index of item whose bounding rectangle you want to return.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListBox.ObjectCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> class.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounding rectangle for the specified item.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Retrieves the bounds within which the <see cref="T:System.Windows.Forms.ListBox" /> is scaled.</summary>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area for which to retrieve the display bounds.</param>
      <param name="factor">The height and width of the control's bounds.</param>
      <param name="specified">One of the values of <see cref="T:System.Windows.Forms.BoundsSpecified" /> that specifies the bounds of the control to use when defining its size and position.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> representing the bounds within which the control is scaled.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.GetSelected(System.Int32)">
      <summary>Returns a value indicating whether the specified item is selected.</summary>
      <param name="index">The zero-based index of the item that determines whether it is selected.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListBox.ObjectCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> class.</exception>
      <returns>
        <see langword="true" /> if the specified item is currently selected in the <see cref="T:System.Windows.Forms.ListBox" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IndexFromPoint(System.Drawing.Point)">
      <summary>Returns the zero-based index of the item at the specified coordinates.</summary>
      <param name="p">A <see cref="T:System.Drawing.Point" /> object containing the coordinates used to obtain the item index.</param>
      <returns>The zero-based index of the item found at the specified coordinates; returns <see langword="ListBox.NoMatches" /> if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IndexFromPoint(System.Int32,System.Int32)">
      <summary>Returns the zero-based index of the item at the specified coordinates.</summary>
      <param name="x">The x-coordinate of the location to search.</param>
      <param name="y">The y-coordinate of the location to search.</param>
      <returns>The zero-based index of the item found at the specified coordinates; returns <see langword="ListBox.NoMatches" /> if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnChangeUICues(System.Windows.Forms.UICuesEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ChangeUICues" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.UICuesEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnDataSourceChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.DataSourceChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnDisplayMemberChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.DisplayMemberChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListBox.DrawItem" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An event data instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnHandleCreated(System.EventArgs)">
      <summary>Specifies when the window handle has been created so that column width and other characteristics can be set. Inheriting classes should call <see langword="base.OnHandleCreated" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnHandleDestroyed(System.EventArgs)">
      <summary>Overridden to be sure that items are set up and cleared out correctly. Inheriting controls should call <see langword="base.OnHandleDestroyed" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListBox.MeasureItem" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MeasureItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnParentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnSelectedIndexChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.SelectedValueChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.OnSelectedValueChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.SelectedValueChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.Refresh">
      <summary>Forces the control to invalidate its client area and immediately redraw itself and any child controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.RefreshItem(System.Int32)">
      <summary>Refreshes the item contained at the specified index.</summary>
      <param name="index">The zero-based index of the element to refresh.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.RefreshItems">
      <summary>Refreshes all <see cref="T:System.Windows.Forms.ListBox" /> items and retrieves new strings for them.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.RescaleConstantsForDpi(System.Int32,System.Int32)">
      <summary>Provides constants for rescaling the control when a DPI change occurs.</summary>
      <param name="deviceDpiOld">The DPI value prior to the change.</param>
      <param name="deviceDpiNew">The DPI value after the change.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ResetBackColor">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.BackColor" /> property to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ResetForeColor">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Scales a control's location, size, padding and margin.</summary>
      <param name="factor">The factor by which the height and width of the control will be scaled.</param>
      <param name="specified">A <see cref="T:System.Windows.Forms.BoundsSpecified" /> value that specifies the bounds of the control to use when defining its size and position.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Sets the specified bounds of the <see cref="T:System.Windows.Forms.ListBox" /> control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SetItemCore(System.Int32,System.Object)">
      <summary>Sets the object with the specified index in the derived class.</summary>
      <param name="index">The array index of the object.</param>
      <param name="value">The object.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SetItemsCore(System.Collections.IList)">
      <summary>Clears the contents of the <see cref="T:System.Windows.Forms.ListBox" /> and adds the specified items to the control.</summary>
      <param name="value">An array of objects to insert into the control.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SetSelected(System.Int32,System.Boolean)">
      <summary>Selects or clears the selection for the specified item in a <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <param name="index">The zero-based index of the item in a <see cref="T:System.Windows.Forms.ListBox" /> to select or clear the selection for.</param>
      <param name="value">
        <see langword="true" /> to select the specified item; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified index was outside the range of valid values.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.ListBox.SelectionMode" /> property was set to <see langword="None" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.Sort">
      <summary>Sorts the items in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ToString">
      <summary>Returns a string representation of the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>A string that states the control type, the count of items in the <see cref="T:System.Windows.Forms.ListBox" /> control, and the Text property of the first item in the <see cref="T:System.Windows.Forms.ListBox" />, if the count is not 0.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.WmReflectCommand(System.Windows.Forms.Message@)">
      <summary>Processes the command message the <see cref="T:System.Windows.Forms.ListView" /> control receives from the top-level window.</summary>
      <param name="m">The <see cref="T:System.Windows.Forms.Message" /> the top-level window sent to the <see cref="T:System.Windows.Forms.ListBox" /> control.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.WndProc(System.Windows.Forms.Message@)">
      <summary>The list's window procedure.</summary>
      <param name="m">A Windows Message Object.</param>
    </member>
    <member name="P:System.Windows.Forms.ListBox.AllowSelection">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ListBox" /> currently enables selection of list items.</summary>
      <returns>
        <see langword="true" /> if <see cref="T:System.Windows.Forms.SelectionMode" /> is not <see cref="F:System.Windows.Forms.SelectionMode.None" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.BackgroundImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>The background image of the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.BackgroundImageLayout">
      <summary>Gets or sets the background image layout for a <see cref="T:System.Windows.Forms.ListBox" /> as defined in the <see cref="T:System.Windows.Forms.ImageLayout" /> enumeration.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified enumeration value does not exist.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.ImageLayout" />. The values are <see langword="Center" />, <see langword="None" />, <see langword="Stretch" />, <see langword="Tile" />, or <see langword="Zoom" />. <see langword="Center" /> is the default value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.BorderStyle">
      <summary>Gets or sets the type of border that is drawn around the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value is not one of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see cref="F:System.Windows.Forms.BorderStyle.Fixed3D" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ColumnWidth">
      <summary>Gets or sets the width of columns in a multicolumn <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <exception cref="T:System.ArgumentException">A value less than zero is assigned to the property.</exception>
      <returns>The width, in pixels, of each column in the control. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.CustomTabOffsets">
      <summary>Gets the width of the tabs between the items in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>A collection of integers representing the tab widths.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.DrawMode">
      <summary>Gets or sets the drawing mode for the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned to the property is not a member of the <see cref="T:System.Windows.Forms.DrawMode" /> enumeration.</exception>
      <exception cref="T:System.ArgumentException">A multicolumn <see cref="T:System.Windows.Forms.ListBox" /> cannot have a variable-sized height.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DrawMode" /> values representing the mode for drawing the items of the control. The default is <see langword="DrawMode.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.Font">
      <summary>Gets or sets the font of the text displayed by the control.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ForeColor">
      <summary>Gets or sets the foreground color of the control.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.HorizontalExtent">
      <summary>Gets or sets the width by which the horizontal scroll bar of a <see cref="T:System.Windows.Forms.ListBox" /> can scroll.</summary>
      <returns>The width, in pixels, that the horizontal scroll bar can scroll the control. The default is zero.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.HorizontalScrollbar">
      <summary>Gets or sets a value indicating whether a horizontal scroll bar is displayed in the control.</summary>
      <returns>
        <see langword="true" /> to display a horizontal scroll bar in the control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.IntegralHeight">
      <summary>Gets or sets a value indicating whether the control should resize to avoid showing partial items.</summary>
      <returns>
        <see langword="true" /> if the control resizes so that it does not display partial items; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ItemHeight">
      <summary>Gets or sets the height of an item in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.Windows.Forms.ListBox.ItemHeight" /> property was set to less than 0 or more than 255 pixels.</exception>
      <returns>The height, in pixels, of an item in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.Items">
      <summary>Gets the items of the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> representing the items in the <see cref="T:System.Windows.Forms.ListBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.MultiColumn">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ListBox" /> supports multiple columns.</summary>
      <exception cref="T:System.ArgumentException">A multicolumn <see cref="T:System.Windows.Forms.ListBox" /> cannot have a variable-sized height.</exception>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ListBox" /> supports multiple columns; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.Padding">
      <summary>This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.PreferredHeight">
      <summary>Gets the combined height of all items in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>The combined height, in pixels, of all items in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ScrollAlwaysVisible">
      <summary>Gets or sets a value indicating whether the vertical scroll bar is shown at all times.</summary>
      <returns>
        <see langword="true" /> if the vertical scroll bar should always be displayed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedIndex">
      <summary>Gets or sets the zero-based index of the currently selected item in a <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than -1 or greater than or equal to the item count.</exception>
      <exception cref="T:System.ArgumentException">The <see cref="P:System.Windows.Forms.ListBox.SelectionMode" /> property is set to <see langword="None" />.</exception>
      <returns>A zero-based index of the currently selected item. A value of negative one (-1) is returned if no item is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedIndices">
      <summary>Gets a collection that contains the zero-based indexes of all currently selected items in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" /> containing the indexes of the currently selected items in the control. If no items are currently selected, an empty <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" /> is returned.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedItem">
      <summary>Gets or sets the currently selected item in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>An object that represents the current selection in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedItems">
      <summary>Gets a collection containing the currently selected items in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListBox.SelectedObjectCollection" /> containing the currently selected items in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectionMode">
      <summary>Gets or sets the method in which items are selected in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.SelectionMode" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.SelectionMode" /> values. The default is <see langword="SelectionMode.One" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.Sorted">
      <summary>Gets or sets a value indicating whether the items in the <see cref="T:System.Windows.Forms.ListBox" /> are sorted alphabetically.</summary>
      <returns>
        <see langword="true" /> if items in the control are sorted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.Text">
      <summary>Gets or searches for the text of the currently selected item in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>The text of the currently selected item in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.TopIndex">
      <summary>Gets or sets the index of the first visible item in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>The zero-based index of the first visible item in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.UseCustomTabOffsets">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ListBox" /> recognizes and expands tab characters when it draws its strings by using the <see cref="P:System.Windows.Forms.ListBox.CustomTabOffsets" /> integer array.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ListBox" /> recognizes and expands tab characters; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.UseTabStops">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ListBox" /> can recognize and expand tab characters when drawing its strings.</summary>
      <returns>
        <see langword="true" /> if the control can expand tab characters; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListBox.IntegerCollection">
      <summary>Represents a collection of integers in a <see cref="T:System.Windows.Forms.ListBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.#ctor(System.Windows.Forms.ListBox)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ListBox" /> that owns the collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="owner" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.Add(System.Int32)">
      <summary>Adds a unique integer to the collection in sorted order.</summary>
      <param name="item">The integer to add to the collection.</param>
      <exception cref="T:System.SystemException">There is insufficient space available to store the new item.</exception>
      <returns>The index of the added item.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.AddRange(System.Int32[])">
      <summary>Adds an array of integers to the collection.</summary>
      <param name="items">The array of integers to add to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.AddRange(System.Windows.Forms.ListBox.IntegerCollection)">
      <summary>Adds the contents of an existing <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" /> to another collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" /> to add to another collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.Clear">
      <summary>Removes all integers from the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.Contains(System.Int32)">
      <summary>Determines whether the specified integer is in the collection.</summary>
      <param name="item">The integer to search for in the collection.</param>
      <returns>
        <see langword="true" /> if the specified integer is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" /> into an existing array of integers at a specified location within the array.</summary>
      <param name="destination">The array into which the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" /> is copied.</param>
      <param name="index">The location within the destination array to which to copy the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="destination" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.IndexOf(System.Int32)">
      <summary>Retrieves the index within the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" /> of the specified integer.</summary>
      <param name="item">The integer for which to retrieve the index.</param>
      <returns>The zero-based index of the integer in the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />; otherwise, negative one (-1).</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.Remove(System.Int32)">
      <summary>Removes the specified integer from the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</summary>
      <param name="item">The integer to remove from the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.RemoveAt(System.Int32)">
      <summary>Removes the integer at the specified index from the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</summary>
      <param name="index">The zero-based index of the integer to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IEnumerable#GetEnumerator">
      <summary>Retrieves an enumeration of all the integers in the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds a tab stop to the collection.</summary>
      <param name="item">The tab stop to add to the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="item" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="item" /> is not an 32-bit signed integer.</exception>
      <exception cref="T:System.SystemException">There is insufficient space to store the new item in the collection.</exception>
      <returns>The index at which the integer was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Clear">
      <summary>Clears all the tab stops from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified tab stop is in the collection.</summary>
      <param name="item">The tab stop to locate in the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</param>
      <returns>
        <see langword="true" /> if item is an integer located in the IntegerCollection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index of the specified tab stop in the collection.</summary>
      <param name="item">The tab stop to locate in the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</param>
      <returns>The zero-based index of item if it was found in the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the collection at a specified index.</summary>
      <param name="index">The zero-based index at which value should be inserted.</param>
      <param name="value">The object to insert into the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of an item from the collection.</summary>
      <param name="value">The object to add to the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Removes the item at a specified index.</summary>
      <param name="index">The index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.ListBox.IntegerCollection.Count">
      <summary>Gets the number of selected items in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <returns>The number of selected items in the <see cref="T:System.Windows.Forms.ListBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.IntegerCollection.Item(System.Int32)">
      <summary>Gets or sets the element at the specified index.</summary>
      <param name="index">The position of the element in the collection.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">.NET 5 and later: <paramref name="index" /> is out of range.</exception>
      <returns>The element at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection of controls.</summary>
      <returns>The object used to synchronize to the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.IntegerCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the tab stop at the specified index.</summary>
      <param name="index">The zero-based index that specifies which tab stop to get.</param>
      <exception cref="T:System.ArgumentException">The object is not an integer.</exception>
      <returns>The tab stop that is stored at the specified location in the <see cref="T:System.Windows.Forms.ListBox.IntegerCollection" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListBox.ObjectCollection">
      <summary>Represents the collection of items in a <see cref="T:System.Windows.Forms.ListBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.#ctor(System.Windows.Forms.ListBox)">
      <summary>Initializes a new instance of <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" />.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ListBox" /> that owns the collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="owner" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.#ctor(System.Windows.Forms.ListBox,System.Object[])">
      <summary>Initializes a new instance of <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> containing an array of objects.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ListBox" /> that owns the collection.</param>
      <param name="value">An array of objects to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: Either <paramref name="owner" /> or <paramref name="value" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.#ctor(System.Windows.Forms.ListBox,System.Windows.Forms.ListBox.ObjectCollection)">
      <summary>Initializes a new instance of <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> based on another <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" />.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ListBox" /> that owns the collection.</param>
      <param name="value">A <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> from which the contents are copied to this collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: Either <paramref name="owner" /> or <paramref name="value" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.Add(System.Object)">
      <summary>Adds an item to the list of items for a <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <param name="item">An object representing the item to add to the collection.</param>
      <exception cref="T:System.SystemException">There is insufficient space available to add the new item to the list.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="item" /> is <see langword="null" />.</exception>
      <returns>The zero-based index of the item in the collection, or -1 if <see cref="M:System.Windows.Forms.ListBox.BeginUpdate" /> has been called.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.AddRange(System.Object[])">
      <summary>Adds an array of items to the list of items for a <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <param name="items">An array of objects to add to the list.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="items" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.AddRange(System.Windows.Forms.ListBox.ObjectCollection)">
      <summary>Adds the items of an existing <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> to the list of items in a <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <param name="value">A <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> to load into this collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="value" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.Clear">
      <summary>Removes all items from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.Contains(System.Object)">
      <summary>Determines whether the specified item is located within the collection.</summary>
      <param name="value">An object representing the item to locate in the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the item is located within the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.CopyTo(System.Object[],System.Int32)">
      <summary>Copies the entire collection into an existing array of objects at a specified location within the array.</summary>
      <param name="destination">The object array to which the items from the collection are copied.</param>
      <param name="arrayIndex">The location within the destination array to copy the items from the collection to.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="destination" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.GetEnumerator">
      <summary>Returns an enumerator to use to iterate through the item collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the item collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.IndexOf(System.Object)">
      <summary>Returns the index within the collection of the specified item.</summary>
      <param name="value">An object representing the item to locate in the collection.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is null.</exception>
      <returns>The zero-based index where the item is located within the collection; otherwise, negative one (-1).</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the list box at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="item">An object representing the item to insert.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than value of the <see cref="P:System.Windows.Forms.ListBox.ObjectCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> class.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="item" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.Remove(System.Object)">
      <summary>Removes the specified object from the collection.</summary>
      <param name="value">An object representing the item to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.RemoveAt(System.Int32)">
      <summary>Removes the item at the specified index within the collection.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListBox.ObjectCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> class.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to an array, starting at a particular array index.</summary>
      <param name="destination">The one-dimensional array that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
      <exception cref="T:System.ArrayTypeMismatchException">The array type is not compatible with the items in the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" />.</exception>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="destination" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an object to the <see cref="T:System.Windows.Forms.ListBox" /> class.</summary>
      <param name="item">The object to be added to the <see cref="T:System.Windows.Forms.ListBox" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="item" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The current <see cref="T:System.Windows.Forms.ListBox" /> has a data source.</exception>
      <exception cref="T:System.SystemException">There is insufficient space available to store the new item.</exception>
      <returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the <see cref="T:System.Collections.IList" /> contains a specific value.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Collections.IList" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Determines the index of a specific item in the <see cref="T:System.Collections.IList" />.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Collections.IList" />.</param>
      <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an item to the <see cref="T:System.Collections.IList" /> at the specified index.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="item" />
    </member>
    <member name="M:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList" />.</summary>
      <param name="value">The object to remove from the <see cref="T:System.Collections.IList" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ObjectCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ObjectCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if this collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ObjectCollection.Item(System.Int32)">
      <summary>Gets or sets the item at the specified index within the collection.</summary>
      <param name="index">The index of the item in the collection to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListBox.ObjectCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> class.</exception>
      <returns>An object representing the item located at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.ObjectCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the element at the specified index.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <returns>The element at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListBox.SelectedIndexCollection">
      <summary>Represents the collection containing the indexes to the selected items in a <see cref="T:System.Windows.Forms.ListBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.#ctor(System.Windows.Forms.ListBox)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" /> class.</summary>
      <param name="owner">A <see cref="T:System.Windows.Forms.ListBox" /> representing the owner of the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.Add(System.Int32)">
      <summary>Adds the <see cref="T:System.Windows.Forms.ListBox" /> at the specified index location.</summary>
      <param name="index">The location in the array at which to add the <see cref="T:System.Windows.Forms.ListBox" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.Clear">
      <summary>Removes all controls from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.Contains(System.Int32)">
      <summary>Determines whether the specified index is located within the collection.</summary>
      <param name="selectedIndex">The index to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified index from the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> for the <see cref="T:System.Windows.Forms.ListBox" /> is an item in this collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire collection into an existing array at a specified location within the array.</summary>
      <param name="destination">The destination array.</param>
      <param name="index">The index in the destination array at which storing begins.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.GetEnumerator">
      <summary>Returns an enumerator to use to iterate through the selected indexes collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the selected indexes collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.IndexOf(System.Int32)">
      <summary>Returns the index within the <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" /> of the specified index from the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> of the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <param name="selectedIndex">The zero-based index from the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> to locate in this collection.</param>
      <returns>The zero-based index in the collection where the specified index of the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> was located within the <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" />; otherwise, negative one (-1).</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.Remove(System.Int32)">
      <summary>Removes the specified control from the collection.</summary>
      <param name="index">The control to be removed.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Add(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
      <param name="value">The index to add to the collection.</param>
      <returns>The position into which the index was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Clear">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Contains(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</summary>
      <param name="selectedIndex">The index to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified index from the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> for the <see cref="T:System.Windows.Forms.ListBox" /> is an item in this collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</summary>
      <param name="selectedIndex">The zero-based index from the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> to locate in this collection.</param>
      <returns>The zero-based index in the collection where the specified index of the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> is located if it is in the <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" />; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
      <param name="index">The index at which value should be inserted.</param>
      <param name="value">The object to be added to the <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Remove(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
      <param name="value">The object to be removed from the <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedIndexCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedIndexCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedIndexCollection.Item(System.Int32)">
      <summary>Gets the index value at the specified index within this collection.</summary>
      <param name="index">The index of the item in the collection to get.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListBox.SelectedIndexCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" /> class.</exception>
      <returns>The index value from the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> that is stored at the specified location.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.ListBox.SelectedIndexCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedIndexCollection.System#Collections#IList#Item(System.Int32)">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the element to get.</param>
      <returns>The index value from the <see cref="T:System.Windows.Forms.ListBox.ObjectCollection" /> that is stored at the specified location.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListBox.SelectedObjectCollection">
      <summary>Represents the collection of selected items in the <see cref="T:System.Windows.Forms.ListBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.#ctor(System.Windows.Forms.ListBox)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListBox.SelectedObjectCollection" /> class.</summary>
      <param name="owner">A <see cref="T:System.Windows.Forms.ListBox" /> representing the owner of the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.Add(System.Object)">
      <summary>Adds an item to the list of selected items for a <see cref="T:System.Windows.Forms.ListBox" />.</summary>
      <param name="value">An object representing the item to add to the collection of selected items.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.Clear">
      <summary>Removes all items from the collection of selected items.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.Contains(System.Object)">
      <summary>Determines whether the specified item is located within the collection.</summary>
      <param name="selectedObject">An object representing the item to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified item is located in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire collection into an existing array at a specified location within the array.</summary>
      <param name="destination">An array to copy the contents of the collection to.</param>
      <param name="index">The location within the destination array to copy the items from the collection to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the selected item collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the item collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.IndexOf(System.Object)">
      <summary>Returns the index within the collection of the specified item.</summary>
      <param name="selectedObject">An object representing the item to locate in the collection.</param>
      <returns>The zero-based index of the item in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.Remove(System.Object)">
      <summary>Removes the specified object from the collection of selected items.</summary>
      <param name="value">An object representing the item to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#Add(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
      <param name="value">The object to add to the collection.</param>
      <returns>The position into which the object was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#Clear">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
      <param name="index">The zero-based index at which the object should be inserted.</param>
      <param name="value">The object to insert into the <see cref="T:System.Windows.Forms.ListBox.SelectedObjectCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#Remove(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
      <param name="value">The object to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the object to remove from the <see cref="T:System.Windows.Forms.ListBox.SelectedObjectCollection" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedObjectCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedObjectCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedObjectCollection.Item(System.Int32)">
      <summary>Gets the item at the specified index within the collection.</summary>
      <param name="index">The index of the item in the collection to retrieve.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListBox.ObjectCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListBox.SelectedObjectCollection" /> class.</exception>
      <returns>An object representing the item located at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
      <returns>
        <see langword="true" /> if the list is synchronized; otherwise <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
      <returns>An object that can be used to synchronize access to the underlying list.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListBox.SelectedObjectCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
      <returns>
        <see langword="true" /> if the underlying list has a fixed size; otherwise <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListControl">
      <summary>Provides a common implementation of members for the <see cref="T:System.Windows.Forms.ListBox" /> and <see cref="T:System.Windows.Forms.ComboBox" /> classes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListControl.DataSourceChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListControl.DataSource" /> changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListControl.DisplayMemberChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListControl.DisplayMember" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListControl.Format">
      <summary>Occurs when the control is bound to a data value.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListControl.FormatInfoChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ListControl.FormatInfo" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListControl.FormatStringChanged">
      <summary>Occurs when value of the <see cref="P:System.Windows.Forms.ListControl.FormatString" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListControl.FormattingEnabledChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ListControl.FormattingEnabled" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListControl.SelectedValueChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListControl.SelectedValue" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListControl.ValueMemberChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListControl.ValueMember" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListControl.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListControl" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListControl.FilterItemOnProperty(System.Object)">
      <summary>Retrieves the current value of the <see cref="T:System.Windows.Forms.ListControl" /> item, if it is a property of an object, given the item.</summary>
      <param name="item">The object the <see cref="T:System.Windows.Forms.ListControl" /> item is bound to.</param>
      <returns>The filtered object.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListControl.FilterItemOnProperty(System.Object,System.String)">
      <summary>Returns the current value of the <see cref="T:System.Windows.Forms.ListControl" /> item, if it is a property of an object given the item and the property name.</summary>
      <param name="item">The object the <see cref="T:System.Windows.Forms.ListControl" /> item is bound to.</param>
      <param name="field">The property name of the item the <see cref="T:System.Windows.Forms.ListControl" /> is bound to.</param>
      <returns>The filtered object.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListControl.GetItemText(System.Object)">
      <summary>Returns the text representation of the specified item.</summary>
      <param name="item">The object from which to get the contents to display.</param>
      <returns>If the <see cref="P:System.Windows.Forms.ListControl.DisplayMember" /> property is not specified, the value returned by <see cref="M:System.Windows.Forms.ListControl.GetItemText(System.Object)" /> is the value of the item's <see langword="ToString" /> method. Otherwise, the method returns the string value of the member specified in the <see cref="P:System.Windows.Forms.ListControl.DisplayMember" /> property for the object specified in the <paramref name="item" /> parameter.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListControl.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Handles special input keys, such as PAGE UP, PAGE DOWN, HOME, END, and so on.</summary>
      <param name="keyData">One of the values of <see cref="T:System.Windows.Forms.Keys" />.</param>
      <returns>
        <see langword="true" /> if the <paramref name="keyData" /> parameter specifies the <see cref="F:System.Windows.Forms.Keys.End" />, <see cref="F:System.Windows.Forms.Keys.Home" />, <see cref="F:System.Windows.Forms.Keys.PageUp" />, or <see cref="F:System.Windows.Forms.Keys.PageDown" /> key; <see langword="false" /> if the <paramref name="keyData" /> parameter specifies <see cref="F:System.Windows.Forms.Keys.Alt" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnBindingContextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BindingContextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnDataSourceChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.DataSourceChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnDisplayMemberChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.DisplayMemberChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnFormat(System.Windows.Forms.ListControlConvertEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.Format" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ListControlConvertEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnFormatInfoChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.FormatInfoChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnFormatStringChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.FormatStringChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnFormattingEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.FormattingEnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnSelectedIndexChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.SelectedValueChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnSelectedValueChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.SelectedValueChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.OnValueMemberChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListControl.ValueMemberChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.RefreshItem(System.Int32)">
      <summary>When overridden in a derived class, resynchronizes the data of the object at the specified index with the contents of the data source.</summary>
      <param name="index">The zero-based index of the item whose data to refresh.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.RefreshItems">
      <summary>When overridden in a derived class, resynchronizes the item data with the contents of the data source.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListControl.SetItemCore(System.Int32,System.Object)">
      <summary>When overridden in a derived class, sets the object with the specified index in the derived class.</summary>
      <param name="index">The array index of the object.</param>
      <param name="value">The object.</param>
    </member>
    <member name="M:System.Windows.Forms.ListControl.SetItemsCore(System.Collections.IList)">
      <summary>When overridden in a derived class, sets the specified array of objects in a collection in the derived class.</summary>
      <param name="items">An array of items.</param>
    </member>
    <member name="P:System.Windows.Forms.ListControl.AllowSelection">
      <summary>Gets a value indicating whether the list enables selection of list items.</summary>
      <returns>
        <see langword="true" /> if the list enables list item selection; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListControl.DataManager">
      <summary>Gets the <see cref="T:System.Windows.Forms.CurrencyManager" /> associated with this control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.CurrencyManager" /> associated with this control. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListControl.DataSource">
      <summary>Gets or sets the data source for this <see cref="T:System.Windows.Forms.ListControl" />.</summary>
      <exception cref="T:System.ArgumentException">The assigned value does not implement the <see cref="T:System.Collections.IList" /> or <see cref="T:System.ComponentModel.IListSource" /> interfaces.</exception>
      <returns>An object that implements the <see cref="T:System.Collections.IList" /> or <see cref="T:System.ComponentModel.IListSource" /> interfaces, such as a <see cref="T:System.Data.DataSet" /> or an <see cref="T:System.Array" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListControl.DisplayMember">
      <summary>Gets or sets the property to display for this <see cref="T:System.Windows.Forms.ListControl" />.</summary>
      <returns>A <see cref="T:System.String" /> specifying the name of an object property that is contained in the collection specified by the <see cref="P:System.Windows.Forms.ListControl.DataSource" /> property. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.ListControl.FormatInfo">
      <summary>Gets or sets the <see cref="T:System.IFormatProvider" /> that provides custom formatting behavior.</summary>
      <returns>The <see cref="T:System.IFormatProvider" /> implementation that provides custom formatting behavior.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListControl.FormatString">
      <summary>Gets or sets the format-specifier characters that indicate how a value is to be displayed.</summary>
      <returns>The string of format-specifier characters that indicates how a value is to be displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListControl.FormattingEnabled">
      <summary>Gets or sets a value indicating whether formatting is applied to the <see cref="P:System.Windows.Forms.ListControl.DisplayMember" /> property of the <see cref="T:System.Windows.Forms.ListControl" />.</summary>
      <returns>
        <see langword="true" /> if formatting of the <see cref="P:System.Windows.Forms.ListControl.DisplayMember" /> property is enabled; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListControl.SelectedIndex">
      <summary>When overridden in a derived class, gets or sets the zero-based index of the currently selected item.</summary>
      <returns>A zero-based index of the currently selected item. A value of negative one (-1) is returned if no item is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListControl.SelectedValue">
      <summary>Gets or sets the value of the member property specified by the <see cref="P:System.Windows.Forms.ListControl.ValueMember" /> property.</summary>
      <exception cref="T:System.InvalidOperationException">The assigned value is <see langword="null" /> or the empty string ("").</exception>
      <returns>An object containing the value of the member of the data source specified by the <see cref="P:System.Windows.Forms.ListControl.ValueMember" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListControl.ValueMember">
      <summary>Gets or sets the path of the property to use as the actual value for the items in the <see cref="T:System.Windows.Forms.ListControl" />.</summary>
      <exception cref="T:System.ArgumentException">The specified property path cannot be resolved through the object specified by the <see cref="P:System.Windows.Forms.ListControl.DataSource" /> property.</exception>
      <returns>A <see cref="T:System.String" /> representing a single property name of the <see cref="P:System.Windows.Forms.ListControl.DataSource" /> property value, or a hierarchy of period-delimited property names that resolves to a property name of the final data-bound object. The default is an empty string ("").</returns>
    </member>
    <member name="T:System.Windows.Forms.ListControlConvertEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListControl.Format" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListControlConvertEventArgs.#ctor(System.Object,System.Type,System.Object)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListControlConvertEventArgs" /> class with the specified object, type, and list item.</summary>
      <param name="value">The value displayed in the <see cref="T:System.Windows.Forms.ListControl" />.</param>
      <param name="desiredType">The <see cref="T:System.Type" /> for the displayed item.</param>
      <param name="listItem">The data source item to be displayed in the <see cref="T:System.Windows.Forms.ListControl" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ListControlConvertEventArgs.ListItem">
      <summary>Gets a data source item.</summary>
      <returns>The <see cref="T:System.Object" /> that represents an item in the data source.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListControlConvertEventHandler">
      <summary>Represents the method that will handle converting a <see cref="T:System.Windows.Forms.ListControl" />.</summary>
      <param name="sender">A reference to the event sender.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ListControlConvertEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ListView">
      <summary>Represents a Windows list view control, which displays a collection of items that can be displayed using one of four different views.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.AfterLabelEdit">
      <summary>Occurs when the label for an item is edited by the user.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListView.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.BeforeLabelEdit">
      <summary>Occurs when the user starts editing the label of an item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.CacheVirtualItems">
      <summary>Occurs when the contents of the display area for a <see cref="T:System.Windows.Forms.ListView" /> in virtual mode has changed, and the <see cref="T:System.Windows.Forms.ListView" /> determines that a new range of items is needed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ColumnClick">
      <summary>Occurs when the user clicks a column header within the list view control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ColumnReordered">
      <summary>Occurs when the column header order is changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ColumnWidthChanged">
      <summary>Occurs after the width of a column is successfully changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ColumnWidthChanging">
      <summary>Occurs when the width of a column is changing.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.DrawColumnHeader">
      <summary>Occurs when the details view of a <see cref="T:System.Windows.Forms.ListView" /> is drawn and the <see cref="P:System.Windows.Forms.ListView.OwnerDraw" /> property is set to <see langword="true" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.DrawItem">
      <summary>Occurs when a <see cref="T:System.Windows.Forms.ListView" /> is drawn and the <see cref="P:System.Windows.Forms.ListView.OwnerDraw" /> property is set to <see langword="true" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.DrawSubItem">
      <summary>Occurs when the details view of a <see cref="T:System.Windows.Forms.ListView" /> is drawn and the <see cref="P:System.Windows.Forms.ListView.OwnerDraw" /> property is set to <see langword="true" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.GroupCollapsedStateChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListViewGroup.CollapsedState" /> changes on a <see cref="T:System.Windows.Forms.ListViewGroup" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.GroupTaskLinkClick">
      <summary>Occurs when the user clicks a <see cref="P:System.Windows.Forms.ListViewGroup.TaskLink" /> on a <see cref="T:System.Windows.Forms.ListViewGroup" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ItemActivate">
      <summary>Occurs when an item is activated.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ItemCheck">
      <summary>Occurs when the check state of an item changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ItemChecked">
      <summary>Occurs when the checked state of an item changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ItemDrag">
      <summary>Occurs when the user begins dragging an item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ItemMouseHover">
      <summary>Occurs when the mouse hovers over an item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.ItemSelectionChanged">
      <summary>Occurs when the selection state of an item changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ListView.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.Paint">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ListView" /> control is painted.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.RetrieveVirtualItem">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode and requires a <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.RetrieveVirtualItemEventArgs.Item" /> property is not set to an item when the <see cref="E:System.Windows.Forms.ListView.RetrieveVirtualItem" /> event is handled.</exception>
    </member>
    <member name="E:System.Windows.Forms.ListView.RightToLeftLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ListView.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.SearchForVirtualItem">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode and a search is taking place.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.SelectedIndexChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListView.SelectedIndices" /> collection changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.TextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ListView.Text" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ListView.VirtualItemsSelectionRangeChanged">
      <summary>Occurs when a <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode and the selection state of a range of items has changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListView" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.ArrangeIcons">
      <summary>Arranges items in the control when they are displayed as icons based on the value of the <see cref="P:System.Windows.Forms.ListView.Alignment" /> property.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.ArrangeIcons(System.Windows.Forms.ListViewAlignment)">
      <summary>Arranges items in the control when they are displayed as icons with a specified alignment setting.</summary>
      <param name="value">One of the <see cref="T:System.Windows.Forms.ListViewAlignment" /> values.</param>
      <exception cref="T:System.ArgumentException">The value specified in the <paramref name="value" /> parameter is not a member of the <see cref="T:System.Windows.Forms.ListViewAlignment" /> enumeration.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.AutoResizeColumn(System.Int32,System.Windows.Forms.ColumnHeaderAutoResizeStyle)">
      <summary>Resizes the width of the given column as indicated by the resize style.</summary>
      <param name="columnIndex">The zero-based index of the column to resize.</param>
      <param name="headerAutoResize">One of the <see cref="T:System.Windows.Forms.ColumnHeaderAutoResizeStyle" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="columnIndex" /> is greater than 0 when <see cref="P:System.Windows.Forms.ListView.Columns" /> is <see langword="null" />

 -or-

 <paramref name="columnIndex" /> is less than 0 or greater than the number of columns set.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="headerAutoResize" /> is not a member of the <see cref="T:System.Windows.Forms.ColumnHeaderAutoResizeStyle" /> enumeration.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.AutoResizeColumns(System.Windows.Forms.ColumnHeaderAutoResizeStyle)">
      <summary>Resizes the width of the columns as indicated by the resize style.</summary>
      <param name="headerAutoResize">One of the <see cref="T:System.Windows.Forms.ColumnHeaderAutoResizeStyle" /> values.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="M:System.Windows.Forms.ListView.AutoResizeColumn(System.Int32,System.Windows.Forms.ColumnHeaderAutoResizeStyle)" /> is called with a value other than <see cref="F:System.Windows.Forms.ColumnHeaderAutoResizeStyle.None" /> when <see cref="P:System.Windows.Forms.ListView.View" /> is not set to <see cref="F:System.Windows.Forms.View.Details" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.BeginUpdate">
      <summary>Prevents the control from drawing until the <see cref="M:System.Windows.Forms.ListView.EndUpdate" /> method is called.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.Clear">
      <summary>Removes all items and columns from the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.CreateAccessibilityInstance">
      <summary>Creates a new instance of the accessibility object for the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control.ControlAccessibleObject" /> for this <see cref="T:System.Windows.Forms.ListView" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CreateHandle">
      <summary>Creates a handle for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ListView" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.EndUpdate">
      <summary>Resumes drawing of the list view control after drawing is suspended by the <see cref="M:System.Windows.Forms.ListView.BeginUpdate" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.EnsureVisible(System.Int32)">
      <summary>Ensures that the specified item is visible within the control, scrolling the contents of the control if necessary.</summary>
      <param name="index">The zero-based index of the item to scroll into view.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.FindItemWithText(System.String)">
      <summary>Finds the first <see cref="T:System.Windows.Forms.ListViewItem" /> that begins with the specified text value.</summary>
      <param name="text">The text to search for.</param>
      <returns>The first <see cref="T:System.Windows.Forms.ListViewItem" /> that begins with the specified text value.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.FindItemWithText(System.String,System.Boolean,System.Int32)">
      <summary>Finds the first <see cref="T:System.Windows.Forms.ListViewItem" /> or <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />, if indicated, that begins with the specified text value. The search starts at the specified index.</summary>
      <param name="text">The text to search for.</param>
      <param name="includeSubItemsInSearch">
        <see langword="true" /> to include subitems in the search; otherwise, <see langword="false" />.</param>
      <param name="startIndex">The index of the item at which to start the search.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="startIndex" /> is less 0 or more than the number items in the <see cref="T:System.Windows.Forms.ListView" />.</exception>
      <returns>The first <see cref="T:System.Windows.Forms.ListViewItem" /> that begins with the specified text value.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.FindItemWithText(System.String,System.Boolean,System.Int32,System.Boolean)">
      <summary>Finds the first <see cref="T:System.Windows.Forms.ListViewItem" /> or <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />, if indicated, that begins with the specified text value. The search starts at the specified index.</summary>
      <param name="text">The text to search for.</param>
      <param name="includeSubItemsInSearch">
        <see langword="true" /> to include subitems in the search; otherwise, <see langword="false" />.</param>
      <param name="startIndex">The index of the item at which to start the search.</param>
      <param name="isPrefixSearch">
        <see langword="true" /> to allow partial matches; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="startIndex" /> is less than 0 or more than the number of items in the <see cref="T:System.Windows.Forms.ListView" />.</exception>
      <returns>The first <see cref="T:System.Windows.Forms.ListViewItem" /> that begins with the specified text value.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.FindNearestItem(System.Windows.Forms.SearchDirectionHint,System.Drawing.Point)">
      <summary>Finds the next item from the given point, searching in the specified direction.</summary>
      <param name="dir">One of the <see cref="T:System.Windows.Forms.SearchDirectionHint" /> values.</param>
      <param name="point">The point at which to begin searching.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.ListView.View" /> is set to a value other than <see cref="F:System.Windows.Forms.View.SmallIcon" /> or <see cref="F:System.Windows.Forms.View.LargeIcon" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that is closest to the given point, searching in the specified direction.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.FindNearestItem(System.Windows.Forms.SearchDirectionHint,System.Int32,System.Int32)">
      <summary>Finds the next item from the given x- and y-coordinates, searching in the specified direction.</summary>
      <param name="searchDirection">One of the <see cref="T:System.Windows.Forms.SearchDirectionHint" /> values.</param>
      <param name="x">The x-coordinate for the point at which to begin searching.</param>
      <param name="y">The y-coordinate for the point at which to begin searching.</param>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.ListView.View" /> is set to a value other than <see cref="F:System.Windows.Forms.View.SmallIcon" /> or <see cref="F:System.Windows.Forms.View.LargeIcon" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that is closest to the given coordinates, searching in the specified direction.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.GetItemAt(System.Int32,System.Int32)">
      <summary>Retrieves the item at the specified location.</summary>
      <param name="x">The x-coordinate of the location to search for an item (expressed in client coordinates).</param>
      <param name="y">The y-coordinate of the location to search for an item (expressed in client coordinates).</param>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item at the specified position. If there is no item at the specified location, the method returns <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.GetItemRect(System.Int32)">
      <summary>Retrieves the bounding rectangle for a specific item within the list view control.</summary>
      <param name="index">The zero-based index of the item within the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> whose bounding rectangle you want to return.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounding rectangle of the specified <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.GetItemRect(System.Int32,System.Windows.Forms.ItemBoundsPortion)">
      <summary>Retrieves the specified portion of the bounding rectangle for a specific item within the list view control.</summary>
      <param name="index">The zero-based index of the item within the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> whose bounding rectangle you want to return.</param>
      <param name="portion">One of the <see cref="T:System.Windows.Forms.ItemBoundsPortion" /> values that represents a portion of the <see cref="T:System.Windows.Forms.ListViewItem" /> for which to retrieve the bounding rectangle.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounding rectangle for the specified portion of the specified <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.HitTest(System.Drawing.Point)">
      <summary>Provides item information, given a point.</summary>
      <param name="point">The <see cref="T:System.Drawing.Point" /> at which to retrieve the item information. The coordinates are relative to the upper-left corner of the control.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The point contains coordinates that are less than 0.</exception>
      <returns>The item information, given a point.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.HitTest(System.Int32,System.Int32)">
      <summary>Provides item information, given x- and y-coordinates.</summary>
      <param name="x">The x-coordinate at which to retrieve the item information. The coordinate is relative to the upper-left corner of the control.</param>
      <param name="y">The y-coordinate at which to retrieve the item information. The coordinate is relative to the upper-left corner of the control.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The x- or y-coordinate is less than 0.</exception>
      <returns>The item information, given x- and y- coordinates.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnAfterLabelEdit(System.Windows.Forms.LabelEditEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.AfterLabelEdit" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LabelEditEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnBackgroundImageChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackgroundImageChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnBeforeLabelEdit(System.Windows.Forms.LabelEditEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.BeforeLabelEdit" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LabelEditEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnCacheVirtualItems(System.Windows.Forms.CacheVirtualItemsEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.CacheVirtualItems" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.CacheVirtualItemsEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnColumnClick(System.Windows.Forms.ColumnClickEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ColumnClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ColumnClickEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnColumnReordered(System.Windows.Forms.ColumnReorderedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ColumnReordered" /> event.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.ColumnReorderedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnColumnWidthChanged(System.Windows.Forms.ColumnWidthChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ColumnWidthChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ColumnWidthChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnColumnWidthChanging(System.Windows.Forms.ColumnWidthChangingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ColumnWidthChanging" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ColumnWidthChangingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnDrawColumnHeader(System.Windows.Forms.DrawListViewColumnHeaderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.DrawColumnHeader" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawListViewColumnHeaderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnDrawItem(System.Windows.Forms.DrawListViewItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.DrawItem" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawListViewItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnDrawSubItem(System.Windows.Forms.DrawListViewSubItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.DrawSubItem" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawListViewSubItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see langword="FontChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnGotFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ListView.OnGroupCollapsedStateChanged(System.Windows.Forms.ListViewGroupEventArgs)">
      <summary>Fires the <see cref="E:System.Windows.Forms.ListView.GroupCollapsedStateChanged" /> event.</summary>
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ListView.OnGroupTaskLinkClick(System.Windows.Forms.ListViewGroupEventArgs)">
      <summary>Fires the <see cref="E:System.Windows.Forms.ListView.GroupTaskLinkClick" /> event.</summary>
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ListView.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnItemActivate(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ItemActivate" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnItemCheck(System.Windows.Forms.ItemCheckEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ItemCheck" /> event.</summary>
      <param name="ice">An <see cref="T:System.Windows.Forms.ItemCheckEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnItemChecked(System.Windows.Forms.ItemCheckedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ItemChecked" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.ItemCheckedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnItemDrag(System.Windows.Forms.ItemDragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ItemDrag" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.ItemDragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnItemMouseHover(System.Windows.Forms.ListViewItemMouseHoverEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ItemMouseHover" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ListViewItemMouseHoverEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnItemSelectionChanged(System.Windows.Forms.ListViewItemSelectionChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.ItemSelectionChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ListViewItemSelectionChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnLostFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.ListView.OnMouseHover(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseHover" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnParentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnRetrieveVirtualItem(System.Windows.Forms.RetrieveVirtualItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.RetrieveVirtualItem" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.RetrieveVirtualItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnRightToLeftLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.RightToLeftLayoutChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnSearchForVirtualItem(System.Windows.Forms.SearchForVirtualItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.SearchForVirtualItem" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.SearchForVirtualItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnSelectedIndexChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.SelectedIndexChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnSystemColorsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.SystemColorsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.OnVirtualItemsSelectionRangeChanged(System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ListView.VirtualItemsSelectionRangeChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.RealizeProperties">
      <summary>Initializes the properties of the <see cref="T:System.Windows.Forms.ListView" /> control that manage the appearance of the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.RedrawItems(System.Int32,System.Int32,System.Boolean)">
      <summary>Forces a range of <see cref="T:System.Windows.Forms.ListViewItem" /> objects to be redrawn.</summary>
      <param name="startIndex">The index for the first item in the range to be redrawn.</param>
      <param name="endIndex">The index for the last item of the range to be redrawn.</param>
      <param name="invalidateOnly">
        <see langword="true" /> to invalidate the range of items; <see langword="false" /> to invalidate and repaint the items.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="startIndex" /> or <paramref name="endIndex" /> is less than 0, greater than or equal to the number of items in the <see cref="T:System.Windows.Forms.ListView" /> or, if in virtual mode, greater than the value of <see cref="P:System.Windows.Forms.ListView.VirtualListSize" />.

 -or-

 The given <paramref name="startIndex" /> is greater than the <paramref name="endIndex" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.Sort">
      <summary>Sorts the items of the list view.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.ToString">
      <summary>Returns a string representation of the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <returns>A string that states the control type, the count of items in the <see cref="T:System.Windows.Forms.ListView" /> control, and the type of the first item in the <see cref="T:System.Windows.Forms.ListView" />, if the count is not 0.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.UpdateExtendedStyles">
      <summary>Updates the extended styles applied to the list view control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.WndProc(System.Windows.Forms.Message@)">
      <summary>Overrides <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" />.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.ListView.Activation">
      <summary>Gets or sets the type of action the user must take to activate an item.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is not one of the <see cref="T:System.Windows.Forms.ItemActivation" /> members.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ItemActivation" /> values. The default is <see cref="F:System.Windows.Forms.ItemActivation.Standard" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.Alignment">
      <summary>Gets or sets the alignment of items in the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is not one of the <see cref="T:System.Windows.Forms.ListViewAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ListViewAlignment" /> values. The default is <see cref="F:System.Windows.Forms.ListViewAlignment.Top" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.AllowColumnReorder">
      <summary>Gets or sets a value indicating whether the user can drag column headers to reorder columns in the control.</summary>
      <returns>
        <see langword="true" /> if drag-and-drop column reordering is allowed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.AutoArrange">
      <summary>Gets or sets whether icons are automatically kept arranged.</summary>
      <returns>
        <see langword="true" /> if icons are automatically kept arranged and snapped to the grid; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.BackColor">
      <summary>Gets or sets the background color.</summary>
      <returns>The <see cref="T:System.Drawing.Color" /> of the background.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.BackgroundImageLayout">
      <summary>Gets or sets an <see cref="T:System.Windows.Forms.ImageLayout" /> value.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is not one of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.BackgroundImageTiled">
      <summary>Gets or sets a value indicating whether the background image of the <see cref="T:System.Windows.Forms.ListView" /> should be tiled.</summary>
      <returns>
        <see langword="true" /> if the background image of the <see cref="T:System.Windows.Forms.ListView" /> should be tiled; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.BorderStyle">
      <summary>Gets or sets the border style of the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is not one of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see cref="F:System.Windows.Forms.BorderStyle.Fixed3D" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckBoxes">
      <summary>Gets or sets a value indicating whether a check box appears next to each item in the control.</summary>
      <returns>
        <see langword="true" /> if a check box appears next to each item in the <see cref="T:System.Windows.Forms.ListView" /> control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedIndices">
      <summary>Gets the indexes of the currently checked items in the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" /> that contains the indexes of the currently checked items. If no items are currently checked, an empty <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" /> is returned.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedItems">
      <summary>Gets the currently checked items in the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListView.CheckedListViewItemCollection" /> that contains the currently checked items. If no items are currently checked, an empty <see cref="T:System.Windows.Forms.ListView.CheckedListViewItemCollection" /> is returned.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.Columns">
      <summary>Gets the collection of all column headers that appear in the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" /> that represents the column headers that appear when the <see cref="P:System.Windows.Forms.ListView.View" /> property is set to <see cref="F:System.Windows.Forms.View.Details" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CreateParams">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="null" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.DoubleBuffered">
      <summary>Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.</summary>
      <returns>
        <see langword="true" /> if the surface of the control should be drawn using double buffering; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.FocusedItem">
      <summary>Gets or sets the item in the control that currently has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item that has focus, or <see langword="null" /> if no item has the focus in the <see cref="T:System.Windows.Forms.ListView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ForeColor">
      <summary>Gets or sets the foreground color.</summary>
      <returns>The <see cref="T:System.Drawing.Color" /> that is the foreground color.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.FullRowSelect">
      <summary>Gets or sets a value indicating whether clicking an item selects all its subitems.</summary>
      <returns>
        <see langword="true" /> if clicking an item selects the item and all its subitems; <see langword="false" /> if clicking an item selects only the item itself. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.GridLines">
      <summary>Gets or sets a value indicating whether grid lines appear between the rows and columns containing the items and subitems in the control.</summary>
      <returns>
        <see langword="true" /> if grid lines are drawn around items and subitems; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.GroupImageList">
      <summary>The currently set GroupIcon image list.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageList" /> that contains the icons to use for <see cref="T:System.Windows.Forms.ListViewGroup" />.
             The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.Groups">
      <summary>Gets the collection of <see cref="T:System.Windows.Forms.ListViewGroup" /> objects assigned to the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListViewGroupCollection" /> that contains all the groups in the <see cref="T:System.Windows.Forms.ListView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.HeaderStyle">
      <summary>Gets or sets the column header style.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is not one of the <see cref="T:System.Windows.Forms.ColumnHeaderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ColumnHeaderStyle" /> values. The default is <see cref="F:System.Windows.Forms.ColumnHeaderStyle.Clickable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.HideSelection">
      <summary>Gets or sets a value indicating whether the selected item in the control remains highlighted when the control loses focus.</summary>
      <returns>
        <see langword="true" /> if the selected item does not appear highlighted when the control loses focus; <see langword="false" /> if the selected item still appears highlighted when the control loses focus.

The following table shows the default value of this property for different .NET versions.

<list type="table"><listheader><term> .NET version</term><description> Default value</description></listheader><item><term> .NET Core 3.0 and later versions</term><description><see langword="false" /></description></item><item><term> NET Framework 4.8</term><description><see langword="false" />, unless you've opted out of new accessibility features</description></item><item><term> .NET Framework 1.0 - 4.7</term><description><see langword="true" /></description></item></list></returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.HotTracking">
      <summary>Gets or sets a value indicating whether the text of an item or subitem has the appearance of a hyperlink when the mouse pointer passes over it.</summary>
      <returns>
        <see langword="true" /> if the item text has the appearance of a hyperlink when the mouse passes over it; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.HoverSelection">
      <summary>Gets or sets a value indicating whether an item is automatically selected when the mouse pointer remains over the item for a few seconds.</summary>
      <returns>
        <see langword="true" /> if an item is automatically selected when the mouse pointer hovers over it; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.InsertionMark">
      <summary>Gets an object used to indicate the expected drop location when an item is dragged within a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListViewInsertionMark" /> object representing the insertion mark.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.Items">
      <summary>Gets a collection containing all items in the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> that contains all the items in the <see cref="T:System.Windows.Forms.ListView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.LabelEdit">
      <summary>Gets or sets a value indicating whether the user can edit the labels of items in the control.</summary>
      <returns>
        <see langword="true" /> if the user can edit the labels of items at run time; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.LabelWrap">
      <summary>Gets or sets a value indicating whether item labels wrap when items are displayed in the control as icons.</summary>
      <returns>
        <see langword="true" /> if item labels wrap when items are displayed as icons; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.LargeImageList">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ImageList" /> to use when displaying items as large icons in the control.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageList" /> that contains the icons to use when the <see cref="P:System.Windows.Forms.ListView.View" /> property is set to <see cref="F:System.Windows.Forms.View.LargeIcon" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ListViewItemSorter">
      <summary>Gets or sets the sorting comparer for the control.</summary>
      <returns>An <see cref="T:System.Collections.IComparer" /> that represents the sorting comparer for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.MultiSelect">
      <summary>Gets or sets a value indicating whether multiple items can be selected.</summary>
      <returns>
        <see langword="true" /> if multiple items in the control can be selected at one time; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.OwnerDraw">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ListView" /> control is drawn by the operating system or by code that you provide.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ListView" /> control is drawn by code that you provide; <see langword="false" /> if the <see cref="T:System.Windows.Forms.ListView" /> control is drawn by the operating system. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.Padding">
      <summary>Gets or sets the space between the <see cref="T:System.Windows.Forms.ListView" /> control and its contents.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Padding" /> that specifies the space between the <see cref="T:System.Windows.Forms.ListView" /> control and its contents.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.RightToLeftLayout">
      <summary>Gets or sets a value indicating whether the control is laid out from right to left.</summary>
      <returns>
        <see langword="true" /> to indicate the <see cref="T:System.Windows.Forms.ListView" /> control is laid out from right to left; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.Scrollable">
      <summary>Gets or sets a value indicating whether a scroll bar is added to the control when there is not enough room to display all items.</summary>
      <returns>
        <see langword="true" /> if scroll bars are added to the control when necessary to allow the user to see all the items; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedIndices">
      <summary>Gets the indexes of the selected items in the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" /> that contains the indexes of the selected items. If no items are currently selected, an empty <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" /> is returned.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedItems">
      <summary>Gets the items that are selected in the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListView.SelectedListViewItemCollection" /> that contains the items that are selected in the control. If no items are currently selected, an empty <see cref="T:System.Windows.Forms.ListView.SelectedListViewItemCollection" /> is returned.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ShowGroups">
      <summary>Gets or sets a value indicating whether items are displayed in groups.</summary>
      <returns>
        <see langword="true" /> to display items in groups; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ShowItemToolTips">
      <summary>Gets or sets a value indicating whether ToolTips are shown for the <see cref="T:System.Windows.Forms.ListViewItem" /> objects contained in the <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <returns>
        <see langword="true" /> if <see cref="T:System.Windows.Forms.ListViewItem" /> ToolTips should be shown; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SmallImageList">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ImageList" /> to use when displaying items as small icons in the control.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageList" /> that contains the icons to use when the <see cref="P:System.Windows.Forms.ListView.View" /> property is set to <see cref="F:System.Windows.Forms.View.SmallIcon" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.Sorting">
      <summary>Gets or sets the sort order for items in the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is not one of the <see cref="T:System.Windows.Forms.SortOrder" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.SortOrder" /> values. The default is <see cref="F:System.Windows.Forms.SortOrder.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.StateImageList">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ImageList" /> associated with application-defined states in the control.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageList" /> that contains a set of state images that can be used to indicate an application-defined state of an item. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.Text">
      <summary>This property is not relevant for this class.</summary>
      <returns>The text to display in the <see cref="T:System.Windows.Forms.ListView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.TileSize">
      <summary>Gets or sets the size of the tiles shown in tile view.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that contains the new tile size.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.TopItem">
      <summary>Gets or sets the first visible item in the control.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.ListView.View" /> property is set to <see cref="F:System.Windows.Forms.View.LargeIcon" />,  <see cref="F:System.Windows.Forms.View.SmallIcon" />, or <see cref="F:System.Windows.Forms.View.Tile" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the first visible item in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.UseCompatibleStateImageBehavior">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ListView" /> uses state image behavior that is compatible with the .NET Framework 1.1 or the .NET Framework 2.0.</summary>
      <returns>
        <see langword="true" /> if the state image behavior is compatible with the .NET Framework 1.1; <see langword="false" /> if the behavior is compatible with the .NET Framework 2.0. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.View">
      <summary>Gets or sets how items are displayed in the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is not one of the <see cref="T:System.Windows.Forms.View" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.View" /> values. The default is <see cref="F:System.Windows.Forms.View.LargeIcon" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.VirtualListSize">
      <summary>Gets or sets the number of <see cref="T:System.Windows.Forms.ListViewItem" /> objects contained in the list when in virtual mode.</summary>
      <exception cref="T:System.ArgumentException">
        <see cref="P:System.Windows.Forms.ListView.VirtualListSize" /> is set to a value less than 0.</exception>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.ListView.VirtualMode" /> is set to <see langword="true" />, <see cref="P:System.Windows.Forms.ListView.VirtualListSize" /> is greater than 0, and <see cref="E:System.Windows.Forms.ListView.RetrieveVirtualItem" /> is not handled.</exception>
      <returns>The number of <see cref="T:System.Windows.Forms.ListViewItem" /> objects contained in the <see cref="T:System.Windows.Forms.ListView" /> when in virtual mode.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.VirtualMode">
      <summary>Gets or sets a value indicating whether you have provided your own data-management operations for the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.ListView.VirtualMode" /> is set to <see langword="true" /> and one of the following conditions exist:

-   <see cref="P:System.Windows.Forms.ListView.VirtualListSize" /> is greater than 0 and <see cref="E:System.Windows.Forms.ListView.RetrieveVirtualItem" /> is not handled.

     -or-

-   <see cref="P:System.Windows.Forms.ListView.Items" />, <see cref="P:System.Windows.Forms.ListView.CheckedItems" />, or <see cref="P:System.Windows.Forms.ListView.SelectedItems" /> contains items.

     -or-

-   Edits are made to <see cref="P:System.Windows.Forms.ListView.Items" />.</exception>
      <returns>
        <see langword="true" /> if <see cref="T:System.Windows.Forms.ListView" /> uses data-management operations that you provide; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListView.CheckedIndexCollection">
      <summary>Represents the collection containing the indexes to the checked items in a list view control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.#ctor(System.Windows.Forms.ListView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" /> class.</summary>
      <param name="owner">A <see cref="T:System.Windows.Forms.ListView" /> control that owns the collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 7 and later versions: <paramref name="owner" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.Contains(System.Int32)">
      <summary>Determines whether the specified index is located in the collection.</summary>
      <param name="checkedIndex">The index to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified index from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> for the <see cref="T:System.Windows.Forms.ListView" /> is an item in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the checked index collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the checked index collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.IndexOf(System.Int32)">
      <summary>Returns the index within the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" /> of the specified index from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> of the list view control.</summary>
      <param name="checkedIndex">The zero-based index from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> to locate in the collection.</param>
      <returns>The zero-based index in the collection where the specified index of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> is located within the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" />; otherwise, -1 if the index is not located in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the collection of checked-item indexes into an array.</summary>
      <param name="dest">An array of type <see cref="T:System.Int32" />.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
      <exception cref="T:System.ArrayTypeMismatchException">The array type cannot be cast to an <see cref="T:System.Int32" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an item to the collection.</summary>
      <param name="value">The object to add to the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
      <returns>The zero-based index where <paramref name="value" /> is located in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Clear">
      <summary>Removes all items from the collection.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Checks whether the index corresponding with the <see cref="T:System.Windows.Forms.ListViewItem" /> is checked.</summary>
      <param name="checkedIndex">An index to locate in the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" />.</param>
      <returns>
        <see langword="true" /> if the index is found in the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index of the specified object in the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" />.</summary>
      <param name="checkedIndex">The zero-based index from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> to locate in the collection.</param>
      <returns>The zero-based index in the collection where the specified index of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> is located if it is in the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" />; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the collection at a specified index.</summary>
      <param name="index">The index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The object to be added to the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of an item from the collection.</summary>
      <param name="value">The object to be removed from the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Removes an item from the collection at a specified index.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedIndexCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedIndexCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedIndexCollection.Item(System.Int32)">
      <summary>Gets the index value at the specified index within the collection.</summary>
      <param name="index">The index of the item in the collection to retrieve.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.CheckedIndexCollection.Count" /> property of <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" />.</exception>
      <returns>The index value from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> that is stored at the specified location.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection of controls.</summary>
      <returns>The object used to synchronize the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" /> has a fixed size.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedIndexCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets an object in the <see cref="T:System.Windows.Forms.ListView.CheckedIndexCollection" />.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <returns>The object from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> that is stored at the specified location.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListView.CheckedListViewItemCollection">
      <summary>Represents the collection of checked items in a list view control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.#ctor(System.Windows.Forms.ListView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListView.CheckedListViewItemCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ListView" /> control that owns the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.Contains(System.Windows.Forms.ListViewItem)">
      <summary>Determines whether the specified item is located in the collection.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified item is located in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.ContainsKey(System.String)">
      <summary>Determines if a column with the specified key is contained in the collection.</summary>
      <param name="key">The name of the item to search for.</param>
      <exception cref="T:System.InvalidOperationException">The owner <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode.</exception>
      <returns>
        <see langword="true" /> if an item with the specified key is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire collection into an existing array at a specified location within the array.</summary>
      <param name="dest">An <see cref="T:System.Array" /> representing the array to copy the contents of the collection to.</param>
      <param name="index">The location within the destination array to copy the items from the collection to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the checked item collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the checked item collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem)">
      <summary>Returns the index within the collection of the specified item.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item to locate in the collection.</param>
      <returns>The zero-based index of the item in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.IndexOfKey(System.String)">
      <summary>Determines the index for an item with the specified key.</summary>
      <param name="key">The name of the item to retrieve the index for.</param>
      <exception cref="T:System.InvalidOperationException">The owner <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode.</exception>
      <returns>The zero-based index for the <see cref="T:System.Windows.Forms.ListViewItem" /> with the specified name, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an item to the collection.</summary>
      <param name="value">The item to add to the collection.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
      <returns>The zero-based index where value is located in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Clear">
      <summary>Removes all items from the collection.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Verifies whether the item is checked.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> to locate in the <see cref="T:System.Windows.Forms.ListView.CheckedListViewItemCollection" />.</param>
      <returns>
        <see langword="true" /> if item is found in the <see cref="T:System.Windows.Forms.ListView.CheckedListViewItemCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index within the collection of the specified item.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item to locate in the collection.</param>
      <returns>The zero-based index of the item if it is in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the collection at a specified index.</summary>
      <param name="index">The index at which value should be inserted.</param>
      <param name="value">The object to be added to the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of an item from the collection.</summary>
      <param name="value">The object to be removed from the <see cref="T:System.Windows.Forms.ListView.CheckedListViewItemCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Removes an item from the collection at the specified index.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedListViewItemCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedListViewItemCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedListViewItemCollection.Item(System.Int32)">
      <summary>Gets the item at the specified index within the collection.</summary>
      <param name="index">The index of the item in the collection to retrieve.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.CheckedListViewItemCollection.Count" /> property of <see cref="T:System.Windows.Forms.ListView.CheckedListViewItemCollection" />.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item located at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedListViewItemCollection.Item(System.String)">
      <summary>Gets an item with the specified key within the collection.</summary>
      <param name="key">The key of the item in the collection to retrieve.</param>
      <exception cref="T:System.InvalidOperationException">The owner <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item with the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the <see cref="T:System.Windows.Forms.ListView.CheckedListViewItemCollection" /> is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection of controls.</summary>
      <returns>The object used to synchronize the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.CheckedListViewItemCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets an object from the collection.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <exception cref="T:System.NotSupportedException">This property cannot be set.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item located at the specified index within the collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListView.ColumnHeaderCollection">
      <summary>Represents the collection of column headers in a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.#ctor(System.Windows.Forms.ListView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ListView" /> that owns this collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String)">
      <summary>Creates and adds a column with the specified text to the collection.</summary>
      <param name="text">The text to display in the column header.</param>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> with the specified text that was added to the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.Int32)">
      <summary>Creates and adds a column with the specified text and width to the collection.</summary>
      <param name="text">The text of the <see cref="T:System.Windows.Forms.ColumnHeader" /> to add to the collection.</param>
      <param name="width">The width of the <see cref="T:System.Windows.Forms.ColumnHeader" /> to add to the collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> with the specified text and width that was added to the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.Int32,System.Windows.Forms.HorizontalAlignment)">
      <summary>Adds a column header to the collection with specified text, width, and alignment settings.</summary>
      <param name="text">The text to display in the column header.</param>
      <param name="width">The initial width of the column header.</param>
      <param name="textAlign">One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</param>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> that was created and added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.String)">
      <summary>Creates and adds a column with the specified text and key to the collection.</summary>
      <param name="key">The key of the <see cref="T:System.Windows.Forms.ColumnHeader" /> to add to the collection.</param>
      <param name="text">The text of the <see cref="T:System.Windows.Forms.ColumnHeader" /> to add to the collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> with the specified key and text that was added to the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.String,System.Int32)">
      <summary>Creates and adds a column with the specified text, key, and width to the collection.</summary>
      <param name="key">The key of the column header.</param>
      <param name="text">The text to display in the column header.</param>
      <param name="width">The initial width of the <see cref="T:System.Windows.Forms.ColumnHeader" />.</param>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> with the given text, key, and width that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment,System.Int32)">
      <summary>Creates and adds a column with the specified key, aligned text, width, and image index to the collection.</summary>
      <param name="key">The key of the column header.</param>
      <param name="text">The text to display in the column header.</param>
      <param name="width">The initial width of the column header.</param>
      <param name="textAlign">One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</param>
      <param name="imageIndex">The index value of the image to display in the column.</param>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> with the specified key, aligned text, width, and image index that has been added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.String,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment,System.String)">
      <summary>Creates and adds a column with the specified key, aligned text, width, and image key to the collection.</summary>
      <param name="key">The key of the column header.</param>
      <param name="text">The text to display in the column header.</param>
      <param name="width">The initial width of the column header.</param>
      <param name="textAlign">One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</param>
      <param name="imageKey">The key value of the image to display in the column header.</param>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> with the specified key, aligned text, width, and image key that has been added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.Windows.Forms.ColumnHeader)">
      <summary>Adds an existing <see cref="T:System.Windows.Forms.ColumnHeader" /> to the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ColumnHeader" /> to add to the collection.</param>
      <returns>The zero-based index into the collection where the item was added.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.AddRange(System.Windows.Forms.ColumnHeader[])">
      <summary>Adds an array of column headers to the collection.</summary>
      <param name="values">An array of <see cref="T:System.Windows.Forms.ColumnHeader" /> objects to add to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Clear">
      <summary>Removes all column headers from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Contains(System.Windows.Forms.ColumnHeader)">
      <summary>Determines whether the specified column header is located in the collection.</summary>
      <param name="value">A <see cref="T:System.Windows.Forms.ColumnHeader" /> representing the column header to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the column header is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.ContainsKey(System.String)">
      <summary>Determines if a column with the specified key is contained in the collection.</summary>
      <param name="key">The name of the column to search for.</param>
      <returns>
        <see langword="true" /> if a column with the specified name is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.GetEnumerator">
      <summary>Returns an enumerator to use to iterate through the column header collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the column header collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.IndexOf(System.Windows.Forms.ColumnHeader)">
      <summary>Returns the index, within the collection, of the specified column header.</summary>
      <param name="value">A <see cref="T:System.Windows.Forms.ColumnHeader" /> representing the column header to locate in the collection.</param>
      <returns>The zero-based index of the column header's location in the collection. If the column header is not located in the collection, the return value is -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.IndexOfKey(System.String)">
      <summary>Determines the index for a column with the specified key.</summary>
      <param name="key">The name of the column to retrieve the index for.</param>
      <returns>The zero-based index for the first occurrence of the column with the specified name, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String)">
      <summary>Creates a new column header with the specified text, and inserts the header into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the column header is inserted.</param>
      <param name="text">The text to display in the column header.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.Int32)">
      <summary>Creates a new column header with the specified text and initial width, and inserts the header into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the column header is inserted.</param>
      <param name="text">The text to display in the column header.</param>
      <param name="width">The initial width, in pixels, of the column header.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment)">
      <summary>Creates a new column header and inserts it into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the column header is inserted.</param>
      <param name="text">The text to display in the column header.</param>
      <param name="width">The initial width of the column header. Set to -1 to autosize the column header to the size of the largest subitem text in the column or -2 to autosize the column header to the size of the text of the column header.</param>
      <param name="textAlign">One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.String)">
      <summary>Creates a new column header with the specified text and key, and inserts the header into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the column header is inserted.</param>
      <param name="key">The name of the column header.</param>
      <param name="text">The text to display in the column header.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.String,System.Int32)">
      <summary>Creates a new column header with the specified text, key, and width, and inserts the header into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the column header is inserted.</param>
      <param name="key">The name of the column header.</param>
      <param name="text">The text to display in the column header.</param>
      <param name="width">The initial width, in pixels, of the column header.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment,System.Int32)">
      <summary>Creates a new column header with the specified aligned text, key, width, and image index, and inserts the header into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the column header is inserted.</param>
      <param name="key">The name of the column header.</param>
      <param name="text">The text to display in the column header.</param>
      <param name="width">The initial width, in pixels, of the column header.</param>
      <param name="textAlign">One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</param>
      <param name="imageIndex">The index of the image to display in the column header.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.String,System.String,System.Int32,System.Windows.Forms.HorizontalAlignment,System.String)">
      <summary>Creates a new column header with the specified aligned text, key, width, and image key, and inserts the header into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the column header is inserted.</param>
      <param name="key">The name of the column header.</param>
      <param name="text">The text to display in the column header.</param>
      <param name="width">The initial width, in pixels, of the column header.</param>
      <param name="textAlign">One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</param>
      <param name="imageKey">The key of the image to display in the column header.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(System.Int32,System.Windows.Forms.ColumnHeader)">
      <summary>Inserts an existing column header into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the column header is inserted.</param>
      <param name="value">The <see cref="T:System.Windows.Forms.ColumnHeader" /> to insert into the collection.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.Remove(System.Windows.Forms.ColumnHeader)">
      <summary>Removes the specified column header from the collection.</summary>
      <param name="column">A <see cref="T:System.Windows.Forms.ColumnHeader" /> representing the column header to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.RemoveAt(System.Int32)">
      <summary>Removes the column header at the specified index within the collection.</summary>
      <param name="index">The zero-based index of the column header to remove.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.RemoveByKey(System.String)">
      <summary>Removes the column with the specified key from the collection.</summary>
      <param name="key">The name of the column to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the <see cref="T:System.Windows.Forms.ColumnHeader" /> objects in the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" /> to an array, starting at a particular array index.</summary>
      <param name="dest">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds a <see cref="T:System.Windows.Forms.ColumnHeader" /> to the <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ColumnHeader" /> to be added to the <see cref="T:System.Windows.Forms.ListView" />.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.ColumnHeader" />.</exception>
      <returns>The zero-based index indicating the location of the object that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified column header is located in the collection.</summary>
      <param name="value">An object that represents the column header to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the object is a column header that is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index, within the collection, of the specified column header.</summary>
      <param name="value">An object that represents the column header to locate in the collection.</param>
      <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an existing column header into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the column header is inserted.</param>
      <param name="value">The <see cref="T:System.Windows.Forms.ColumnHeader" /> to insert into the collection.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the specified column header from the collection.</summary>
      <param name="value">A <see cref="T:System.Windows.Forms.ColumnHeader" /> that represents the column header to remove from the collection.</param>
    </member>
    <member name="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ColumnHeaderCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Item(System.Int32)">
      <summary>Gets the column header at the specified index within the collection.</summary>
      <param name="index">The index of the column header to retrieve from the collection.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ColumnHeader" /> representing the column header located at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Item(System.String)">
      <summary>Gets the column header with the specified key from the collection.</summary>
      <param name="key">The name of the column header to retrieve from the collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.ColumnHeader" /> with the specified key.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" /> is synchronized (thread safe).</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection of controls.</summary>
      <returns>The object used to synchronize the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" /> has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ColumnHeaderCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the column header at the specified index within the collection.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ColumnHeaderCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ColumnHeader" /> that represents the column header located at the specified index within the collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListView.ListViewItemCollection">
      <summary>Represents the collection of items in a <see cref="T:System.Windows.Forms.ListView" /> control or assigned to a <see cref="T:System.Windows.Forms.ListViewGroup" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.#ctor(System.Windows.Forms.ListView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ListView" /> that owns the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String)">
      <summary>Creates an item with the specified text and adds it to the collection.</summary>
      <param name="text">The text to display for the item.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String,System.Int32)">
      <summary>Creates an item with the specified text and image and adds it to the collection.</summary>
      <param name="text">The text of the item.</param>
      <param name="imageIndex">The index of the image to display for the item.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String,System.String)">
      <summary>Creates an item with the specified text and image and adds it to the collection.</summary>
      <param name="text">The text of the item.</param>
      <param name="imageKey">The key of the image to display for the item.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String,System.String,System.Int32)">
      <summary>Creates an item with the specified key, text, and image and adds an item to the collection.</summary>
      <param name="key">The name of the item.</param>
      <param name="text">The text of the item.</param>
      <param name="imageIndex">The index of the image to display for the item.</param>
      <exception cref="T:System.InvalidOperationException">The containing <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.String,System.String,System.String)">
      <summary>Creates an item with the specified key, text, and image, and adds it to the collection.</summary>
      <param name="key">The name of the item.</param>
      <param name="text">The text of the item.</param>
      <param name="imageKey">The key of the image to display for the item.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Add(System.Windows.Forms.ListViewItem)">
      <summary>Adds an existing <see cref="T:System.Windows.Forms.ListViewItem" /> to the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ListViewItem" /> to add to the collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.AddRange(System.Windows.Forms.ListView.ListViewItemCollection)">
      <summary>Adds a collection of items to the collection.</summary>
      <param name="items">The <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="items" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The containing <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.AddRange(System.Windows.Forms.ListViewItem[])">
      <summary>Adds an array of <see cref="T:System.Windows.Forms.ListViewItem" /> objects to the collection.</summary>
      <param name="items">An array of <see cref="T:System.Windows.Forms.ListViewItem" /> objects to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="items" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Clear">
      <summary>Removes all items from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Contains(System.Windows.Forms.ListViewItem)">
      <summary>Determines whether the specified item is located in the collection.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the item is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.ContainsKey(System.String)">
      <summary>Determines whether the collection contains an item with the specified key.</summary>
      <param name="key">The name of the item to search for.</param>
      <returns>
        <see langword="true" /> to indicate the collection contains an item with the specified key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire collection into an existing array at a specified location within the array.</summary>
      <param name="dest">An <see cref="T:System.Array" /> representing the array to copy the contents of the collection to.</param>
      <param name="index">The location within the destination array to copy the items from the collection to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Find(System.String,System.Boolean)">
      <summary>Searches for items whose name matches the specified key, optionally searching subitems.</summary>
      <param name="key">The item name to search for.</param>
      <param name="searchAllSubItems">
        <see langword="true" /> to search subitems; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later versions only: <paramref name="key" /> is <see langword="null" /> or the empty string.</exception>
      <returns>The matching items, or an empty array if no items matched.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.GetEnumerator">
      <summary>Returns an enumerator to use to iterate through the item collection.</summary>
      <exception cref="T:System.InvalidOperationException">The owner <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode.</exception>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the item collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem)">
      <summary>Returns the index within the collection of the specified item.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item to locate in the collection.</param>
      <returns>The zero-based index of the item's location in the collection; otherwise, -1 if the item is not located in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.IndexOfKey(System.String)">
      <summary>Retrieves the index of the item with the specified key.</summary>
      <param name="key">The name of the item to find in the collection.</param>
      <returns>The zero-based index of the first occurrence of the item with the specified key, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String)">
      <summary>Creates a new item and inserts it into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="text">The text to display for the item.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that was inserted into the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String,System.Int32)">
      <summary>Creates a new item with the specified image index and inserts it into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="text">The text to display for the item.</param>
      <param name="imageIndex">The index of the image to display for the item.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that was inserted into the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String,System.String)">
      <summary>Creates a new item with the specified text and image and inserts it in the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="text">The text of the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
      <param name="imageKey">The key of the image to display for the item.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String,System.String,System.Int32)">
      <summary>Creates a new item with the specified key, text, and image, and inserts it in the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="key">The <see cref="P:System.Windows.Forms.ListViewItem.Name" /> of the item.</param>
      <param name="text">The text of the item.</param>
      <param name="imageIndex">The index of the image to display for the item.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.String,System.String,System.String)">
      <summary>Creates a new item with the specified key, text, and image, and adds it to the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="key">The <see cref="P:System.Windows.Forms.ListViewItem.Name" /> of the item.</param>
      <param name="text">The text of the item.</param>
      <param name="imageKey">The key of the image to display for the item.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Insert(System.Int32,System.Windows.Forms.ListViewItem)">
      <summary>Inserts an existing <see cref="T:System.Windows.Forms.ListViewItem" /> into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="item">The <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item to insert.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that was inserted into the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.Remove(System.Windows.Forms.ListViewItem)">
      <summary>Removes the specified item from the collection.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item to remove from the collection.</param>
      <exception cref="T:System.ArgumentException">The <see cref="T:System.Windows.Forms.ListViewItem" /> assigned to the <paramref name="item" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.RemoveAt(System.Int32)">
      <summary>Removes the item at the specified index within the collection.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.RemoveByKey(System.String)">
      <summary>Removes the item with the specified key from the collection.</summary>
      <param name="key">The name of the item to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an existing object to the collection.</summary>
      <param name="item">The object to add to the collection.</param>
      <returns>The zero-based index indicating the location of the object if it was added to the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified item is in the collection.</summary>
      <param name="item">An object that represents the item to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified item is located in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index within the collection of the specified item.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item to locate in the collection.</param>
      <returns>The zero-based index of the item if it is in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an object into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="item">The object that represents the item to insert.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index parameter is less than 0 or greater than the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the specified item from the collection.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item to remove from the collection.</param>
    </member>
    <member name="P:System.Windows.Forms.ListView.ListViewItemCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ListViewItemCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ListViewItemCollection.Item(System.Int32)">
      <summary>Gets or sets the item at the specified index within the collection.</summary>
      <param name="index">The index of the item in the collection to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item located at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ListViewItemCollection.Item(System.String)">
      <summary>Retrieves the item with the specified key.</summary>
      <param name="key">The name of the item to retrieve.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> whose <see cref="P:System.Windows.Forms.ListViewItem.Name" /> property matches the specified key.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection of controls.</summary>
      <returns>The object used to synchronize the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.ListViewItemCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ListViewItem" /> at the specified index within the collection.</summary>
      <param name="index">The zero-based index of the element to get.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index parameter is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item located at the specified index within the collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListView.SelectedIndexCollection">
      <summary>Represents the collection that contains the indexes to the selected items in a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.#ctor(System.Windows.Forms.ListView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" /> class.</summary>
      <param name="owner">A <see cref="T:System.Windows.Forms.ListView" /> control that owns the collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="owner" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.Add(System.Int32)">
      <summary>Adds the item at the specified index in the <see cref="P:System.Windows.Forms.ListView.Items" /> array to the collection.</summary>
      <param name="itemIndex">The index of the item in the <see cref="P:System.Windows.Forms.ListView.Items" /> collection to be added to the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified index is less than 0 or greater than or equal to the number of items in the owner <see cref="T:System.Windows.Forms.ListView" />.  
  
 -or-  
  
 The owner <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode, and the specified index is less than 0 or greater than or equal to the value of <see cref="P:System.Windows.Forms.ListView.VirtualListSize" />.</exception>
      <returns>The number of items in the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.Clear">
      <summary>Clears the items in the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.Contains(System.Int32)">
      <summary>Determines whether the specified index is located in the collection.</summary>
      <param name="selectedIndex">The index to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified index from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> for the <see cref="T:System.Windows.Forms.ListView" /> is an item in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire collection into an existing array at a specified location within the array.</summary>
      <param name="dest">An <see cref="T:System.Array" /> representing the array to copy the contents of the collection to.</param>
      <param name="index">The location within the destination array to copy the items from the collection to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the selected index collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the selected index collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.IndexOf(System.Int32)">
      <summary>Returns the index within the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" /> of the specified index from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> of the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <param name="selectedIndex">The zero-based index from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> to locate in the collection.</param>
      <returns>The zero-based index in the collection where the specified index of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> is located within the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />, or -1 if the index is not located in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.Remove(System.Int32)">
      <summary>Removes the item at the specified index in the <see cref="P:System.Windows.Forms.ListView.Items" /> collection from the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</summary>
      <param name="itemIndex">The index of the item in the <see cref="P:System.Windows.Forms.ListView.Items" /> collection to remove from the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified index is less than 0 or greater than or equal to the number of items in the owner <see cref="T:System.Windows.Forms.ListView" />.  
  
 -or-  
  
 The owner <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode, and the specified index is less than 0 or greater than or equal to the value of <see cref="P:System.Windows.Forms.ListView.VirtualListSize" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an item to the collection.</summary>
      <param name="value">An object to be added to the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
      <returns>The location of the added item.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Clear">
      <summary>Removes all items from the collection.</summary>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified item is located in the collection.</summary>
      <param name="selectedIndex">The index to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified index from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> for the <see cref="T:System.Windows.Forms.ListView" /> is an item in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index in the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />. The <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" /> contains the indexes of selected items in the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> of the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <param name="selectedIndex">The zero-based index from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> to locate in the collection.</param>
      <returns>The index of <paramref name="value" /> if found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the collection at a specified index.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The object to be inserted into the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of a specified item from the collection.</summary>
      <param name="value">The object to remove from the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Removes an item from the collection at a specified index.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedIndexCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedIndexCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedIndexCollection.Item(System.Int32)">
      <summary>Gets the index value at the specified index within the collection.</summary>
      <param name="index">The index of the item in the collection to retrieve.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.SelectedIndexCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" />.</exception>
      <returns>The index value from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> that is stored at the specified location.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection of controls.</summary>
      <returns>The object used to synchronize the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ListView.SelectedIndexCollection" /> has a fixed size.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedIndexCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets an object in the collection.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <returns>The index value from the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> that is stored at the specified location.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListView.SelectedListViewItemCollection">
      <summary>Represents the collection of selected items in a list view control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.#ctor(System.Windows.Forms.ListView)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListView.SelectedListViewItemCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ListView" /> control that owns the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.Clear">
      <summary>Removes all items from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.Contains(System.Windows.Forms.ListViewItem)">
      <summary>Determines whether the specified item is located in the collection.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified item is located in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.ContainsKey(System.String)">
      <summary>Determines whether an item with the specified key is contained in the collection.</summary>
      <param name="key">The name of the item to find in the collection.</param>
      <returns>
        <see langword="true" /> to indicate the specified item is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire collection into an existing array at a specified location within the array.</summary>
      <param name="dest">An <see cref="T:System.Array" /> representing the array to copy the contents of the collection to.</param>
      <param name="index">The location within the destination array to copy the items from the collection to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the selected item collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the collection of selected items.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem)">
      <summary>Returns the index within the collection of the specified item.</summary>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item to locate in the collection.</param>
      <returns>The zero-based index of the item in the collection. If the item is not located in the collection, the return value is negative one (-1).</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.IndexOfKey(System.String)">
      <summary>Returns the index of the first occurrence of the item with the specified key.</summary>
      <param name="key">The name of the item to find in the collection.</param>
      <returns>The zero-based index of the first item with the specified key.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an item to the collection.</summary>
      <param name="value">An object to be added to the <see cref="T:System.Windows.Forms.ListView.SelectedListViewItemCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
      <returns>The location of the added item.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified item is located in the collection.</summary>
      <param name="item">An object that represents the item to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified item is located in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index, within the collection, of the specified item.</summary>
      <param name="item">An object that represents the item to locate in the collection.</param>
      <returns>The zero-based index of the item if it is in the collection; otherwise, -1</returns>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the collection at a specified index.</summary>
      <param name="index">The zero-based index of the item to be inserted.</param>
      <param name="value">An object to be added to the <see cref="T:System.Windows.Forms.ListView.SelectedListViewItemCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of a specified item from the collection.</summary>
      <param name="value">The object to remove from the <see cref="T:System.Windows.Forms.ListView.SelectedListViewItemCollection" />.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Removes an item from the collection at a specified index.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
      <exception cref="T:System.NotSupportedException">Always thrown.</exception>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedListViewItemCollection.Count">
      <summary>Gets the number of items in the collection.</summary>
      <returns>The number of items in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedListViewItemCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedListViewItemCollection.Item(System.Int32)">
      <summary>Gets the item at the specified index within the collection.</summary>
      <param name="index">The index of the item in the collection to retrieve.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListView.ListViewItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListView.SelectedListViewItemCollection" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> representing the item located at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedListViewItemCollection.Item(System.String)">
      <summary>Gets an item with the specified key from the collection.</summary>
      <param name="key">The name of the item to retrieve from the collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> with the specified key.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection of controls.</summary>
      <returns>The object used to synchronize the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListView.SelectedListViewItemCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets an object from the collection.</summary>
      <param name="index">The zero-based index of the element to get.</param>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item located at the specified index within the collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewAlignment">
      <summary>Specifies how items align in the <see cref="T:System.Windows.Forms.ListView" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewAlignment.Default">
      <summary>When the user moves an item, it remains where it is dropped.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewAlignment.Left">
      <summary>Items are aligned to the left of the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewAlignment.SnapToGrid">
      <summary>Items are aligned to an invisible grid in the control. When the user moves an item, it moves to the closest juncture in the grid.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewAlignment.Top">
      <summary>Items are aligned to the top of the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="T:System.Windows.Forms.ListViewGroup">
      <summary>Represents a group of items displayed within a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroup.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewGroup" /> class using the default header text of "ListViewGroup" and the default left header alignment.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroup.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewGroup" /> class using the specified value to initialize the <see cref="P:System.Windows.Forms.ListViewGroup.Header" /> property and using the default left header alignment.</summary>
      <param name="header">The text to display for the group header.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroup.#ctor(System.String,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewGroup" /> class using the specified values to initialize the <see cref="P:System.Windows.Forms.ListViewGroup.Name" /> and <see cref="P:System.Windows.Forms.ListViewGroup.Header" /> properties.</summary>
      <param name="key">The initial value of the <see cref="P:System.Windows.Forms.ListViewGroup.Name" /> property.</param>
      <param name="headerText">The initial value of the <see cref="P:System.Windows.Forms.ListViewGroup.Header" /> property.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroup.#ctor(System.String,System.Windows.Forms.HorizontalAlignment)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewGroup" /> class using the specified header text and the specified header alignment.</summary>
      <param name="header">The text to display for the group header.</param>
      <param name="headerAlignment">One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values that specifies the alignment of the header text.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroup.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
      <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
      <param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext" />) for this serialization.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="info" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroup.ToString">
      <summary>Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.CollapsedState">
      <summary>Controls which <see cref="T:System.Windows.Forms.ListViewGroupCollapsedState" /> the group will appear as.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.ListViewGroupCollapsedState" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ListViewGroupCollapsedState" /> values that specifies how the group is displayed.
             The default is <see cref="F:System.Windows.Forms.ListViewGroupCollapsedState.Default" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.Footer">
      <summary>The text displayed in the group footer.</summary>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.FooterAlignment">
      <summary>The alignment of the group footer.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.HorizontalAlignment" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values that specifies the alignment of the footer text. The default is <see cref="F:System.Windows.Forms.HorizontalAlignment.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.Header">
      <summary>Gets or sets the header text for the group.</summary>
      <returns>The text to display for the group header. The default is "ListViewGroup".</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.HeaderAlignment">
      <summary>Gets or sets the alignment of the group header text.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.HorizontalAlignment" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values that specifies the alignment of the header text. The default is <see cref="F:System.Windows.Forms.HorizontalAlignment.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.Items">
      <summary>Gets a collection containing all items associated with this group.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> that contains all the items in the group. If there are no items in the group, an empty <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> object is returned.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.ListView">
      <summary>Gets the <see cref="T:System.Windows.Forms.ListView" /> control that contains this group.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListView" /> control that contains this group.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.Name">
      <summary>Gets or sets the name of the group.</summary>
      <returns>The name of the group.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.Subtitle">
      <summary>The text displayed in the group subtitle.</summary>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.Tag">
      <summary>Gets or sets the object that contains data about the group.</summary>
      <returns>An <see cref="T:System.Object" /> for storing the additional data.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.TaskLink">
      <summary>The name of the task link displayed in the group header.</summary>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.TitleImageIndex">
      <summary>Gets or sets the index of the image that is displayed for the group.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value specified is less than -1.</exception>
      <returns>The zero-based index of the image in the ImageList that is displayed for the group. The default is -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroup.TitleImageKey">
      <summary>Gets or sets the key of the image that is displayed for the group.</summary>
      <returns>The key for the image that is displayed for the group.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewGroupCollapsedState">
      <summary>Specifies the appearance of a <see cref="T:System.Windows.Forms.ListViewGroup" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewGroupCollapsedState.Collapsed">
      <summary>Collapsible group, collapsed.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewGroupCollapsedState.Default">
      <summary>Non-collapsible group, expanded.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewGroupCollapsedState.Expanded">
      <summary>Collapsible group, expanded.</summary>
    </member>
    <member name="T:System.Windows.Forms.ListViewGroupCollection">
      <summary>Represents the collection of groups within a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.Add(System.String,System.String)">
      <summary>Adds a new <see cref="T:System.Windows.Forms.ListViewGroup" /> to the collection using the specified values to initialize the <see cref="P:System.Windows.Forms.ListViewGroup.Name" /> and <see cref="P:System.Windows.Forms.ListViewGroup.Header" /> properties.</summary>
      <param name="key">The initial value of the <see cref="P:System.Windows.Forms.ListViewGroup.Name" /> property for the new group.</param>
      <param name="headerText">The initial value of the <see cref="P:System.Windows.Forms.ListViewGroup.Header" /> property for the new group.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Windows.Forms.ListView" /> that this collection is assigned to is in virtual mode.</exception>
      <returns>The new <see cref="T:System.Windows.Forms.ListViewGroup" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.Add(System.Windows.Forms.ListViewGroup)">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.ListViewGroup" /> to the collection.</summary>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to add to the collection.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="group" /> contains at least one <see cref="T:System.Windows.Forms.ListViewItem" /> that belongs to a <see cref="T:System.Windows.Forms.ListView" /> control other than the one that owns this <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Windows.Forms.ListView" /> that this collection is assigned to is in virtual mode.</exception>
      <returns>The index of the group within the collection, or -1 if the group is already present in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.AddRange(System.Windows.Forms.ListViewGroup[])">
      <summary>Adds an array of groups to the collection.</summary>
      <param name="groups">An array of type <see cref="T:System.Windows.Forms.ListViewGroup" /> that specifies the groups to add to the collection.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="groups" /> contains at least one group with at least one <see cref="T:System.Windows.Forms.ListViewItem" /> that belongs to a <see cref="T:System.Windows.Forms.ListView" /> control other than the one that owns this <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Windows.Forms.ListView" /> that this collection is assigned to is in virtual mode.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.AddRange(System.Windows.Forms.ListViewGroupCollection)">
      <summary>Adds the groups in an existing <see cref="T:System.Windows.Forms.ListViewGroupCollection" /> to the collection.</summary>
      <param name="groups">A <see cref="T:System.Windows.Forms.ListViewGroupCollection" /> containing the groups to add to the collection.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="groups" /> contains at least one group with at least one <see cref="T:System.Windows.Forms.ListViewItem" /> that belongs to a <see cref="T:System.Windows.Forms.ListView" /> control other than the one that owns this <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</exception>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Windows.Forms.ListView" /> that this collection is assigned to is in virtual mode.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.Clear">
      <summary>Removes all groups from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.Contains(System.Windows.Forms.ListViewGroup)">
      <summary>Determines whether the specified group is located in the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the group is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the groups in the collection to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
      <param name="array">The <see cref="T:System.Array" /> to which the groups are copied.</param>
      <param name="index">The first index within the array to which the groups are copied.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.GetEnumerator">
      <summary>Returns an enumerator used to iterate through the collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.IndexOf(System.Windows.Forms.ListViewGroup)">
      <summary>Returns the index of the specified <see cref="T:System.Windows.Forms.ListViewGroup" /> within the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to locate in the collection.</param>
      <returns>The zero-based index of the group within the collection, or -1 if the group is not in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.Insert(System.Int32,System.Windows.Forms.ListViewGroup)">
      <summary>Inserts the specified <see cref="T:System.Windows.Forms.ListViewGroup" /> into the collection at the specified index.</summary>
      <param name="index">The index within the collection at which to insert the group.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to insert into the collection.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Windows.Forms.ListView" /> that this collection is assigned to is in virtual mode.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.Remove(System.Windows.Forms.ListViewGroup)">
      <summary>Removes the specified <see cref="T:System.Windows.Forms.ListViewGroup" /> from the collection.</summary>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.RemoveAt(System.Int32)">
      <summary>Removes the <see cref="T:System.Windows.Forms.ListViewGroup" /> at the specified index within the collection.</summary>
      <param name="index">The index within the collection of the <see cref="T:System.Windows.Forms.ListViewGroup" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds a new <see cref="T:System.Windows.Forms.ListViewGroup" /> to the <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to add to the <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.ListViewGroup" />.  
  
 -or-  
  
 <paramref name="value" /> contains at least one <see cref="T:System.Windows.Forms.ListViewItem" /> that belongs to a <see cref="T:System.Windows.Forms.ListView" /> control other than the one that owns this <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</exception>
      <returns>The index at which the <see cref="T:System.Windows.Forms.ListViewGroup" /> has been added.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified value is located in the collection.</summary>
      <param name="value">An object that represents the <see cref="T:System.Windows.Forms.ListViewGroup" /> to locate in the collection.</param>
      <returns>
        <see langword="true" /> if <paramref name="value" /> is a <see cref="T:System.Windows.Forms.ListViewGroup" /> contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index within the collection of the specified value.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to find in the <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</param>
      <returns>The zero-based index of <paramref name="value" /> if it is in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts a <see cref="T:System.Windows.Forms.ListViewGroup" /> into the <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</summary>
      <param name="index">The position at which the <see cref="T:System.Windows.Forms.ListViewGroup" /> is added to the collection.</param>
      <param name="value">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to add to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the <see cref="T:System.Windows.Forms.ListViewGroup" /> from the <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to remove from the <see cref="T:System.Windows.Forms.ListViewGroupCollection" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroupCollection.Count">
      <summary>Gets the number of groups in the collection.</summary>
      <returns>The number of groups in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroupCollection.Item(System.Int32)">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ListViewGroup" /> at the specified index within the collection.</summary>
      <param name="index">The index within the collection of the <see cref="T:System.Windows.Forms.ListViewGroup" /> to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than or equal to <see cref="P:System.Windows.Forms.ListViewGroupCollection.Count" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewGroup" /> at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroupCollection.Item(System.String)">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ListViewGroup" /> with the specified <see cref="P:System.Windows.Forms.ListViewGroup.Name" /> property value.</summary>
      <param name="key">The name of the group to get or set.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewGroup" /> with the specified name, or <see langword="null" /> if no such <see cref="T:System.Windows.Forms.ListViewGroup" /> exists.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroupCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroupCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>The object used to synchronize the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroupCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ListViewGroup" /> at the specified index within the collection.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <returns>A <see cref="T:System.Windows.Forms.ListViewGroup" /> that represents the item located at the specified index within the collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewGroupEventArgs">
      <summary>Provides data for the <see cref="M:System.Windows.Forms.ListView.OnGroupCollapsedStateChanged(System.Windows.Forms.ListViewGroupEventArgs)" /> and <see cref="M:System.Windows.Forms.ListView.OnGroupTaskLinkClick(System.Windows.Forms.ListViewGroupEventArgs)" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewGroupEventArgs.#ctor(System.Int32)">
      <summary>Initializes a new instances of the <see cref="T:System.Windows.Forms.ListViewGroupEventArgs" /> class.</summary>
      <param name="groupIndex">The index of the <see cref="T:System.Windows.Forms.ListViewGroup" /> associated with the event.</param>
    </member>
    <member name="P:System.Windows.Forms.ListViewGroupEventArgs.GroupIndex">
      <summary>Gets the index of the <see cref="T:System.Windows.Forms.ListViewGroup" /> associated with the event.</summary>
    </member>
    <member name="T:System.Windows.Forms.ListViewHitTestInfo">
      <summary>Contains information about an area of a <see cref="T:System.Windows.Forms.ListView" /> control or a <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewHitTestInfo.#ctor(System.Windows.Forms.ListViewItem,System.Windows.Forms.ListViewItem.ListViewSubItem,System.Windows.Forms.ListViewHitTestLocations)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewHitTestInfo" /> class.</summary>
      <param name="hitItem">The <see cref="T:System.Windows.Forms.ListViewItem" /> located at the position indicated by the hit test.</param>
      <param name="hitSubItem">The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> located at the position indicated by the hit test.</param>
      <param name="hitLocation">One of the <see cref="T:System.Windows.Forms.ListViewHitTestLocations" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.ListViewHitTestInfo.Item">
      <summary>Gets the <see cref="T:System.Windows.Forms.ListViewItem" /> at the position indicated by a hit test on a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> at the position indicated by a hit test on a <see cref="T:System.Windows.Forms.ListView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewHitTestInfo.Location">
      <summary>Gets the location of a hit test on a <see cref="T:System.Windows.Forms.ListView" /> control, in relation to the <see cref="T:System.Windows.Forms.ListView" /> and the items it contains.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ListViewHitTestLocations" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewHitTestInfo.SubItem">
      <summary>Gets the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> at the position indicated by a hit test on a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> at the position indicated by a hit test on a <see cref="T:System.Windows.Forms.ListView" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewHitTestLocations">
      <summary>Defines constants that represent areas in a <see cref="T:System.Windows.Forms.ListView" /> or <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewHitTestLocations.AboveClientArea">
      <summary>A position above the client portion of a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewHitTestLocations.BelowClientArea">
      <summary>A position below the client portion of a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewHitTestLocations.Image">
      <summary>A position within the bounds of an image contained in a <see cref="T:System.Windows.Forms.ListView" /> or <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewHitTestLocations.Label">
      <summary>A position within the bounds of a text area contained in a <see cref="T:System.Windows.Forms.ListView" /> or <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewHitTestLocations.LeftOfClientArea">
      <summary>A position to the left of the client portion of a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewHitTestLocations.None">
      <summary>A position outside the bounds of a <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewHitTestLocations.RightOfClientArea">
      <summary>A position to the right of the client portion of a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewHitTestLocations.StateImage">
      <summary>A position within the bounds of an image associated with a <see cref="T:System.Windows.Forms.ListViewItem" /> that indicates the state of the item.</summary>
    </member>
    <member name="T:System.Windows.Forms.ListViewInsertionMark">
      <summary>Used to indicate the expected drop location when an item is dragged to a new position in a <see cref="T:System.Windows.Forms.ListView" /> control. This functionality is available only on Windows XP and later.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewInsertionMark.NearestIndex(System.Drawing.Point)">
      <summary>Retrieves the index of the item closest to the specified point.</summary>
      <param name="pt">A <see cref="T:System.Drawing.Point" /> representing the location from which to find the nearest item.</param>
      <returns>The index of the item closest to the specified point or -1 if the closest item is the item currently being dragged.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewInsertionMark.AppearsAfterItem">
      <summary>Gets or sets a value indicating whether the insertion mark appears to the right of the item with the index specified by the <see cref="P:System.Windows.Forms.ListViewInsertionMark.Index" /> property.</summary>
      <returns>
        <see langword="true" /> if the insertion mark appears to the right of the item with the index specified by the <see cref="P:System.Windows.Forms.ListViewInsertionMark.Index" /> property; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewInsertionMark.Bounds">
      <summary>Gets the bounding rectangle of the insertion mark.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the position and size of the insertion mark.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewInsertionMark.Color">
      <summary>Gets or sets the color of the insertion mark.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> value that represents the color of the insertion mark. The default value is the value of the <see cref="P:System.Windows.Forms.ListView.ForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewInsertionMark.Index">
      <summary>Gets or sets the index of the item next to which the insertion mark appears.</summary>
      <returns>The index of the item next to which the insertion mark appears or -1 when the insertion mark is hidden.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewItem">
      <summary>Represents an item in a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with default values.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified serialization information and streaming context.</summary>
      <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> containing information about the <see cref="T:System.Windows.Forms.ListViewItem" /> to be initialized.</param>
      <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that indicates the source destination and context information of a serialized stream.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified item text.</summary>
      <param name="text">The text to display for the item. This should not exceed 259 characters.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified item text and the image index position of the item's icon.</summary>
      <param name="text">The text to display for the item. This should not exceed 259 characters.</param>
      <param name="imageIndex">The zero-based index of the image within the <see cref="T:System.Windows.Forms.ImageList" /> associated with the <see cref="T:System.Windows.Forms.ListView" /> that contains the item.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.Int32,System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified item text and the image index position of the item's icon, and assigns the item to the specified group.</summary>
      <param name="text">The text to display for the item. This should not exceed 259 characters.</param>
      <param name="imageIndex">The zero-based index of the image within the <see cref="T:System.Windows.Forms.ImageList" /> associated with the <see cref="T:System.Windows.Forms.ListView" /> that contains the item.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified text and image.</summary>
      <param name="text">The text to display for the item. This should not exceed 259 characters.</param>
      <param name="imageKey">The name of the image within the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> of the owning <see cref="T:System.Windows.Forms.ListView" /> to display in the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.String,System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified text, image, and group.</summary>
      <param name="text">The text to display for the item. This should not exceed 259 characters.</param>
      <param name="imageKey">The name of the image within the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> of the owning <see cref="T:System.Windows.Forms.ListView" /> to display in the item.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String,System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified item text and assigns it to the specified group.</summary>
      <param name="text">The text to display for the item. This should not exceed 259 characters.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with an array of strings representing subitems.</summary>
      <param name="items">An array of strings that represent the subitems of the new item.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the image index position of the item's icon and an array of strings representing subitems.</summary>
      <param name="items">An array of strings that represent the subitems of the new item.</param>
      <param name="imageIndex">The zero-based index of the image within the <see cref="T:System.Windows.Forms.ImageList" /> associated with the <see cref="T:System.Windows.Forms.ListView" /> that contains the item.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the image index position of the item's icon; the foreground color, background color, and font of the item; and an array of strings representing subitems.</summary>
      <param name="items">An array of strings that represent the subitems of the new item.</param>
      <param name="imageIndex">The zero-based index of the image within the <see cref="T:System.Windows.Forms.ImageList" /> associated with the <see cref="T:System.Windows.Forms.ListView" /> that contains the item.</param>
      <param name="foreColor">A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the item.</param>
      <param name="backColor">A <see cref="T:System.Drawing.Color" /> that represents the background color of the item.</param>
      <param name="font">A <see cref="T:System.Drawing.Font" /> that represents the font to display the item's text in.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Int32,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the image index position of the item's icon; the foreground color, background color, and font of the item; and an array of strings representing subitems. Assigns the item to the specified group.</summary>
      <param name="items">An array of strings that represent the subitems of the new item.</param>
      <param name="imageIndex">The zero-based index of the image within the <see cref="T:System.Windows.Forms.ImageList" /> associated with the <see cref="T:System.Windows.Forms.ListView" /> that contains the item.</param>
      <param name="foreColor">A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the item.</param>
      <param name="backColor">A <see cref="T:System.Drawing.Color" /> that represents the background color of the item.</param>
      <param name="font">A <see cref="T:System.Drawing.Font" /> that represents the font to display the item's text in.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Int32,System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the image index position of the item's icon and an array of strings representing subitems, and assigns the item to the specified group.</summary>
      <param name="items">An array of strings that represent the subitems of the new item.</param>
      <param name="imageIndex">The zero-based index of the image within the <see cref="T:System.Windows.Forms.ImageList" /> associated with the <see cref="T:System.Windows.Forms.ListView" /> that contains the item.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified item and subitem text and image.</summary>
      <param name="items">An array containing the text of the subitems of the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
      <param name="imageKey">The name of the image within the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> of the owning <see cref="T:System.Windows.Forms.ListView" /> to display in the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the subitems containing the specified text, image, colors, and font.</summary>
      <param name="items">An array of strings that represent the text of the subitems for the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
      <param name="imageKey">The name of the image within the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> of the owning <see cref="T:System.Windows.Forms.ListView" /> to display in the item.</param>
      <param name="foreColor">A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the item.</param>
      <param name="backColor">A <see cref="T:System.Drawing.Color" /> that represents the background color of the item.</param>
      <param name="font">A <see cref="T:System.Drawing.Font" /> to apply to the item text.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font,System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the subitems containing the specified text, image, colors, font, and group.</summary>
      <param name="items">An array of strings that represents the text of the subitems for the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
      <param name="imageKey">The name of the image within the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> of the owning <see cref="T:System.Windows.Forms.ListView" /> to display in the item.</param>
      <param name="foreColor">A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the item.</param>
      <param name="backColor">A <see cref="T:System.Drawing.Color" /> that represents the background color of the item.</param>
      <param name="font">A <see cref="T:System.Drawing.Font" /> to apply to the item text.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.String,System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with subitems containing the specified text, image, and group.</summary>
      <param name="items">An array of strings that represents the text for subitems of the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
      <param name="imageKey">The name of the image within the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> of the owning <see cref="T:System.Windows.Forms.ListView" /> to display in the item.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.String[],System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with an array of strings representing subitems, and assigns the item to the specified group.</summary>
      <param name="items">An array of strings that represent the subitems of the new item.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class and assigns it to the specified group.</summary>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewItem.ListViewSubItem[],System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the image index position of the item's icon and an array of <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> objects.</summary>
      <param name="subItems">An array of type <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> that represents the subitems of the item.</param>
      <param name="imageIndex">The zero-based index of the image within the <see cref="T:System.Windows.Forms.ImageList" /> associated with the <see cref="T:System.Windows.Forms.ListView" /> that contains the item.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewItem.ListViewSubItem[],System.Int32,System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the image index position of the item's icon and an array of <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> objects, and assigns the item to the specified group.</summary>
      <param name="subItems">An array of type <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> that represents the subitems of the item.</param>
      <param name="imageIndex">The zero-based index of the image within the <see cref="T:System.Windows.Forms.ImageList" /> associated with the <see cref="T:System.Windows.Forms.ListView" /> that contains the item.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewItem.ListViewSubItem[],System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified subitems and image.</summary>
      <param name="subItems">An array of <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> objects.</param>
      <param name="imageKey">The name of the image within the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> of the owning <see cref="T:System.Windows.Forms.ListView" /> to display in the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.#ctor(System.Windows.Forms.ListViewItem.ListViewSubItem[],System.String,System.Windows.Forms.ListViewGroup)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified subitems, image, and group.</summary>
      <param name="subItems">An array of <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> objects that represent the subitems of the <see cref="T:System.Windows.Forms.ListViewItem" />.</param>
      <param name="imageKey">The name of the image within the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> of the owning <see cref="T:System.Windows.Forms.ListView" /> to display in the item.</param>
      <param name="group">The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.BeginEdit">
      <summary>Places the item text into edit mode.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.ListView.LabelEdit" /> property of the associated <see cref="T:System.Windows.Forms.ListView" /> is not set to <see langword="true" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.Clone">
      <summary>Creates an identical copy of the item.</summary>
      <returns>An object that represents an item that has the same text, image, and subitems associated with it as the cloned item.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.Deserialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Deserializes the item.</summary>
      <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the data needed to deserialize the item.</param>
      <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that represents the source and destination of the stream being deserialized.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.EnsureVisible">
      <summary>Ensures that the item is visible within the control, scrolling the contents of the control, if necessary.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.FindNearestItem(System.Windows.Forms.SearchDirectionHint)">
      <summary>Finds the next item from the <see cref="T:System.Windows.Forms.ListViewItem" />, searching in the specified direction.</summary>
      <param name="searchDirection">One of the <see cref="T:System.Windows.Forms.SearchDirectionHint" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.ListView.View" /> property of the containing <see cref="T:System.Windows.Forms.ListView" /> is set to a value other than <see cref="F:System.Windows.Forms.View.SmallIcon" /> or <see cref="F:System.Windows.Forms.View.LargeIcon" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that is closest to the given coordinates, searching in the specified direction.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.GetBounds(System.Windows.Forms.ItemBoundsPortion)">
      <summary>Retrieves the specified portion of the bounding rectangle for the item.</summary>
      <param name="portion">One of the <see cref="T:System.Windows.Forms.ItemBoundsPortion" /> values that represents a portion of the item for which to retrieve the bounding rectangle.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounding rectangle for the specified portion of the item.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.GetSubItemAt(System.Int32,System.Int32)">
      <summary>Returns the subitem of the <see cref="T:System.Windows.Forms.ListViewItem" /> at the specified coordinates.</summary>
      <param name="x">The x-coordinate.</param>
      <param name="y">The y-coordinate.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> at the specified x- and y-coordinates.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.Remove">
      <summary>Removes the item from its associated <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.Serialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Serializes the item.</summary>
      <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the data needed to serialize the item.</param>
      <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that represents the source and destination of the stream being serialized.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Serializes the item.</summary>
      <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the data needed to serialize the item.</param>
      <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that represents the source and destination of the stream being serialized.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ToString">
      <summary>Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.BackColor">
      <summary>Gets or sets the background color of the item's text.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the item's text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Bounds">
      <summary>Gets the bounding rectangle of the item, including subitems.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounding rectangle of the item.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Checked">
      <summary>Gets or sets a value indicating whether the item is checked.</summary>
      <returns>
        <see langword="true" /> if the item is checked; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Focused">
      <summary>Gets or sets a value indicating whether the item has focus within the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <returns>
        <see langword="true" /> if the item has focus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Font">
      <summary>Gets or sets the font of the text displayed by the item.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property if the <see cref="T:System.Windows.Forms.ListViewItem" /> is not associated with a <see cref="T:System.Windows.Forms.ListView" /> control; otherwise, the font specified in the <see cref="P:System.Windows.Forms.Control.Font" /> property for the <see cref="T:System.Windows.Forms.ListView" /> control is used.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ForeColor">
      <summary>Gets or sets the foreground color of the item's text.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the item's text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Group">
      <summary>Gets or sets the group to which the item is assigned.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListViewGroup" /> to which the item is assigned.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ImageIndex">
      <summary>Gets or sets the index of the image that is displayed for the item.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than -1.</exception>
      <returns>The zero-based index of the image in the <see cref="T:System.Windows.Forms.ImageList" /> that is displayed for the item. The default is -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ImageKey">
      <summary>Gets or sets the key for the image that is displayed for the item.</summary>
      <returns>The key for the image that is displayed for the <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ImageList">
      <summary>Gets the <see cref="T:System.Windows.Forms.ImageList" /> that contains the image displayed with the item.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ImageList" /> used by the <see cref="T:System.Windows.Forms.ListView" /> control that contains the image displayed with the item.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.IndentCount">
      <summary>Gets or sets the number of small image widths by which to indent the <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">When setting <see cref="P:System.Windows.Forms.ListViewItem.IndentCount" />, the number specified is less than 0.</exception>
      <returns>The number of small image widths by which to indent the <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Index">
      <summary>Gets the zero-based index of the item within the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <returns>The zero-based index of the item within the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> of the <see cref="T:System.Windows.Forms.ListView" /> control, or -1 if the item is not associated with a <see cref="T:System.Windows.Forms.ListView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListView">
      <summary>Gets the <see cref="T:System.Windows.Forms.ListView" /> control that contains the item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListView" /> that contains the <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Name">
      <summary>Gets or sets the name associated with this <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
      <returns>The name of the <see cref="T:System.Windows.Forms.ListViewItem" />. The default is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Position">
      <summary>Gets or sets the position of the upper-left corner of the <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.ListViewItem.Position" /> is set when the containing <see cref="T:System.Windows.Forms.ListView" /> is in virtual mode.</exception>
      <returns>The <see cref="T:System.Drawing.Point" /> at the upper-left corner of the <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Selected">
      <summary>Gets or sets a value indicating whether the item is selected.</summary>
      <returns>
        <see langword="true" /> if the item is selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.StateImageIndex">
      <summary>Gets or sets the index of the state image (an image such as a selected or cleared check box that indicates the state of the item) that is displayed for the item.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value specified for this property is less than -1.  
  
 -or-  
  
 The value specified for this property is greater than 14.</exception>
      <returns>The zero-based index of the state image in the <see cref="T:System.Windows.Forms.ImageList" /> that is displayed for the item.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.SubItems">
      <summary>Gets a collection containing all subitems of the item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" /> that contains the subitems.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Tag">
      <summary>Gets or sets an object that contains data to associate with the item.</summary>
      <returns>An object that contains information that is associated with the item.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.Text">
      <summary>Gets or sets the text of the item.</summary>
      <returns>The text to display for the item. This should not exceed 259 characters.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ToolTipText">
      <summary>Gets or sets the text shown when the mouse pointer rests on the <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
      <returns>The text shown when the mouse pointer rests on the <see cref="T:System.Windows.Forms.ListViewItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.UseItemStyleForSubItems">
      <summary>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.ListViewItem.Font" />, <see cref="P:System.Windows.Forms.ListViewItem.ForeColor" />, and <see cref="P:System.Windows.Forms.ListViewItem.BackColor" /> properties for the item are used for all its subitems.</summary>
      <returns>
        <see langword="true" /> if all subitems use the font, foreground color, and background color settings of the item; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewItem.ListViewSubItem">
      <summary>Represents a subitem of a <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItem.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> class with default values.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItem.#ctor(System.Windows.Forms.ListViewItem,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> class with the specified owner and text.</summary>
      <param name="owner">A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item that owns the subitem.</param>
      <param name="text">The text to display for the subitem.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItem.#ctor(System.Windows.Forms.ListViewItem,System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> class with the specified owner, text, foreground color, background color, and font values.</summary>
      <param name="owner">A <see cref="T:System.Windows.Forms.ListViewItem" /> that represents the item that owns the subitem.</param>
      <param name="text">The text to display for the subitem.</param>
      <param name="foreColor">A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the subitem.</param>
      <param name="backColor">A <see cref="T:System.Drawing.Color" /> that represents the background color of the subitem.</param>
      <param name="font">A <see cref="T:System.Drawing.Font" /> that represents the font to display the subitem's text in.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItem.ResetStyle">
      <summary>Resets the styles applied to the subitem to the default font and colors.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItem.ToString">
      <summary>Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItem.BackColor">
      <summary>Gets or sets the background color of the subitem's text.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the subitem's text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItem.Bounds">
      <summary>Gets the bounding rectangle of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</summary>
      <returns>The bounding <see cref="T:System.Drawing.Rectangle" /> of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItem.Font">
      <summary>Gets or sets the font of the text displayed by the subitem.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItem.ForeColor">
      <summary>Gets or sets the foreground color of the subitem's text.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the subitem's text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItem.Name">
      <summary>Gets or sets the name of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</summary>
      <returns>The name of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />, or an empty string ("") if a name has not been set.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItem.Tag">
      <summary>Gets or sets an object that contains data about the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItem.Text">
      <summary>Gets or sets the text of the subitem.</summary>
      <returns>The text to display for the subitem.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> objects stored in a <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.#ctor(System.Windows.Forms.ListViewItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ListViewItem" /> that owns the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(System.String)">
      <summary>Adds a subitem to the collection with specified text.</summary>
      <param name="text">The text to display for the subitem.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(System.String,System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)">
      <summary>Adds a subitem to the collection with specified text, foreground color, background color, and font settings.</summary>
      <param name="text">The text to display for the subitem.</param>
      <param name="foreColor">A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the subitem.</param>
      <param name="backColor">A <see cref="T:System.Drawing.Color" /> that represents the background color of the subitem.</param>
      <param name="font">A <see cref="T:System.Drawing.Font" /> that represents the typeface to display the subitem's text in.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(System.Windows.Forms.ListViewItem.ListViewSubItem)">
      <summary>Adds an existing <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to the collection.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to add to the collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(System.String[])">
      <summary>Creates new subitems based on an array and adds them to the collection.</summary>
      <param name="items">An array of strings representing the text of each subitem to add to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(System.String[],System.Drawing.Color,System.Drawing.Color,System.Drawing.Font)">
      <summary>Creates new subitems based on an array and adds them to the collection with specified foreground color, background color, and font.</summary>
      <param name="items">An array of strings representing the text of each subitem to add to the collection.</param>
      <param name="foreColor">A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the subitem.</param>
      <param name="backColor">A <see cref="T:System.Drawing.Color" /> that represents the background color of the subitem.</param>
      <param name="font">A <see cref="T:System.Drawing.Font" /> that represents the typeface to display the subitem's text in.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(System.Windows.Forms.ListViewItem.ListViewSubItem[])">
      <summary>Adds an array of <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> objects to the collection.</summary>
      <param name="items">An array of <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> objects to add to the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Clear">
      <summary>Removes all subitems and the parent <see cref="T:System.Windows.Forms.ListViewItem" /> from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Contains(System.Windows.Forms.ListViewItem.ListViewSubItem)">
      <summary>Determines whether the specified subitem is located in the collection.</summary>
      <param name="subItem">A <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> representing the subitem to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the subitem is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.ContainsKey(System.String)">
      <summary>Determines if the collection contains an item with the specified key.</summary>
      <param name="key">The name of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to look for.</param>
      <returns>
        <see langword="true" /> to indicate the collection contains an item with the specified key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.GetEnumerator">
      <summary>Returns an enumerator to use to iterate through the subitem collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the subitem collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IndexOf(System.Windows.Forms.ListViewItem.ListViewSubItem)">
      <summary>Returns the index within the collection of the specified subitem.</summary>
      <param name="subItem">A <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> representing the subitem to locate in the collection.</param>
      <returns>The zero-based index of the subitem's location in the collection. If the subitem is not located in the collection, the return value is negative one (-1).</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IndexOfKey(System.String)">
      <summary>Returns the index of the first occurrence of an item with the specified key within the collection.</summary>
      <param name="key">The name of the item to retrieve the index for.</param>
      <returns>The zero-based index of the first occurrence of an item with the specified key.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Insert(System.Int32,System.Windows.Forms.ListViewItem.ListViewSubItem)">
      <summary>Inserts a subitem into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="item">A <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> representing the subitem to insert into the collection.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than the value of the <see cref="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Remove(System.Windows.Forms.ListViewItem.ListViewSubItem)">
      <summary>Removes a specified item from the collection.</summary>
      <param name="item">The item to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.RemoveAt(System.Int32)">
      <summary>Removes the subitem at the specified index within the collection.</summary>
      <param name="index">The zero-based index of the subitem to remove.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.RemoveByKey(System.String)">
      <summary>Removes an item with the specified key from the collection.</summary>
      <param name="key">The name of the item to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the item and collection of subitems into an array.</summary>
      <param name="dest">An array of <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</param>
      <param name="index">The zero-based index in array at which copying begins.</param>
      <exception cref="T:System.ArrayTypeMismatchException">The array type is not compatible with <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an existing <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to the collection.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to add to the collection.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="item" /> is not a <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</exception>
      <returns>The zero-based index that indicates the location of the object that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified subitem is located in the collection.</summary>
      <param name="item">An object that represents the subitem to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the subitem is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index within the collection of the specified subitem.</summary>
      <param name="subItem">An object that represents the subitem to locate in the collection.</param>
      <returns>The zero-based index of the subitem if it is in the collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts a subitem into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the item is inserted.</param>
      <param name="item">An object that represents the subitem to insert into the collection.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="item" /> is not a <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The index parameter is less than 0 or greater than or equal to the value of the Count property of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes a specified item from the collection.</summary>
      <param name="item">The item to remove from the collection.</param>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Count">
      <summary>Gets the number of subitems in the collection.</summary>
      <returns>The number of subitems in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Item(System.Int32)">
      <summary>Gets or sets the subitem at the specified index within the collection.</summary>
      <param name="index">The index of the item in the collection to retrieve.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> parameter is less than zero or greater than or equal to the value of the <see cref="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Count" /> property of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> representing the subitem located at the specified index within the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Item(System.String)">
      <summary>Gets an item with the specified key from the collection.</summary>
      <param name="key">The name of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> to retrieve.</param>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> with the specified key.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>The object used to synchronize the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> at the specified index within the collection.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index parameter is less than 0 or greater than or equal to the value of the Count property of the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" />.</exception>
      <exception cref="T:System.ArgumentException">The object is not a <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> that represents the item located at the specified index within the collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewItemConverter">
      <summary>Provides a type converter to convert <see cref="T:System.Windows.Forms.ListViewItem" /> objects to and from various other representations.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItemConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItemConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItemConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ListViewItemConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the given object to another type.</summary>
      <param name="context">A formatter context. This object can be used to extract additional information about the environment this converter is being invoked from. This may be <see langword="null" />, so you should always check. Also, properties on the context object may also return <see langword="null" />.</param>
      <param name="culture">An optional culture info. If not supplied the current culture is assumed.</param>
      <param name="value">The object to convert.</param>
      <param name="destinationType">The type to convert the object to.</param>
      <returns>The converted object.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewItemMouseHoverEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.ItemMouseHover" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItemMouseHoverEventArgs.#ctor(System.Windows.Forms.ListViewItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItemMouseHoverEventArgs" /> class.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ListViewItem" /> the mouse pointer is currently hovering over.</param>
    </member>
    <member name="P:System.Windows.Forms.ListViewItemMouseHoverEventArgs.Item">
      <summary>Gets the item the mouse pointer is currently hovering over.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> that the mouse pointer is currently hovering over.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewItemMouseHoverEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.ItemMouseHover" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ListViewItemMouseHoverEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ListViewItemSelectionChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.ItemSelectionChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItemSelectionChangedEventArgs.#ctor(System.Windows.Forms.ListViewItem,System.Int32,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItemSelectionChangedEventArgs" /> class.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ListViewItem" /> whose selection state has changed.</param>
      <param name="itemIndex">The index of the <see cref="T:System.Windows.Forms.ListViewItem" /> whose selection state has changed.</param>
      <param name="isSelected">
        <see langword="true" /> to indicate the item's state has changed to selected; <see langword="false" /> to indicate the item's state has changed to deselected.</param>
    </member>
    <member name="P:System.Windows.Forms.ListViewItemSelectionChangedEventArgs.IsSelected">
      <summary>Gets a value indicating whether the item's state has changed to selected.</summary>
      <returns>
        <see langword="true" /> if the item's state has changed to selected; <see langword="false" /> if the item's state has changed to deselected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItemSelectionChangedEventArgs.Item">
      <summary>Gets the item whose selection state has changed.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> whose selection state has changed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItemSelectionChangedEventArgs.ItemIndex">
      <summary>Gets the index of the item whose selection state has changed.</summary>
      <returns>The index of the <see cref="T:System.Windows.Forms.ListViewItem" /> whose selection state has changed.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewItemSelectionChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.ItemSelectionChanged" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">An <see cref="E:System.Windows.Forms.ListView.ItemSelectionChanged" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ListViewItemStateImageIndexConverter">
      <summary>Provides a type converter to convert state image index values from one data type to another.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItemStateImageIndexConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItemStateImageIndexConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewItemStateImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Retrieves a collection containing a set of standard values for the data type this validator is designed for.</summary>
      <param name="context">An object that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or its properties can be <see langword="null" />.</param>
      <returns>A collection that holds a standard set of valid index values. If no image list is found, this collection contains a single object with a value of -1. This method returns <see langword="null" /> if the data type doesn't support a standard set of values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewItemStateImageIndexConverter.IncludeNoneAsStandardValue">
      <summary>Gets a value that indicates whether a <see langword="null" /> value is valid in the <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> collection.</summary>
      <returns>Always returns <see langword="false" /> to indicate that a <see langword="null" /> value isn't valid in the standard values collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewItemStates">
      <summary>Defines constants that represent the possible states of a <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewItemStates.Checked">
      <summary>The item is checked.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewItemStates.Default">
      <summary>The item is in its default state.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewItemStates.Focused">
      <summary>The item has focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewItemStates.Grayed">
      <summary>The item is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewItemStates.Hot">
      <summary>The item is currently under the mouse pointer.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewItemStates.Indeterminate">
      <summary>The item is in an indeterminate state.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewItemStates.Marked">
      <summary>The item is marked.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewItemStates.Selected">
      <summary>The item is selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.ListViewItemStates.ShowKeyboardCues">
      <summary>The item should indicate a keyboard shortcut.</summary>
    </member>
    <member name="T:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.VirtualItemsSelectionRangeChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.#ctor(System.Int32,System.Int32,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs" /> class.</summary>
      <param name="startIndex">The index of the first item in the range that has changed.</param>
      <param name="endIndex">The index of the last item in the range that has changed.</param>
      <param name="isSelected">
        <see langword="true" /> to indicate the items are selected; <see langword="false" /> to indicate the items are deselected.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="startIndex" /> is larger than <paramref name="endIndex" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.EndIndex">
      <summary>Gets the index for the last item in the range of items whose selection state has changed.</summary>
      <returns>The index of the last item in the range of items whose selection state has changed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.IsSelected">
      <summary>Gets a value indicating whether the range of items is selected.</summary>
      <returns>
        <see langword="true" /> if the range of items is selected; <see langword="false" /> if the range of items is deselected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.StartIndex">
      <summary>Gets the index for the first item in the range of items whose selection state has changed.</summary>
      <returns>The index of the first item in the range of items whose selection state has changed.</returns>
    </member>
    <member name="T:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.VirtualItemsSelectionRangeChanged" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.MaskedTextBox">
      <summary>Uses a mask to distinguish between proper and improper user input.</summary>
    </member>
    <member name="E:System.Windows.Forms.MaskedTextBox.AcceptsTabChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.MaskedTextBox.AcceptsTab" /> property has changed. This event is not raised by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.MaskedTextBox.IsOverwriteModeChanged">
      <summary>Occurs after the insert mode has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.MaskedTextBox.MaskChanged">
      <summary>Occurs after the input mask is changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.MaskedTextBox.MaskInputRejected">
      <summary>Occurs when the user's input or assigned character does not match the corresponding format element of the input mask.</summary>
    </member>
    <member name="E:System.Windows.Forms.MaskedTextBox.MultilineChanged">
      <summary>Typically occurs when the value of the <see cref="P:System.Windows.Forms.MaskedTextBox.Multiline" /> property has changed; however, this event is not raised by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.MaskedTextBox.TextAlignChanged">
      <summary>Occurs when the text alignment is changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.MaskedTextBox.TypeValidationCompleted">
      <summary>Occurs when <see cref="T:System.Windows.Forms.MaskedTextBox" /> has finished parsing the current value using the <see cref="P:System.Windows.Forms.MaskedTextBox.ValidatingType" /> property.</summary>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MaskedTextBox" /> class using defaults.</summary>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.#ctor(System.ComponentModel.MaskedTextProvider)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MaskedTextBox" /> class using the specified custom mask language provider.</summary>
      <param name="maskedTextProvider">A custom mask language provider, derived from the <see cref="T:System.ComponentModel.MaskedTextProvider" /> class.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="maskedTextProvider" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MaskedTextBox" /> class using the specified input mask.</summary>
      <param name="mask">A <see cref="T:System.String" /> representing the input mask. The initial value of the <see cref="P:System.Windows.Forms.MaskedTextBox.Mask" /> property.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="mask" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.ClearUndo">
      <summary>Clears information about the most recent operation from the undo buffer of the text box. This method is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.MaskedTextBox.CreateHandle">
      <summary>Creates a handle for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.GetCharFromPosition(System.Drawing.Point)">
      <summary>Retrieves the character that is closest to the specified location within the control.</summary>
      <param name="pt">The location from which to seek the nearest character.</param>
      <returns>The character at the specified location.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.GetCharIndexFromPosition(System.Drawing.Point)">
      <summary>Retrieves the index of the character nearest to the specified location.</summary>
      <param name="pt">The location to search.</param>
      <returns>The zero-based character index at the specified location.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.GetFirstCharIndexFromLine(System.Int32)">
      <summary>Retrieves the index of the first character of a given line. This method is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <param name="lineNumber">This parameter is not used.</param>
      <returns>This method will always return 0.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.GetFirstCharIndexOfCurrentLine">
      <summary>Retrieves the index of the first character of the current line. This method is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <returns>This method will always return 0.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.GetLineFromCharIndex(System.Int32)">
      <summary>Retrieves the line number from the specified character position within the text of the control. This method is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <param name="index">This parameter is not used.</param>
      <returns>This method will always return 0.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.GetPositionFromCharIndex(System.Int32)">
      <summary>Retrieves the location within the control at the specified character index.</summary>
      <param name="index">The index of the character for which to retrieve the location.</param>
      <returns>The location of the specified character within the client rectangle of the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is an input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is an input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnBackColorChanged(System.EventArgs)">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackColor" /> property changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnGotFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnIsOverwriteModeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.MaskedTextBox.IsOverwriteModeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnMaskChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.MaskedTextBox.MaskChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnMultilineChanged(System.EventArgs)">
      <summary>Typically raises the <see cref="E:System.Windows.Forms.MaskedTextBox.MultilineChanged" /> event, but disabled for <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnTextAlignChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.MaskedTextBox.TextAlignChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.OnValidating(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Validating" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains event data.</param>
      <exception cref="T:System.Exception">A critical exception occurred during the parsing of the input string.</exception>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" />, passed by reference that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the shortcut key to process.</param>
      <returns>
        <see langword="true" /> if the command key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.ProcessKeyMessage(System.Windows.Forms.Message@)">
      <summary>Overrides the base implementation of this method to handle input language changes.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference that represents the window message to process.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.ScrollToCaret">
      <summary>Scrolls the contents of the control to the current caret position. This method is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.ToString">
      <summary>Returns a string that represents the current masked text box. This method overrides <see cref="M:System.Windows.Forms.TextBoxBase.ToString" />.</summary>
      <returns>A <see cref="T:System.String" /> that contains information about the current <see cref="T:System.Windows.Forms.MaskedTextBox" />. The string includes the type, a simplified view of the input string, and the formatted input string.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.Undo">
      <summary>Undoes the last edit operation in the text box. This method is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.ValidateText">
      <summary>Converts the user input string to an instance of the validating type.</summary>
      <exception cref="T:System.Exception">A critical exception occurred during the parsing of the input string.</exception>
      <returns>If successful, an <see cref="T:System.Object" /> of the type specified by the <see cref="P:System.Windows.Forms.MaskedTextBox.ValidatingType" /> property; otherwise, <see langword="null" /> to indicate conversion failure.</returns>
    </member>
    <member name="M:System.Windows.Forms.MaskedTextBox.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.AcceptsTab">
      <summary>Gets or sets a value determining how TAB keys are handled for multiline configurations. This property is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.AllowPromptAsInput">
      <summary>Gets or sets a value indicating whether <see cref="P:System.Windows.Forms.MaskedTextBox.PromptChar" /> can be entered as valid data by the user.</summary>
      <returns>
        <see langword="true" /> if the user can enter the prompt character into the control; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.AsciiOnly">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.MaskedTextBox" /> control accepts characters outside of the ASCII character set.</summary>
      <returns>
        <see langword="true" /> if only ASCII is accepted; <see langword="false" /> if the <see cref="T:System.Windows.Forms.MaskedTextBox" /> control can accept any arbitrary Unicode character. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.BeepOnError">
      <summary>Gets or sets a value indicating whether the masked text box control raises the system beep for each user key stroke that it rejects.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.MaskedTextBox" /> control should beep on invalid input; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.CanUndo">
      <summary>Gets a value indicating whether the user can undo the previous operation. This property is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> representing the information needed when creating a control.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.Culture">
      <summary>Gets or sets the culture information associated with the masked text box.</summary>
      <exception cref="T:System.ArgumentNullException">
        <see cref="P:System.Windows.Forms.MaskedTextBox.Culture" /> was set to <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Globalization.CultureInfo" /> representing the culture supported by the <see cref="T:System.Windows.Forms.MaskedTextBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.CutCopyMaskFormat">
      <summary>Gets or sets a value that determines whether literals and prompt characters are copied to the clipboard.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Property set with a <see cref="T:System.Windows.Forms.MaskFormat" /> value that is not valid.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.MaskFormat" /> values. The default is <see cref="F:System.Windows.Forms.MaskFormat.IncludeLiterals" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.FormatProvider">
      <summary>Gets or sets the <see cref="T:System.IFormatProvider" /> to use when performing type validation.</summary>
      <returns>An object that implements the <see cref="T:System.IFormatProvider" /> interface.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.HidePromptOnLeave">
      <summary>Gets or sets a value indicating whether the prompt characters in the input mask are hidden when the masked text box loses focus.</summary>
      <returns>
        <see langword="true" /> if <see cref="P:System.Windows.Forms.MaskedTextBox.PromptChar" /> is hidden when <see cref="T:System.Windows.Forms.MaskedTextBox" /> does not have focus; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.InsertKeyMode">
      <summary>Gets or sets the text insertion mode of the masked text box control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">An invalid <see cref="T:System.Windows.Forms.InsertKeyMode" /> value was supplied when setting this property.</exception>
      <returns>An <see cref="T:System.Windows.Forms.InsertKeyMode" /> value that indicates the current insertion mode. The default is <see cref="F:System.Windows.Forms.InsertKeyMode.Default" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.IsOverwriteMode">
      <summary>Gets a value that specifies whether new user input overwrites existing input.</summary>
      <returns>
        <see langword="true" /> if <see cref="T:System.Windows.Forms.MaskedTextBox" /> will overwrite existing characters as the user enters new ones; <see langword="false" /> if <see cref="T:System.Windows.Forms.MaskedTextBox" /> will shift existing characters forward. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.Lines">
      <summary>Gets or sets the lines of text in multiline configurations. This property is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <returns>An array of type <see cref="T:System.String" /> that contains a single line.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.Mask">
      <summary>Gets or sets the input mask to use at run time.</summary>
      <exception cref="T:System.ArgumentException">The string supplied to the <see cref="P:System.Windows.Forms.MaskedTextBox.Mask" /> property is not a valid mask. Invalid masks include masks containing non-printable characters.</exception>
      <returns>A <see cref="T:System.String" /> representing the current mask. The default value is the empty string which allows any input.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.MaskCompleted">
      <summary>Gets a value indicating whether all required inputs have been entered into the input mask.</summary>
      <returns>
        <see langword="true" /> if all required input has been entered into the mask; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.MaskedTextProvider">
      <summary>Gets a clone of the mask provider associated with this instance of the masked text box control.</summary>
      <returns>A masking language provider of type <see cref="P:System.Windows.Forms.MaskedTextBox.MaskedTextProvider" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.MaskFull">
      <summary>Gets a value indicating whether all required and optional inputs have been entered into the input mask.</summary>
      <returns>
        <see langword="true" /> if all required and optional inputs have been entered; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.MaxLength">
      <summary>Gets or sets the maximum number of characters the user can type or paste into the text box control. This property is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <returns>This property always returns 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.Multiline">
      <summary>Gets or sets a value indicating whether this is a multiline text box control. This property is not fully supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <returns>This property always returns <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.PasswordChar">
      <summary>Gets or sets the character to be displayed in substitute for user input.</summary>
      <exception cref="T:System.ArgumentException">The character specified when setting this property is not a valid password character, as determined by the <see cref="M:System.ComponentModel.MaskedTextProvider.IsValidPasswordChar(System.Char)" /> method of the <see cref="T:System.ComponentModel.MaskedTextProvider" /> class.</exception>
      <exception cref="T:System.InvalidOperationException">The password character specified is the same as the current prompt character, <see cref="P:System.Windows.Forms.MaskedTextBox.PromptChar" />. The two are required to be different.</exception>
      <returns>The <see cref="T:System.Char" /> value used as the password character.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.PromptChar">
      <summary>Gets or sets the character used to represent the absence of user input in <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <exception cref="T:System.ArgumentException">The character specified when setting this property is not a valid prompt character, as determined by the <see cref="M:System.ComponentModel.MaskedTextProvider.IsValidPasswordChar(System.Char)" /> method of the <see cref="T:System.ComponentModel.MaskedTextProvider" /> class.</exception>
      <exception cref="T:System.InvalidOperationException">The prompt character specified is the same as the current password character, <see cref="P:System.Windows.Forms.MaskedTextBox.PasswordChar" />. The two are required to be different.</exception>
      <returns>The character used to prompt the user for input. The default is an underscore (_).</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.ReadOnly">
      <summary>Gets or sets a value indicating whether text in the text box is read-only.</summary>
      <returns>
        <see langword="true" /> to indicate the text is read only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.RejectInputOnFirstFailure">
      <summary>Gets or sets a value indicating whether the parsing of user input should stop after the first invalid character is reached.</summary>
      <returns>
        <see langword="true" /> if processing of the input string should be terminated at the first parsing error; otherwise, <see langword="false" /> if processing should ignore all errors. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.ResetOnPrompt">
      <summary>Gets or sets a value that determines how an input character that matches the prompt character should be handled.</summary>
      <returns>
        <see langword="true" /> if the prompt character entered as input causes the current editable position in the mask to be reset; otherwise, <see langword="false" /> to indicate that the prompt character is to be processed as a normal input character. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.ResetOnSpace">
      <summary>Gets or sets a value that determines how a space input character should be handled.</summary>
      <returns>
        <see langword="true" /> if the space input character causes the current editable position in the mask to be reset; otherwise, <see langword="false" /> to indicate that it is to be processed as a normal input character. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.SelectedText">
      <summary>Gets or sets the current selection in the <see cref="T:System.Windows.Forms.MaskedTextBox" /> control.</summary>
      <returns>The currently selected text as a <see cref="T:System.String" />. If no text is currently selected, this property resolves to an empty string.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.SkipLiterals">
      <summary>Gets or sets a value indicating whether the user is allowed to reenter literal values.</summary>
      <returns>
        <see langword="true" /> to allow literals to be reentered; otherwise, <see langword="false" /> to prevent the user from overwriting literal characters. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.Text">
      <summary>Gets or sets the text as it is currently displayed to the user.</summary>
      <returns>A <see cref="T:System.String" /> containing the text currently displayed by the control. The default is an empty string.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.TextAlign">
      <summary>Gets or sets how text is aligned in a masked text box control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned to this property is not of type <see cref="T:System.Windows.Forms.HorizontalAlignment" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> enumeration values that specifies how text is aligned relative to the control. The default is <see cref="F:System.Windows.Forms.HorizontalAlignment.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.TextLength">
      <summary>Gets the length of the displayed text.</summary>
      <returns>An Int32 representing the number of characters in the <see cref="P:System.Windows.Forms.MaskedTextBox.Text" /> property. <see cref="P:System.Windows.Forms.MaskedTextBox.TextLength" /> respects properties such as <see cref="P:System.Windows.Forms.MaskedTextBox.HidePromptOnLeave" />, which means that the return results may be different depending on whether the control has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.TextMaskFormat">
      <summary>Gets or sets a value that determines whether literals and prompt characters are included in the formatted string.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">Property set with a <see cref="T:System.Windows.Forms.MaskFormat" /> value that is not valid.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.MaskFormat" /> values. The default is <see cref="F:System.Windows.Forms.MaskFormat.IncludeLiterals" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.UseSystemPasswordChar">
      <summary>Gets or sets a value indicating whether the operating system-supplied password character should be used.</summary>
      <exception cref="T:System.InvalidOperationException">The password character specified is the same as the current prompt character, <see cref="P:System.Windows.Forms.MaskedTextBox.PromptChar" />. The two are required to be different.</exception>
      <returns>
        <see langword="true" /> if the system password should be used as the prompt character; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.ValidatingType">
      <summary>Gets or sets the data type used to verify the data input by the user.</summary>
      <returns>A <see cref="T:System.Type" /> representing the data type used in validation. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskedTextBox.WordWrap">
      <summary>Gets or sets a value indicating whether a multiline text box control automatically wraps words to the beginning of the next line when necessary. This property is not supported by <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
      <returns>The <see cref="P:System.Windows.Forms.MaskedTextBox.WordWrap" /> property always returns <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.MaskFormat">
      <summary>Defines how to format the text inside of a <see cref="T:System.Windows.Forms.MaskedTextBox" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals">
      <summary>Return only text input by the user.</summary>
    </member>
    <member name="F:System.Windows.Forms.MaskFormat.IncludeLiterals">
      <summary>Return text input by the user as well as any literal characters defined in the mask.</summary>
    </member>
    <member name="F:System.Windows.Forms.MaskFormat.IncludePrompt">
      <summary>Return text input by the user as well as any instances of the prompt character.</summary>
    </member>
    <member name="F:System.Windows.Forms.MaskFormat.IncludePromptAndLiterals">
      <summary>Return text input by the user as well as any literal characters defined in the mask and any instances of the prompt character.</summary>
    </member>
    <member name="T:System.Windows.Forms.MaskInputRejectedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.MaskedTextBox.MaskInputRejected" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.MaskInputRejectedEventArgs.#ctor(System.Int32,System.ComponentModel.MaskedTextResultHint)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MaskInputRejectedEventArgs" /> class.</summary>
      <param name="position">An <see cref="T:System.Int32" /> value that contains the zero-based position of the character that failed the mask. The position includes literal characters.</param>
      <param name="rejectionHint">A <see cref="T:System.ComponentModel.MaskedTextResultHint" /> that generally describes why the character was rejected.</param>
    </member>
    <member name="P:System.Windows.Forms.MaskInputRejectedEventArgs.Position">
      <summary>Gets the position in the mask corresponding to the invalid input character.</summary>
      <returns>An <see cref="T:System.Int32" /> value that contains the zero-based position of the character that failed the mask. The position includes literal characters.</returns>
    </member>
    <member name="P:System.Windows.Forms.MaskInputRejectedEventArgs.RejectionHint">
      <summary>Gets an enumerated value that describes why the input character was rejected.</summary>
      <returns>A <see cref="T:System.ComponentModel.MaskedTextResultHint" /> that generally describes why the character was rejected.</returns>
    </member>
    <member name="T:System.Windows.Forms.MaskInputRejectedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.MaskedTextBox.MaskInputRejected" /> event of a <see cref="T:System.Windows.Forms.MaskedTextBox" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.MaskInputRejectedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.MdiClient">
      <summary>Represents the container for multiple-document interface (MDI) child forms. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.MdiClient.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MdiClient" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.MdiClient.LayoutMdi(System.Windows.Forms.MdiLayout)">
      <summary>Arranges the multiple-document interface (MDI) child forms within the MDI parent form.</summary>
      <param name="value">One of the enumeration values that defines the layout of MDI child forms.</param>
    </member>
    <member name="P:System.Windows.Forms.MdiClient.BackgroundImage">
      <summary>Gets or sets the background image displayed in the <see cref="T:System.Windows.Forms.MdiClient" /> control.</summary>
      <returns>The image to display in the background of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.MdiClient.BackgroundImageLayout">
      <summary>This property is not relevant to this class.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageLayout" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.MdiClient.MdiChildren">
      <summary>Gets the child multiple-document interface (MDI) forms of the <see cref="T:System.Windows.Forms.MdiClient" /> control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Form" /> array that contains the child MDI forms of the <see cref="T:System.Windows.Forms.MdiClient" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.MdiClient.ControlCollection">
      <summary>Contains a collection of <see cref="T:System.Windows.Forms.MdiClient" /> controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.MdiClient.ControlCollection.#ctor(System.Windows.Forms.MdiClient)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MdiClient.ControlCollection" /> class, specifying the owner of the collection.</summary>
      <param name="owner">The owner of the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.MdiClient.ControlCollection.Add(System.Windows.Forms.Control)">
      <summary>Adds a control to the multiple-document interface (MDI) Container.</summary>
      <param name="value">MDI Child Form to add.</param>
    </member>
    <member name="M:System.Windows.Forms.MdiClient.ControlCollection.Remove(System.Windows.Forms.Control)">
      <summary>Removes a child control.</summary>
      <param name="value">MDI Child Form to remove.</param>
    </member>
    <member name="T:System.Windows.Forms.MdiLayout">
      <summary>Specifies the layout of multiple document interface (MDI) child windows in an MDI parent window.</summary>
    </member>
    <member name="F:System.Windows.Forms.MdiLayout.ArrangeIcons">
      <summary>All MDI child icons are arranged within the client region of the MDI parent form.</summary>
    </member>
    <member name="F:System.Windows.Forms.MdiLayout.Cascade">
      <summary>All MDI child windows are cascaded within the client region of the MDI parent form.</summary>
    </member>
    <member name="F:System.Windows.Forms.MdiLayout.TileHorizontal">
      <summary>All MDI child windows are tiled horizontally within the client region of the MDI parent form.</summary>
    </member>
    <member name="F:System.Windows.Forms.MdiLayout.TileVertical">
      <summary>All MDI child windows are tiled vertically within the client region of the MDI parent form.</summary>
    </member>
    <member name="T:System.Windows.Forms.MeasureItemEventArgs">
      <summary>Provides data for the <see langword="MeasureItem" /> event of the <see cref="T:System.Windows.Forms.ListBox" />, <see cref="T:System.Windows.Forms.ComboBox" />, <see cref="T:System.Windows.Forms.CheckedListBox" />, and <see cref="T:System.Windows.Forms.MenuItem" /> controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.MeasureItemEventArgs.#ctor(System.Drawing.Graphics,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MeasureItemEventArgs" /> class.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> object being written to.</param>
      <param name="index">The index of the item for which you need the height or width.</param>
    </member>
    <member name="M:System.Windows.Forms.MeasureItemEventArgs.#ctor(System.Drawing.Graphics,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MeasureItemEventArgs" /> class providing a parameter for the item height.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> object being written to.</param>
      <param name="index">The index of the item for which you need the height or width.</param>
      <param name="itemHeight">The height of the item to measure relative to the <paramref name="graphics" /> object.</param>
    </member>
    <member name="P:System.Windows.Forms.MeasureItemEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> object to measure against.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> object to use to determine the scale of the item you are drawing.</returns>
    </member>
    <member name="P:System.Windows.Forms.MeasureItemEventArgs.Index">
      <summary>Gets the index of the item for which the height and width is needed.</summary>
      <returns>The index of the item to be measured.</returns>
    </member>
    <member name="P:System.Windows.Forms.MeasureItemEventArgs.ItemHeight">
      <summary>Gets or sets the height of the item specified by the <see cref="P:System.Windows.Forms.MeasureItemEventArgs.Index" />.</summary>
      <returns>The height of the item measured.</returns>
    </member>
    <member name="P:System.Windows.Forms.MeasureItemEventArgs.ItemWidth">
      <summary>Gets or sets the width of the item specified by the <see cref="P:System.Windows.Forms.MeasureItemEventArgs.Index" />.</summary>
      <returns>The width of the item measured.</returns>
    </member>
    <member name="T:System.Windows.Forms.MeasureItemEventHandler">
      <summary>Represents the method that will handle the <see langword="MeasureItem" /> event of the <see cref="T:System.Windows.Forms.ListBox" />, <see cref="T:System.Windows.Forms.ComboBox" />, <see cref="T:System.Windows.Forms.CheckedListBox" />, or <see cref="T:System.Windows.Forms.MenuItem" /> controls.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.MeasureItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.MenuGlyph">
      <summary>Specifies the image to draw when drawing a menu with the <see cref="M:System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.MenuGlyph)" /> method.</summary>
    </member>
    <member name="F:System.Windows.Forms.MenuGlyph.Arrow">
      <summary>Draws a submenu arrow.</summary>
    </member>
    <member name="F:System.Windows.Forms.MenuGlyph.Bullet">
      <summary>Draws a menu bullet.</summary>
    </member>
    <member name="F:System.Windows.Forms.MenuGlyph.Checkmark">
      <summary>Draws a menu check mark.</summary>
    </member>
    <member name="F:System.Windows.Forms.MenuGlyph.Max">
      <summary>The maximum value available by this enumeration (equal to the <see cref="F:System.Windows.Forms.MenuGlyph.Bullet" /> value).</summary>
    </member>
    <member name="F:System.Windows.Forms.MenuGlyph.Min">
      <summary>The minimum value available by this enumeration (equal to the <see cref="F:System.Windows.Forms.MenuGlyph.Arrow" /> value).</summary>
    </member>
    <member name="T:System.Windows.Forms.MenuStrip">
      <summary>Provides a menu system for a form.</summary>
    </member>
    <member name="E:System.Windows.Forms.MenuStrip.MenuActivate">
      <summary>Occurs when the user accesses the menu with the keyboard or mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.MenuStrip.MenuDeactivate">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.MenuStrip" /> is deactivated.</summary>
    </member>
    <member name="M:System.Windows.Forms.MenuStrip.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MenuStrip" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.MenuStrip.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.MenuStrip.CreateDefaultItem(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Creates a <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> with the specified text, image, and event handler on a new <see cref="T:System.Windows.Forms.MenuStrip" />.</summary>
      <param name="text">The text to use for the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />. If the <paramref name="text" /> parameter is a hyphen (-), this method creates a <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</param>
      <param name="onClick">An event handler that raises the <see cref="E:System.Windows.Forms.Control.Click" /> event when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is clicked.</param>
      <returns>A <see cref="M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image,System.EventHandler)" />, or a <see cref="T:System.Windows.Forms.ToolStripSeparator" /> if the <paramref name="text" /> parameter is a hyphen (-).</returns>
    </member>
    <member name="M:System.Windows.Forms.MenuStrip.OnMenuActivate(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.MenuStrip.MenuActivate" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MenuStrip.OnMenuDeactivate(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.MenuStrip.MenuDeactivate" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MenuStrip.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.MenuStrip.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.MenuStrip.CanOverflow">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.MenuStrip" /> supports overflow functionality.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.MenuStrip" /> supports overflow functionality; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MenuStrip.DefaultGripMargin">
      <summary>Gets the default spacing, in pixels, between the sizing grip and the edges of the <see cref="T:System.Windows.Forms.MenuStrip" />.</summary>
      <returns>
        <see cref="T:System.Windows.Forms.Padding" /> values representing the spacing, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.MenuStrip.DefaultPadding">
      <summary>Gets the spacing, in pixels, between the left, right, top, and bottom edges of the <see cref="T:System.Windows.Forms.MenuStrip" /> from the edges of the form.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that represents the spacing. The default is <c>{Left=6, Top=2, Right=0, Bottom=2}</c>.</returns>
    </member>
    <member name="P:System.Windows.Forms.MenuStrip.DefaultShowItemToolTips">
      <summary>Gets a value indicating whether ToolTips are shown for the <see cref="T:System.Windows.Forms.MenuStrip" /> by default.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.MenuStrip.DefaultSize">
      <summary>Gets the horizontal and vertical dimensions, in pixels, of the <see cref="T:System.Windows.Forms.MenuStrip" /> when it is first created.</summary>
      <returns>A <see cref="M:System.Drawing.Point.#ctor(System.Drawing.Size)" /> value representing the <see cref="T:System.Windows.Forms.MenuStrip" /> horizontal and vertical dimensions, in pixels. The default is 200 x 21 pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.MenuStrip.GripStyle">
      <summary>Gets or sets the visibility of the grip used to reposition the control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripGripStyle" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripGripStyle.Hidden" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MenuStrip.MdiWindowListItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> that is used to display a list of Multiple-document interface (MDI) child forms.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> that represents the menu item displaying a list of MDI child forms that are open in the application.</returns>
    </member>
    <member name="P:System.Windows.Forms.MenuStrip.ShowItemToolTips">
      <summary>Gets or sets a value indicating whether ToolTips are shown for the <see cref="T:System.Windows.Forms.MenuStrip" />.</summary>
      <returns>
        <see langword="true" /> if ToolTips are shown for the <see cref="T:System.Windows.Forms.MenuStrip" />; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MenuStrip.Stretch">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.MenuStrip" /> stretches from end to end in its container.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.MenuStrip" /> stretches from end to end in its container; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.MergeAction">
      <summary>Specifies the kind of action to take if a match is found when combining menu items on a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.MergeAction.Append">
      <summary>Appends the item to the end of the collection, ignoring match results.</summary>
    </member>
    <member name="F:System.Windows.Forms.MergeAction.Insert">
      <summary>Inserts the item to the target's collection immediately preceding the matched item. A match of the end of the list results in the item being appended to the list. If there is no match or the match is at the beginning of the list, the item is inserted at the beginning of the collection.</summary>
    </member>
    <member name="F:System.Windows.Forms.MergeAction.MatchOnly">
      <summary>A match is required, but no action is taken. Use this for tree creation and successful access to nested layouts.</summary>
    </member>
    <member name="F:System.Windows.Forms.MergeAction.Remove">
      <summary>Removes the matched item.</summary>
    </member>
    <member name="F:System.Windows.Forms.MergeAction.Replace">
      <summary>Replaces the matched item with the source item. The original item's drop-down items do not become children of the incoming item.</summary>
    </member>
    <member name="T:System.Windows.Forms.MessageBox">
      <summary>Displays a message window, also known as a dialog box, which presents a message to the user. It is a modal window, blocking other actions in the application until the user closes it. A <see cref="T:System.Windows.Forms.MessageBox" /> can contain text, buttons, and symbols that inform and instruct the user.</summary>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String)">
      <summary>Displays a message box with specified text.</summary>
      <param name="text">The text to display in the message box.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String)">
      <summary>Displays a message box with specified text and caption.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons)">
      <summary>Displays a message box with specified text, caption, and buttons.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The <paramref name="buttons" /> parameter specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon)">
      <summary>Displays a message box with specified text, caption, buttons, and icon.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The <paramref name="buttons" /> parameter specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 The <paramref name="icon" /> parameter specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, and default button.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 <paramref name="defaultButton" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, and options.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.Boolean)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <param name="displayHelpButton">
        <see langword="true" /> to show the Help button; otherwise, <see langword="false" />. The default is <see langword="false" />.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <param name="helpFilePath">The path and name of the Help file to display when the user clicks the Help button.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.String)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file and Help keyword.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <param name="helpFilePath">The path and name of the Help file to display when the user clicks the Help button.</param>
      <param name="keyword">The Help keyword to display when the user clicks the Help button.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.Windows.Forms.HelpNavigator)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file and <see langword="HelpNavigator" />.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <param name="helpFilePath">The path and name of the Help file to display when the user clicks the Help button.</param>
      <param name="navigator">One of the <see cref="T:System.Windows.Forms.HelpNavigator" /> values.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.Windows.Forms.HelpNavigator,System.Object)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file, <see langword="HelpNavigator" />, and Help topic.</summary>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <param name="helpFilePath">The path and name of the Help file to display when the user clicks the Help button.</param>
      <param name="navigator">One of the <see cref="T:System.Windows.Forms.HelpNavigator" /> values.</param>
      <param name="param">The numeric ID of the Help topic to display when the user clicks the Help button.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String)">
      <summary>Displays a message box in front of the specified object and with the specified text.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String)">
      <summary>Displays a message box in front of the specified object and with the specified text and caption.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons)">
      <summary>Displays a message box in front of the specified object and with the specified text, caption, and buttons.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon)">
      <summary>Displays a message box in front of the specified object and with the specified text, caption, buttons, and icon.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton)">
      <summary>Displays a message box in front of the specified object and with the specified text, caption, buttons, icon, and default button.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 <paramref name="defaultButton" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions)">
      <summary>Displays a message box in front of the specified object and with the specified text, caption, buttons, icon, default button, and options.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values the specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 <paramref name="defaultButton" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="options" /> specified <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> or <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" /> and specified a value in the <paramref name="owner" /> parameter. These two options should be used only if you invoke the version of this method that does not take an <paramref name="owner" /> parameter.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <param name="helpFilePath">The path and name of the Help file to display when the user clicks the Help button.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.String)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file and Help keyword.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <param name="helpFilePath">The path and name of the Help file to display when the user clicks the Help button.</param>
      <param name="keyword">The Help keyword to display when the user clicks the Help button.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.Windows.Forms.HelpNavigator)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file and <see langword="HelpNavigator" />.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <param name="helpFilePath">The path and name of the Help file to display when the user clicks the Help button.</param>
      <param name="navigator">One of the <see cref="T:System.Windows.Forms.HelpNavigator" /> values.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window,System.String,System.String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon,System.Windows.Forms.MessageBoxDefaultButton,System.Windows.Forms.MessageBoxOptions,System.String,System.Windows.Forms.HelpNavigator,System.Object)">
      <summary>Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button, using the specified Help file, <see langword="HelpNavigator" />, and Help topic.</summary>
      <param name="owner">An implementation of <see cref="T:System.Windows.Forms.IWin32Window" /> that will own the modal dialog box.</param>
      <param name="text">The text to display in the message box.</param>
      <param name="caption">The text to display in the title bar of the message box.</param>
      <param name="buttons">One of the <see cref="T:System.Windows.Forms.MessageBoxButtons" /> values that specifies which buttons to display in the message box.</param>
      <param name="icon">One of the <see cref="T:System.Windows.Forms.MessageBoxIcon" /> values that specifies which icon to display in the message box.</param>
      <param name="defaultButton">One of the <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" /> values that specifies the default button for the message box.</param>
      <param name="options">One of the <see cref="T:System.Windows.Forms.MessageBoxOptions" /> values that specifies which display and association options will be used for the message box. You may pass in 0 if you wish to use the defaults.</param>
      <param name="helpFilePath">The path and name of the Help file to display when the user clicks the Help button.</param>
      <param name="navigator">One of the <see cref="T:System.Windows.Forms.HelpNavigator" /> values.</param>
      <param name="param">The numeric ID of the Help topic to display when the user clicks the Help button.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="buttons" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.  
  
 -or-  
  
 <paramref name="icon" /> is not a member of <see cref="T:System.Windows.Forms.MessageBoxIcon" />.  
  
 -or-  
  
 The <paramref name="defaultButton" /> specified is not a member of <see cref="T:System.Windows.Forms.MessageBoxDefaultButton" />.</exception>
      <exception cref="T:System.InvalidOperationException">An attempt was made to display the <see cref="T:System.Windows.Forms.MessageBox" /> in a process that is not running in User Interactive mode. This is specified by the <see cref="P:System.Windows.Forms.SystemInformation.UserInteractive" /> property.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="options" /> specified both <see cref="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly" /> and <see cref="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification" />.  
  
 -or-  
  
 <paramref name="buttons" /> specified an invalid combination of <see cref="T:System.Windows.Forms.MessageBoxButtons" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DialogResult" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.MessageBoxButtons">
      <summary>Specifies constants defining which buttons to display on a <see cref="T:System.Windows.Forms.MessageBox" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore">
      <summary>The message box contains Abort, Retry, and Ignore buttons.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxButtons.CancelTryContinue">
      <summary>Specifies that the message box contains Cancel, Try Again, and Continue buttons.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxButtons.OK">
      <summary>The message box contains an OK button.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxButtons.OKCancel">
      <summary>The message box contains OK and Cancel buttons.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxButtons.RetryCancel">
      <summary>The message box contains Retry and Cancel buttons.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxButtons.YesNo">
      <summary>The message box contains Yes and No buttons.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxButtons.YesNoCancel">
      <summary>The message box contains Yes, No, and Cancel buttons.</summary>
    </member>
    <member name="T:System.Windows.Forms.MessageBoxDefaultButton">
      <summary>Specifies constants defining the default button on a <see cref="T:System.Windows.Forms.MessageBox" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxDefaultButton.Button1">
      <summary>The first button on the message box is the default button.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxDefaultButton.Button2">
      <summary>The second button on the message box is the default button.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxDefaultButton.Button3">
      <summary>The third button on the message box is the default button.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxDefaultButton.Button4">
      <summary>Specifies that the Help button on the message box should be the default button.</summary>
    </member>
    <member name="T:System.Windows.Forms.MessageBoxIcon">
      <summary>Specifies constants defining which information to display.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxIcon.Asterisk">
      <summary>The message box contains a symbol consisting of a lowercase letter i in a circle.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxIcon.Error">
      <summary>The message box contains a symbol consisting of white X in a circle with a red background.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxIcon.Exclamation">
      <summary>The message box contains a symbol consisting of an exclamation point in a triangle with a yellow background.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxIcon.Hand">
      <summary>The message box contains a symbol consisting of a white X in a circle with a red background.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxIcon.Information">
      <summary>The message box contains a symbol consisting of a lowercase letter i in a circle.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxIcon.None">
      <summary>The message box contains no symbols.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxIcon.Question">
      <summary>The message box contains a symbol consisting of a question mark in a circle. The question mark message icon is no longer recommended because it does not clearly represent a specific type of message and because the phrasing of a message as a question could apply to any message type. In addition, users can confuse the question mark symbol with a help information symbol. Therefore, do not use this question mark symbol in your message boxes. The system continues to support its inclusion only for backward compatibility.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxIcon.Stop">
      <summary>The message box contains a symbol consisting of white X in a circle with a red background.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxIcon.Warning">
      <summary>The message box contains a symbol consisting of an exclamation point in a triangle with a yellow background.</summary>
    </member>
    <member name="T:System.Windows.Forms.MessageBoxOptions">
      <summary>Specifies options on a <see cref="T:System.Windows.Forms.MessageBox" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly">
      <summary>The message box is displayed on the active desktop. This constant is similar to ServiceNotification, except that the system displays the message box only on the default desktop of the interactive window station. The application that displayed the message box loses focus, and the message box is displayed without using visual styles. For more information, see Rendering Controls with Visual Styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxOptions.RightAlign">
      <summary>The message box text is right-aligned.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxOptions.RtlReading">
      <summary>Specifies that the message box text is displayed with right to left reading order.</summary>
    </member>
    <member name="F:System.Windows.Forms.MessageBoxOptions.ServiceNotification">
      <summary>The message box is displayed on the active desktop. The caller is a service notifying the user of an event. <see cref="Overload:System.Windows.Forms.MessageBox.Show" /> displays a message box on the current active desktop, even if there is no user logged on to the computer.</summary>
    </member>
    <member name="T:System.Windows.Forms.MethodInvoker">
      <summary>Represents a delegate that can execute any method in managed code that is declared void and takes no parameters.</summary>
    </member>
    <member name="T:System.Windows.Forms.MonthCalendar">
      <summary>Represents a Windows control that enables the user to select a date using a visual monthly calendar display.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.MonthCalendar.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.MonthCalendar.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.Click">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.DateChanged">
      <summary>Occurs when the date selected in the <see cref="T:System.Windows.Forms.MonthCalendar" /> changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.DateSelected">
      <summary>Occurs when the user makes an explicit date selection using the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.DoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.ImeModeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.MonthCalendar.ImeMode" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.MouseClick">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.MonthCalendar" /> control with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.MouseDoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.MonthCalendar" /> control with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.MonthCalendar.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.Paint">
      <summary>Occurs when the control is redrawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.RightToLeftLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.MonthCalendar.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.MonthCalendar.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.MonthCalendar.Text" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MonthCalendar" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.AddAnnuallyBoldedDate(System.DateTime)">
      <summary>Adds a day that is displayed in bold on an annual basis in the month calendar.</summary>
      <param name="date">The date to be displayed in bold.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.AddBoldedDate(System.DateTime)">
      <summary>Adds a day to be displayed in bold in the month calendar.</summary>
      <param name="date">The date to be displayed in bold.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.AddMonthlyBoldedDate(System.DateTime)">
      <summary>Adds a day that is displayed in bold on a monthly basis in the month calendar.</summary>
      <param name="date">The date to be displayed in bold.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the current <see cref="T:System.Windows.Forms.MonthCalendar" /> instance.</summary>
      <returns>A new accessibility object for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.CreateHandle">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.CreateHandle" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.GetDisplayRange(System.Boolean)">
      <summary>Retrieves date information that represents the low and high limits of the displayed dates of the control.</summary>
      <param name="visible">
        <see langword="true" /> to retrieve only the dates that are fully contained in displayed months; otherwise, <see langword="false" />.</param>
      <returns>The begin and end dates of the displayed calendar.</returns>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.HitTest(System.Drawing.Point)">
      <summary>Returns an object with information on which portion of a month calendar control is at a location specified by a <see cref="T:System.Drawing.Point" />.</summary>
      <param name="point">A <see cref="T:System.Drawing.Point" /> containing the <see cref="P:System.Drawing.Point.X" /> and <see cref="P:System.Drawing.Point.Y" /> coordinates of the point to be hit tested.</param>
      <returns>A <see cref="T:System.Windows.Forms.MonthCalendar.HitTestInfo" /> that contains information about the specified point on the <see cref="T:System.Windows.Forms.MonthCalendar" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.HitTest(System.Int32,System.Int32)">
      <summary>Returns a <see cref="T:System.Windows.Forms.MonthCalendar.HitTestInfo" /> with information on which portion of a month calendar control is at a specified x- and y-coordinate.</summary>
      <param name="x">The <see cref="P:System.Drawing.Point.X" /> coordinate of the point to be hit tested.</param>
      <param name="y">The <see cref="P:System.Drawing.Point.Y" /> coordinate of the point to be hit tested.</param>
      <returns>A <see cref="T:System.Windows.Forms.MonthCalendar.HitTestInfo" /> that contains information about the specified point on the <see cref="T:System.Windows.Forms.MonthCalendar" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the Keys values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnDateChanged(System.Windows.Forms.DateRangeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.MonthCalendar.DateChanged" /> event.</summary>
      <param name="drevent">A <see cref="T:System.Windows.Forms.DateRangeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnDateSelected(System.Windows.Forms.DateRangeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.MonthCalendar.DateSelected" /> event.</summary>
      <param name="drevent">A <see cref="T:System.Windows.Forms.DateRangeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ForeColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An event data instance.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnResize(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.OnRightToLeftLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.MonthCalendar.RightToLeftLayoutChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.RemoveAllAnnuallyBoldedDates">
      <summary>Removes all the annually bold dates.</summary>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.RemoveAllBoldedDates">
      <summary>Removes all the nonrecurring bold dates.</summary>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.RemoveAllMonthlyBoldedDates">
      <summary>Removes all the monthly bold dates.</summary>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.RemoveAnnuallyBoldedDate(System.DateTime)">
      <summary>Removes the specified date from the list of annually bold dates.</summary>
      <param name="date">The date to remove from the date list.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.RemoveBoldedDate(System.DateTime)">
      <summary>Removes the specified date from the list of nonrecurring bold dates.</summary>
      <param name="date">The date to remove from the date list.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.RemoveMonthlyBoldedDate(System.DateTime)">
      <summary>Removes the specified date from the list of monthly bolded dates.</summary>
      <param name="date">The date to remove from the date list.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.RescaleConstantsForDpi(System.Int32,System.Int32)">
      <summary>Provides constants for rescaling the control when a DPI change occurs.</summary>
      <param name="deviceDpiOld">The DPI value prior to the change.</param>
      <param name="deviceDpiNew">The DPI value after the change.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)" /> method.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Right" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.SetCalendarDimensions(System.Int32,System.Int32)">
      <summary>Sets the number of columns and rows of months to display.</summary>
      <param name="x">The number of columns.</param>
      <param name="y">The number of rows.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="x" /> or <paramref name="y" /> is less than 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.SetDate(System.DateTime)">
      <summary>Sets a date as the currently selected date.</summary>
      <param name="date">The date to be selected.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than the minimum allowable date.  
  
 -or-  
  
 The value is greater than the maximum allowable date.  
  
 This exception will only be thrown if <see cref="P:System.Windows.Forms.MonthCalendar.MinDate" /> or <see cref="P:System.Windows.Forms.MonthCalendar.MaxDate" /> have been set explicitly.</exception>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.SetSelectionRange(System.DateTime,System.DateTime)">
      <summary>Sets the selected dates in a month calendar control to the specified date range.</summary>
      <param name="date1">The beginning date of the selection range.</param>
      <param name="date2">The end date of the selection range.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="date1" /> is less than the minimum date allowable for a month calendar control.  
  
 -or-  
  
 <paramref name="date1" /> is greater than the maximum allowable date for a month calendar control.  
  
 -or-  
  
 <paramref name="date2" /> is less than the minimum date allowable for a month calendar control.  
  
 -or-  
  
 <paramref name="date2" /> is greater than the maximum allowable date for a month calendar control.  
  
 This exception will only be thrown if <see cref="P:System.Windows.Forms.MonthCalendar.MinDate" /> or <see cref="P:System.Windows.Forms.MonthCalendar.MaxDate" /> have been set explicitly.</exception>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.MonthCalendar" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.UpdateBoldedDates">
      <summary>Repaints the bold dates to reflect the dates set in the lists of bold dates.</summary>
    </member>
    <member name="M:System.Windows.Forms.MonthCalendar.WndProc(System.Windows.Forms.Message@)">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" /> method.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.AnnuallyBoldedDates">
      <summary>Gets or sets the array of <see cref="T:System.DateTime" /> objects that determines which annual days are displayed in bold.</summary>
      <returns>An array of <see cref="T:System.DateTime" /> objects.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.BackgroundImage">
      <summary>Gets or sets the background image for the <see cref="T:System.Windows.Forms.MonthCalendar" />.</summary>
      <returns>The <see cref="T:System.Drawing.Image" /> that is the background image for the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.BackgroundImageLayout">
      <summary>Gets or sets a value indicating the layout for the <see cref="P:System.Windows.Forms.MonthCalendar.BackgroundImage" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.BoldedDates">
      <summary>Gets or sets the array of <see cref="T:System.DateTime" /> objects that determines which nonrecurring dates are displayed in bold.</summary>
      <returns>The array of bold dates.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.CalendarDimensions">
      <summary>Gets or sets the number of columns and rows of months displayed.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> with the number of columns and rows to use to display the calendar.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.CreateParams">
      <summary>Gets a <see cref="T:System.Windows.Forms.CreateParams" /> for creating a <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> with the information for creating a <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.DefaultImeMode">
      <summary>Gets a value indicating the input method editor for the <see cref="T:System.Windows.Forms.MonthCalendar" />.</summary>
      <returns>As implemented for this object, always <see cref="F:System.Windows.Forms.ImeMode.Disable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.DefaultMargin">
      <summary>Gets the default margin settings for the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> structure with a padding size of 9 pixels, for all of its edges.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.DefaultSize">
      <summary>Gets the default size of the calendar.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> specifying the height and width, in pixels, of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.DoubleBuffered">
      <summary>Gets or sets a value indicating whether the control should redraw its surface using a secondary buffer.</summary>
      <returns>
        <see langword="true" /> if the control should use a secondary buffer to redraw; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.FirstDayOfWeek">
      <summary>Gets or sets the first day of the week as displayed in the month calendar.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.Day" /> enumeration members.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.Day" /> values. The default is <see cref="F:System.Windows.Forms.Day.Default" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.ForeColor">
      <summary>Gets or sets the foreground color of the control.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.ImeMode">
      <summary>Gets or sets the Input Method Editor (IME) mode supported by this control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.MaxDate">
      <summary>Gets or sets the maximum allowable date.</summary>
      <exception cref="T:System.ArgumentException">The value is less than the <see cref="P:System.Windows.Forms.MonthCalendar.MinDate" />.</exception>
      <returns>A <see cref="T:System.DateTime" /> representing the maximum allowable date. The default is 12/31/9998.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.MaxSelectionCount">
      <summary>Gets or sets the maximum number of days that can be selected in a month calendar control.</summary>
      <exception cref="T:System.ArgumentException">The value is less than 1.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.MonthCalendar.MaxSelectionCount" /> cannot be set.</exception>
      <returns>The maximum number of days that you can select. The default is 7.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.MinDate">
      <summary>Gets or sets the minimum allowable date.</summary>
      <exception cref="T:System.ArgumentException">The date set is greater than the <see cref="P:System.Windows.Forms.MonthCalendar.MaxDate" />.  
  
 -or-  
  
 The date set is earlier than 01/01/1753.</exception>
      <returns>A <see cref="T:System.DateTime" /> representing the minimum allowable date. The default is 01/01/1753.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.MonthlyBoldedDates">
      <summary>Gets or sets the array of <see cref="T:System.DateTime" /> objects that determine which monthly days to bold.</summary>
      <returns>An array of <see cref="T:System.DateTime" /> objects.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.Padding">
      <summary>Gets or sets the space between the edges of a <see cref="T:System.Windows.Forms.MonthCalendar" /> control and its contents.</summary>
      <returns>
        <see cref="F:System.Windows.Forms.Padding.Empty" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.RightToLeftLayout">
      <summary>Gets or sets a value indicating whether the control is laid out from right to left.</summary>
      <returns>
        <see langword="true" /> if the control is laid out from right to left; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.ScrollChange">
      <summary>Gets or sets the scroll rate for a month calendar control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 0.  
  
 -or-  
  
 The value is greater than 20,000.</exception>
      <returns>A positive number representing the current scroll rate in number of months moved. The default is the number of months currently displayed. The maximum is 20,000.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.SelectionEnd">
      <summary>Gets or sets the end date of the selected range of dates.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The date value is less than the <see cref="P:System.Windows.Forms.MonthCalendar.MinDate" /> value.  
  
 -or-  
  
 The date value is greater than the <see cref="P:System.Windows.Forms.MonthCalendar.MaxDate" /> value.</exception>
      <returns>A <see cref="T:System.DateTime" /> indicating the last date in the selection range.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.SelectionRange">
      <summary>Gets or sets the selected range of dates for a month calendar control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.Windows.Forms.SelectionRange.Start" /> value of the assigned <see cref="T:System.Windows.Forms.SelectionRange" /> is less than the minimum date allowable for a month calendar control.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.SelectionRange.Start" /> value of the assigned <see cref="T:System.Windows.Forms.SelectionRange" /> is greater than the maximum allowable date for a month calendar control.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.SelectionRange.End" /> value of the assigned <see cref="T:System.Windows.Forms.SelectionRange" /> is less than the minimum date allowable for a month calendar control.  
  
 -or-  
  
 The <see cref="P:System.Windows.Forms.SelectionRange.End" /> value of the assigned <see cref="T:System.Windows.Forms.SelectionRange" /> is greater than the maximum allowable date for a month calendar control.</exception>
      <returns>A <see cref="T:System.Windows.Forms.SelectionRange" /> with the start and end dates of the selected range.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.SelectionStart">
      <summary>Gets or sets the start date of the selected range of dates.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The date value is less than <see cref="P:System.Windows.Forms.MonthCalendar.MinDate" />.  
  
 -or-  
  
 The date value is greater than <see cref="P:System.Windows.Forms.MonthCalendar.MaxDate" />.</exception>
      <returns>A <see cref="T:System.DateTime" /> indicating the first date in the selection range.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.ShowToday">
      <summary>Gets or sets a value indicating whether the date represented by the <see cref="P:System.Windows.Forms.MonthCalendar.TodayDate" /> property is displayed at the bottom of the control.</summary>
      <returns>
        <see langword="true" /> if today's date is displayed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.ShowTodayCircle">
      <summary>Gets or sets a value indicating whether today's date is identified with a circle or a square.</summary>
      <returns>
        <see langword="true" /> if today's date is identified with a circle or a square; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.ShowWeekNumbers">
      <summary>Gets or sets a value indicating whether the month calendar control displays week numbers (1-52) to the left of each row of days.</summary>
      <returns>
        <see langword="true" /> if the week numbers are displayed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.SingleMonthSize">
      <summary>Gets the minimum size to display one month of the calendar.</summary>
      <exception cref="T:System.InvalidOperationException">The dimensions cannot be retrieved.</exception>
      <returns>The size, in pixels, necessary to fully display one month in the calendar.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.Size">
      <summary>Gets or sets the size of the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
      <returns>The <see cref="T:System.Drawing.Size" /> of the <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.Text">
      <summary>Gets or sets the text to display on the <see cref="T:System.Windows.Forms.MonthCalendar" />.</summary>
      <returns>
        <see langword="Null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.TitleBackColor">
      <summary>Gets or sets a value indicating the background color of the title area of the calendar.</summary>
      <exception cref="T:System.ArgumentException">The value is not a valid <see cref="T:System.Drawing.Color" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" />. The default is the system color for active captions.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.TitleForeColor">
      <summary>Gets or sets a value indicating the foreground color of the title area of the calendar.</summary>
      <exception cref="T:System.ArgumentException">The value is not a valid <see cref="T:System.Drawing.Color" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" />. The default is the system color for active caption text.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.TodayDate">
      <summary>Gets or sets the value that is used by <see cref="T:System.Windows.Forms.MonthCalendar" /> as today's date.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than the minimum allowable date.  
  
 -or-  
  
 The value is greater than the maximum allowable date.</exception>
      <returns>A <see cref="T:System.DateTime" /> representing today's date. The default value is the current system date.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.TodayDateSet">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.MonthCalendar.TodayDate" /> property has been explicitly set.</summary>
      <returns>
        <see langword="true" /> if the value for the <see cref="P:System.Windows.Forms.MonthCalendar.TodayDate" /> property has been explicitly set; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.TrailingForeColor">
      <summary>Gets or sets a value indicating the color of days in months that are not fully displayed in the control.</summary>
      <exception cref="T:System.ArgumentException">The value is not a valid <see cref="T:System.Drawing.Color" />.</exception>
      <returns>A <see cref="T:System.Drawing.Color" />. The default is <see cref="P:System.Drawing.Color.Gray" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.MonthCalendar.HitArea">
      <summary>Defines constants that represent areas in a <see cref="T:System.Windows.Forms.MonthCalendar" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.CalendarBackground">
      <summary>The specified point is part of the calendar's background.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.Date">
      <summary>The specified point is on a date within the calendar. The <see cref="P:System.Windows.Forms.MonthCalendar.HitTestInfo.Time" /> property of <see cref="T:System.Windows.Forms.MonthCalendar.HitTestInfo" /> is set to the date at the specified point.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.DayOfWeek">
      <summary>The specified point is over a day abbreviation ("Fri", for example). The <see cref="P:System.Windows.Forms.MonthCalendar.HitTestInfo.Time" /> property of <see cref="T:System.Windows.Forms.MonthCalendar.HitTestInfo" /> is set to January 1, 0001.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.NextMonthButton">
      <summary>The specified point is over the button at the upper-right corner of the control. If the user clicks here, the month calendar scrolls its display to the next month or set of months.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.NextMonthDate">
      <summary>The specified point is over a date from the next month (partially displayed at the top of the currently displayed month). If the user clicks here, the month calendar scrolls its display to the next month or set of months.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.Nowhere">
      <summary>The specified point is either not on the month calendar control, or it is in an inactive portion of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.PrevMonthButton">
      <summary>The specified point is over the button at the upper-left corner of the control. If the user clicks here, the month calendar scrolls its display to the previous month or set of months.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.PrevMonthDate">
      <summary>The specified point is over a date from the previous month (partially displayed at the top of the currently displayed month). If the user clicks here, the month calendar scrolls its display to the previous month or set of months.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.TitleBackground">
      <summary>The specified point is over the background of a month's title.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.TitleMonth">
      <summary>The specified point is in a month's title bar, over a month name.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.TitleYear">
      <summary>The specified point is in a month's title bar, over the year value.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.TodayLink">
      <summary>The specified point is on the today link at the bottom of the month calendar control.</summary>
    </member>
    <member name="F:System.Windows.Forms.MonthCalendar.HitArea.WeekNumbers">
      <summary>The specified point is over a week number. This occurs only if the <see cref="P:System.Windows.Forms.MonthCalendar.ShowWeekNumbers" /> property of <see cref="T:System.Windows.Forms.MonthCalendar" /> is enabled. The <see cref="P:System.Windows.Forms.MonthCalendar.HitTestInfo.Time" /> property of <see cref="T:System.Windows.Forms.MonthCalendar.HitTestInfo" /> is set to the corresponding date in the leftmost column.</summary>
    </member>
    <member name="T:System.Windows.Forms.MonthCalendar.HitTestInfo">
      <summary>Contains information about an area of a <see cref="T:System.Windows.Forms.MonthCalendar" /> control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.HitTestInfo.HitArea">
      <summary>Gets the <see cref="T:System.Windows.Forms.MonthCalendar.HitArea" /> that represents the area of the calendar evaluated by the hit-test operation.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.MonthCalendar.HitArea" /> values. The default is <see cref="F:System.Windows.Forms.MonthCalendar.HitArea.Nowhere" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.HitTestInfo.Point">
      <summary>Gets the point that was hit-tested.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> containing the <see cref="P:System.Drawing.Point.X" /> and <see cref="P:System.Drawing.Point.Y" /> values tested.</returns>
    </member>
    <member name="P:System.Windows.Forms.MonthCalendar.HitTestInfo.Time">
      <summary>Gets the time information specific to the location that was hit-tested.</summary>
      <returns>The time information specific to the location that was hit-tested.</returns>
    </member>
    <member name="T:System.Windows.Forms.MouseButtons">
      <summary>Specifies constants that define which mouse button was pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.MouseButtons.Left">
      <summary>The left mouse button was pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.MouseButtons.Middle">
      <summary>The middle mouse button was pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.MouseButtons.None">
      <summary>No mouse button was pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.MouseButtons.Right">
      <summary>The right mouse button was pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.MouseButtons.XButton1">
      <summary>The first XButton (XBUTTON1) on Microsoft IntelliMouse Explorer was pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.MouseButtons.XButton2">
      <summary>The second XButton (XBUTTON2) on Microsoft IntelliMouse Explorer was pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.MouseEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.MouseUp" />, <see cref="E:System.Windows.Forms.Control.MouseDown" />, and <see cref="E:System.Windows.Forms.Control.MouseMove" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.MouseEventArgs.#ctor(System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.MouseEventArgs" /> class.</summary>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed.</param>
      <param name="clicks">The number of times a mouse button was pressed.</param>
      <param name="x">The x-coordinate of a mouse click, in pixels.</param>
      <param name="y">The y-coordinate of a mouse click, in pixels.</param>
      <param name="delta">A signed count of the number of detents the wheel has rotated.</param>
    </member>
    <member name="P:System.Windows.Forms.MouseEventArgs.Button">
      <summary>Gets which mouse button was pressed.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.MouseEventArgs.Clicks">
      <summary>Gets the number of times the mouse button was pressed and released.</summary>
      <returns>An <see cref="T:System.Int32" /> that contains the number of times the mouse button was pressed and released.</returns>
    </member>
    <member name="P:System.Windows.Forms.MouseEventArgs.Delta">
      <summary>Gets a signed count of the number of detents the mouse wheel has rotated, multiplied by the WHEEL_DELTA constant. A detent is one notch of the mouse wheel.</summary>
      <returns>A signed count of the number of detents the mouse wheel has rotated, multiplied by the WHEEL_DELTA constant.</returns>
    </member>
    <member name="P:System.Windows.Forms.MouseEventArgs.Location">
      <summary>Gets the location of the mouse during the generating mouse event.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> that contains the x- and y- mouse coordinates, in pixels, relative to the upper-left corner of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.MouseEventArgs.X">
      <summary>Gets the x-coordinate of the mouse during the generating mouse event.</summary>
      <returns>The x-coordinate of the mouse, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.MouseEventArgs.Y">
      <summary>Gets the y-coordinate of the mouse during the generating mouse event.</summary>
      <returns>The y-coordinate of the mouse, in pixels.</returns>
    </member>
    <member name="T:System.Windows.Forms.MouseEventHandler">
      <summary>Represents the method that will handle the <see langword="MouseDown" />, <see langword="MouseUp" />, or <see langword="MouseMove" /> event of a form, control, or other component.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.NativeWindow">
      <summary>Provides a low-level encapsulation of a window handle and a window procedure.</summary>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.#ctor">
      <summary>Initializes an instance of the <see cref="T:System.Windows.Forms.NativeWindow" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.AssignHandle(System.IntPtr)">
      <summary>Assigns a handle to this window.</summary>
      <param name="handle">The handle to assign to this window.</param>
      <exception cref="T:System.Exception">This window already has a handle.</exception>
      <exception cref="T:System.ComponentModel.Win32Exception">The windows procedure for the associated native window could not be retrieved.</exception>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.CreateHandle(System.Windows.Forms.CreateParams)">
      <summary>Creates a window and its handle with the specified creation parameters.</summary>
      <param name="cp">A <see cref="T:System.Windows.Forms.CreateParams" /> that specifies the creation parameters for this window.</param>
      <exception cref="T:System.OutOfMemoryException">The operating system ran out of resources when trying to create the native window.</exception>
      <exception cref="T:System.ComponentModel.Win32Exception">The native Windows API could not create the specified window.</exception>
      <exception cref="T:System.InvalidOperationException">The handle of the current native window is already assigned; in explanation, the <see cref="P:System.Windows.Forms.NativeWindow.Handle" /> property is not equal to <see cref="F:System.IntPtr.Zero" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.DefWndProc(System.Windows.Forms.Message@)">
      <summary>Invokes the default window procedure associated with this window.</summary>
      <param name="m">The message that is currently being processed.</param>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.DestroyHandle">
      <summary>Destroys the window and its handle.</summary>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.Finalize">
      <summary>Releases the resources associated with this window.</summary>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.FromHandle(System.IntPtr)">
      <summary>Retrieves the window associated with the specified handle.</summary>
      <param name="handle">A handle to a window.</param>
      <returns>The <see cref="T:System.Windows.Forms.NativeWindow" /> associated with the specified handle. This method returns <see langword="null" /> when the handle does not have an associated window.</returns>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.OnHandleChange">
      <summary>Specifies a notification method that is called when the handle for a window is changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.OnThreadException(System.Exception)">
      <summary>When overridden in a derived class, manages an unhandled thread exception.</summary>
      <param name="e">An <see cref="T:System.Exception" /> that specifies the unhandled thread exception.</param>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.ReleaseHandle">
      <summary>Releases the handle associated with this window.</summary>
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.WmDpiChangedAfterParent(System.Windows.Forms.Message@)">
      <param name="m" />
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.WmDpiChangedBeforeParent(System.Windows.Forms.Message@)">
      <param name="m" />
    </member>
    <member name="M:System.Windows.Forms.NativeWindow.WndProc(System.Windows.Forms.Message@)">
      <summary>Invokes the default window procedure associated with this window.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" /> that is associated with the current Windows message.</param>
    </member>
    <member name="P:System.Windows.Forms.NativeWindow.Handle">
      <summary>Gets the handle for this window.</summary>
      <returns>If successful, an <see cref="T:System.IntPtr" /> representing the handle to the associated native Win32 window; otherwise, 0 if no handle is associated with the window.</returns>
    </member>
    <member name="T:System.Windows.Forms.NavigateEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.DataGrid.Navigate" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.NavigateEventArgs.#ctor(System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.NavigateEventArgs" /> class.</summary>
      <param name="isForward">
        <see langword="true" /> to navigate in a forward direction; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.NavigateEventArgs.Forward">
      <summary>Gets a value indicating whether to navigate in a forward direction.</summary>
      <returns>
        <see langword="true" /> if the navigation is in a forward direction; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.NavigateEventHandler">
      <summary>Represents the method that will handle the <see cref="T:System.Windows.Forms.NavigateEventArgs" /> event of a <see cref="T:System.Windows.Forms.DataGrid" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="ne">A <see cref="T:System.Windows.Forms.NavigateEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.NodeLabelEditEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TreeView.BeforeLabelEdit" /> and <see cref="E:System.Windows.Forms.TreeView.AfterLabelEdit" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.NodeLabelEditEventArgs.#ctor(System.Windows.Forms.TreeNode)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.NodeLabelEditEventArgs" /> class for the specified <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
      <param name="node">The tree node containing the text to edit.</param>
    </member>
    <member name="M:System.Windows.Forms.NodeLabelEditEventArgs.#ctor(System.Windows.Forms.TreeNode,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.NodeLabelEditEventArgs" /> class for the specified <see cref="T:System.Windows.Forms.TreeNode" /> and the specified text with which to update the tree node label.</summary>
      <param name="node">The tree node containing the text to edit.</param>
      <param name="label">The new text to associate with the tree node.</param>
    </member>
    <member name="P:System.Windows.Forms.NodeLabelEditEventArgs.CancelEdit">
      <summary>Gets or sets a value indicating whether the edit has been canceled.</summary>
      <returns>
        <see langword="true" /> if the edit has been canceled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.NodeLabelEditEventArgs.Label">
      <summary>Gets the new text to associate with the tree node.</summary>
      <returns>The string value that represents the new <see cref="T:System.Windows.Forms.TreeNode" /> label or <see langword="null" /> if the user cancels the edit.</returns>
    </member>
    <member name="P:System.Windows.Forms.NodeLabelEditEventArgs.Node">
      <summary>Gets the tree node containing the text to edit.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the tree node containing the text to edit.</returns>
    </member>
    <member name="T:System.Windows.Forms.NodeLabelEditEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.TreeView.BeforeLabelEdit" /> and <see cref="E:System.Windows.Forms.TreeView.AfterLabelEdit" /> events of a <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.NodeLabelEditEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.NotifyIcon">
      <summary>Specifies a component that creates an icon in the notification area. This class cannot be inherited.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.BalloonTipClicked">
      <summary>Occurs when the balloon tip is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.BalloonTipClosed">
      <summary>Occurs when the balloon tip is closed by the user.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.BalloonTipShown">
      <summary>Occurs when the balloon tip is displayed on the screen.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.Click">
      <summary>Occurs when the user clicks the icon in the notification area.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.DoubleClick">
      <summary>Occurs when the user double-clicks the icon in the notification area of the taskbar.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.MouseClick">
      <summary>Occurs when the user clicks a <see cref="T:System.Windows.Forms.NotifyIcon" /> with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.MouseDoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.NotifyIcon" /> with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.MouseDown">
      <summary>Occurs when the user presses the mouse button while the pointer is over the icon in the notification area of the taskbar.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.MouseMove">
      <summary>Occurs when the user moves the mouse while the pointer is over the icon in the notification area of the taskbar.</summary>
    </member>
    <member name="E:System.Windows.Forms.NotifyIcon.MouseUp">
      <summary>Occurs when the user releases the mouse button while the pointer is over the icon in the notification area of the taskbar.</summary>
    </member>
    <member name="M:System.Windows.Forms.NotifyIcon.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.NotifyIcon" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.NotifyIcon.#ctor(System.ComponentModel.IContainer)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.NotifyIcon" /> class with the specified container.</summary>
      <param name="container">An <see cref="T:System.ComponentModel.IContainer" /> that represents the container for the <see cref="T:System.Windows.Forms.NotifyIcon" /> control.</param>
    </member>
    <member name="M:System.Windows.Forms.NotifyIcon.ShowBalloonTip(System.Int32)">
      <summary>Displays a balloon tip in the taskbar for the specified time period.</summary>
      <param name="timeout">The time period, in milliseconds, the balloon tip should display. This parameter is deprecated. Notification display times are now based on system accessibility settings.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="timeout" /> is less than 0.</exception>
    </member>
    <member name="M:System.Windows.Forms.NotifyIcon.ShowBalloonTip(System.Int32,System.String,System.String,System.Windows.Forms.ToolTipIcon)">
      <summary>Displays a balloon tip with the specified title, text, and icon in the taskbar for the specified time period.</summary>
      <param name="timeout">The time period, in milliseconds, the balloon tip should display. This parameter is deprecated. Notification display times are now based on system accessibility settings.</param>
      <param name="tipTitle">The title to display on the balloon tip.</param>
      <param name="tipText">The text to display on the balloon tip.</param>
      <param name="tipIcon">One of the <see cref="T:System.Windows.Forms.ToolTipIcon" /> values.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="timeout" /> is less than 0.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="tipText" /> is <see langword="null" /> or an empty string.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="tipIcon" /> is not a member of <see cref="T:System.Windows.Forms.ToolTipIcon" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.NotifyIcon.BalloonTipIcon">
      <summary>Gets or sets the icon to display on the balloon tip associated with the <see cref="T:System.Windows.Forms.NotifyIcon" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not a <see cref="T:System.Windows.Forms.ToolTipIcon" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.ToolTipIcon" /> to display on the balloon tip associated with the <see cref="T:System.Windows.Forms.NotifyIcon" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.NotifyIcon.BalloonTipText">
      <summary>Gets or sets the text to display on the balloon tip associated with the <see cref="T:System.Windows.Forms.NotifyIcon" />.</summary>
      <returns>The text to display on the balloon tip associated with the <see cref="T:System.Windows.Forms.NotifyIcon" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.NotifyIcon.BalloonTipTitle">
      <summary>Gets or sets the title of the balloon tip displayed on the <see cref="T:System.Windows.Forms.NotifyIcon" />.</summary>
      <returns>The text to display as the title of the balloon tip.</returns>
    </member>
    <member name="P:System.Windows.Forms.NotifyIcon.ContextMenuStrip">
      <summary>Gets or sets the shortcut menu associated with the <see cref="T:System.Windows.Forms.NotifyIcon" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with the <see cref="T:System.Windows.Forms.NotifyIcon" /></returns>
    </member>
    <member name="P:System.Windows.Forms.NotifyIcon.Icon">
      <summary>Gets or sets the current icon.</summary>
      <returns>The <see cref="T:System.Drawing.Icon" /> displayed by the <see cref="T:System.Windows.Forms.NotifyIcon" /> component. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.NotifyIcon.Tag">
      <summary>Gets or sets an object that contains data about the <see cref="T:System.Windows.Forms.NotifyIcon" />.</summary>
      <returns>The <see cref="T:System.Object" /> that contains data about the <see cref="T:System.Windows.Forms.NotifyIcon" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.NotifyIcon.Text">
      <summary>Gets or sets the ToolTip text displayed when the mouse pointer rests on a notification area icon.</summary>
      <exception cref="T:System.ArgumentException">The ToolTip text is more than a certain number of characters long. The following table shows the maximum text length for different .NET versions.

<list type="table"><listheader><term> .NET version</term><description> Maximum number of tooltip text characters</description></listheader><item><term> .NET 6 and later versions</term><description> 127</description></item><item><term> .NET 5 and .NET Core 3.0-3.1</term><description> 63</description></item><item><term> .NET Framework</term><description> 63</description></item></list></exception>
      <returns>The ToolTip text displayed when the mouse pointer rests on a notification area icon.</returns>
    </member>
    <member name="P:System.Windows.Forms.NotifyIcon.Visible">
      <summary>Gets or sets a value indicating whether the icon is visible in the notification area of the taskbar.</summary>
      <returns>
        <see langword="true" /> if the icon is visible in the notification area; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.NumericUpDown">
      <summary>Represents a Windows spin box (also known as an up-down control) that displays numeric values.</summary>
    </member>
    <member name="E:System.Windows.Forms.NumericUpDown.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.NumericUpDown.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.NumericUpDown.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.NumericUpDown.Text" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.NumericUpDown.ValueChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.NumericUpDown.Value" /> property has been changed in some way.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.NumericUpDown" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.BeginInit">
      <summary>Begins the initialization of a <see cref="T:System.Windows.Forms.NumericUpDown" /> control that is used on a form or used by another component. The initialization occurs at run time.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.DownButton">
      <summary>Decrements the value of the spin box (also known as an up-down control).</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.EndInit">
      <summary>Ends the initialization of a <see cref="T:System.Windows.Forms.NumericUpDown" /> control that is used on a form or used by another component. The initialization occurs at run time.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.OnTextBoxKeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.OnValueChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.NumericUpDown.ValueChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.ParseEditText">
      <summary>Converts the text displayed in the spin box (also known as an up-down control) to a numeric value and evaluates it.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.NumericUpDown" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.NumericUpDown" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.UpButton">
      <summary>Increments the value of the spin box (also known as an up-down control).</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.UpdateEditText">
      <summary>Displays the current value of the spin box (also known as an up-down control) in the appropriate format.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDown.ValidateEditText">
      <summary>Validates and updates the text displayed in the spin box (also known as an up-down control).</summary>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.Accelerations">
      <summary>Gets a collection of sorted acceleration objects for the <see cref="T:System.Windows.Forms.NumericUpDown" /> control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" /> containing the sorted acceleration objects for the <see cref="T:System.Windows.Forms.NumericUpDown" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.DecimalPlaces">
      <summary>Gets or sets the number of decimal places to display in the spin box (also known as an up-down control). This property doesn't affect the <see cref="P:System.Windows.Forms.NumericUpDown.Value" /> property.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value assigned is less than 0.  
  
 -or-  
  
 The value assigned is greater than 99.</exception>
      <returns>The number of decimal places to display in the spin box. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.Hexadecimal">
      <summary>Gets or sets a value indicating whether the spin box (also known as an up-down control) should display the value it contains in hexadecimal format.</summary>
      <returns>
        <see langword="true" /> if the spin box should display its value in hexadecimal format; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.Increment">
      <summary>Gets or sets the value to increment or decrement the spin box (also known as an up-down control) when the up or down buttons are clicked.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is not greater than or equal to zero.</exception>
      <returns>The value to increment or decrement the <see cref="P:System.Windows.Forms.NumericUpDown.Value" /> property when the up or down buttons are clicked on the spin box. The default value is 1.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.Maximum">
      <summary>Gets or sets the maximum value for the spin box (also known as an up-down control).</summary>
      <returns>The maximum value for the spin box. The default value is 100.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.Minimum">
      <summary>Gets or sets the minimum allowed value for the spin box (also known as an up-down control).</summary>
      <returns>The minimum allowed value for the spin box. The default value is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.Padding">
      <summary>Gets or sets the space between the edges of a <see cref="T:System.Windows.Forms.NumericUpDown" /> control and its contents.</summary>
      <returns>
        <see cref="F:System.Windows.Forms.Padding.Empty" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.Text">
      <summary>Gets or sets the text to be displayed in the <see cref="T:System.Windows.Forms.NumericUpDown" /> control.</summary>
      <returns>
        <see langword="Null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.ThousandsSeparator">
      <summary>Gets or sets a value indicating whether a thousands separator is displayed in the spin box (also known as an up-down control) when appropriate.</summary>
      <returns>
        <see langword="true" /> if a thousands separator is displayed in the spin box when appropriate; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDown.Value">
      <summary>Gets or sets the value assigned to the spin box (also known as an up-down control).</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than the <see cref="P:System.Windows.Forms.NumericUpDown.Minimum" /> property value.  
  
 -or-  
  
 The assigned value is greater than the <see cref="P:System.Windows.Forms.NumericUpDown.Maximum" /> property value.</exception>
      <returns>The numeric value of the <see cref="T:System.Windows.Forms.NumericUpDown" /> control.</returns>
    </member>
    <member name="T:System.Windows.Forms.NumericUpDownAcceleration">
      <summary>Provides information specifying how acceleration should be performed on a spin box (also known as an up-down control) when the up or down button is pressed for specified time period.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAcceleration.#ctor(System.Int32,System.Decimal)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> class.</summary>
      <param name="seconds">The number of seconds the up or down button is pressed before the acceleration starts.</param>
      <param name="increment">The quantity the value displayed in the control should be incremented or decremented during acceleration.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="seconds" /> or <paramref name="increment" /> is less than 0.</exception>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDownAcceleration.Increment">
      <summary>Gets or sets the quantity to increment or decrement the displayed value during acceleration.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The set value is less than 0.</exception>
      <returns>The quantity to increment or decrement the displayed value during acceleration.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDownAcceleration.Seconds">
      <summary>Gets or sets the number of seconds the up or down button must be pressed before the acceleration starts.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The set value is less than 0.</exception>
      <returns>Gets or sets the number of seconds the up or down button must be pressed before the acceleration starts.</returns>
    </member>
    <member name="T:System.Windows.Forms.NumericUpDownAccelerationCollection">
      <summary>Represents a sorted collection of <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> objects in the <see cref="T:System.Windows.Forms.NumericUpDown" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAccelerationCollection.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAccelerationCollection.Add(System.Windows.Forms.NumericUpDownAcceleration)">
      <summary>Adds a new <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> to the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />.</summary>
      <param name="acceleration">The <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> to add to the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="acceleration" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAccelerationCollection.AddRange(System.Windows.Forms.NumericUpDownAcceleration[])">
      <summary>Adds the elements of the specified array to the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />, keeping the collection sorted.</summary>
      <param name="accelerations">An array of type <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> containing the objects to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="accelerations" /> is <see langword="null" />, or one of the entries in the <paramref name="accelerations" /> array is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAccelerationCollection.Clear">
      <summary>Removes all elements from the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAccelerationCollection.Contains(System.Windows.Forms.NumericUpDownAcceleration)">
      <summary>Determines whether the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" /> contains a specific <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" />.</summary>
      <param name="acceleration">The <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> to locate in the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> is found in the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAccelerationCollection.CopyTo(System.Windows.Forms.NumericUpDownAcceleration[],System.Int32)">
      <summary>Copies the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" /> values to a one-dimensional <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> instance at the specified index.</summary>
      <param name="array">The one-dimensional <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> that is the destination of the values copied from <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />.</param>
      <param name="index">The index in <paramref name="array" /> where copying begins.</param>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAccelerationCollection.Remove(System.Windows.Forms.NumericUpDownAcceleration)">
      <summary>Removes the first occurrence of the specified <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> from the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />.</summary>
      <param name="acceleration">The <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> to remove from the collection.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> is removed from <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAccelerationCollection.System#Collections#Generic#IEnumerable{System#Windows#Forms#NumericUpDownAcceleration}#GetEnumerator">
      <summary>Gets the enumerator for the collection.</summary>
      <returns>Iterates over a collection to specify how acceleration should be performed on the control when the up or down button is pressed for specified time period.</returns>
    </member>
    <member name="M:System.Windows.Forms.NumericUpDownAccelerationCollection.System#Collections#IEnumerable#GetEnumerator">
      <summary>Gets the enumerator for the collection.</summary>
      <returns>An iteration over the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDownAccelerationCollection.Count">
      <summary>Gets the number of objects in the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" />.</summary>
      <returns>The number of objects in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDownAccelerationCollection.IsReadOnly">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.NumericUpDownAccelerationCollection" /> is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.NumericUpDownAccelerationCollection.Item(System.Int32)">
      <summary>Gets the <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> at the specified index number.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> to get from the collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.NumericUpDownAcceleration" /> with the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.OpacityConverter">
      <summary>Provides a type converter to convert opacity values to and from a string.</summary>
    </member>
    <member name="M:System.Windows.Forms.OpacityConverter.#ctor">
      <summary>Initializes an instance of the <see cref="T:System.Windows.Forms.OpacityConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.OpacityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Returns a value indicating whether this converter can convert an object of the specified source type to the native type of the converter that uses the specified context.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides information about the context of a type converter.</param>
      <param name="sourceType">The <see cref="T:System.Type" /> that represents the type you want to convert from.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.OpacityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the specified object to the converter's native type.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides information about the context of a type converter.</param>
      <param name="culture">The locale information for the conversion.</param>
      <param name="value">The object to convert.</param>
      <exception cref="T:System.Exception">The object was not a supported type for the conversion.</exception>
      <exception cref="T:System.FormatException">
        <paramref name="value" /> could not be properly converted to type <see cref="T:System.Double" />.  
  
 -or-  
  
 The resulting converted <paramref name="value" /> was less than zero percent or greater than one hundred percent.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.OpacityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts from the converter's native type to a value of the destination type.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides information about the context of a type converter.</param>
      <param name="culture">The locale information for the conversion.</param>
      <param name="value">The value to convert.</param>
      <param name="destinationType">The type to convert the object to.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destinationType" /> is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="value" /> cannot be converted to the <paramref name="destinationType" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.OpenFileDialog">
      <summary>Displays a standard dialog box that prompts the user to open a file. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.OpenFileDialog.#ctor">
      <summary>Initializes an instance of the <see cref="T:System.Windows.Forms.OpenFileDialog" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.OpenFileDialog.OpenFile">
      <summary>Opens the file selected by the user, with read-only permission. The file is specified by the <see cref="P:System.Windows.Forms.FileDialog.FileName" /> property.</summary>
      <exception cref="T:System.ArgumentNullException">The file name is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.IO.Stream" /> that specifies the read-only file selected by the user.</returns>
    </member>
    <member name="M:System.Windows.Forms.OpenFileDialog.Reset">
      <summary>Resets all properties to their default values.</summary>
    </member>
    <member name="P:System.Windows.Forms.OpenFileDialog.CheckFileExists">
      <summary>Gets or sets a value indicating whether the dialog box displays a warning if the user specifies a file name that does not exist.</summary>
      <returns>
        <see langword="true" /> if the dialog box displays a warning when the user specifies a file name that does not exist; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.OpenFileDialog.Multiselect">
      <summary>Gets or sets a value indicating whether the dialog box allows multiple files to be selected.</summary>
      <returns>
        <see langword="true" /> if the dialog box allows multiple files to be selected together or concurrently; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.OpenFileDialog.ReadOnlyChecked">
      <summary>Gets or sets a value indicating whether the read-only check box is selected.</summary>
      <returns>
        <see langword="true" /> if the read-only check box is selected; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.OpenFileDialog.SafeFileName">
      <summary>Gets the file name and extension for the file selected in the dialog box. The file name does not include the path.</summary>
      <returns>The file name and extension for the file selected in the dialog box. The file name does not include the path. The default value is an empty string.</returns>
    </member>
    <member name="P:System.Windows.Forms.OpenFileDialog.SafeFileNames">
      <summary>Gets an array of file names and extensions for all the selected files in the dialog box. The file names do not include the path.</summary>
      <returns>An array of file names and extensions for all the selected files in the dialog box. The file names do not include the path. If no files are selected, an empty array is returned.</returns>
    </member>
    <member name="P:System.Windows.Forms.OpenFileDialog.SelectReadOnly">
      <summary>Gets or sets a value indicating whether the dialog box allows selection of read-only files.</summary>
    </member>
    <member name="P:System.Windows.Forms.OpenFileDialog.ShowPreview">
      <summary>Gets or sets a value indicating whether the dialog box shows a preview for selected files.</summary>
    </member>
    <member name="P:System.Windows.Forms.OpenFileDialog.ShowReadOnly">
      <summary>Gets or sets a value indicating whether the dialog box contains a read-only check box.</summary>
      <returns>
        <see langword="true" /> if the dialog box contains a read-only check box; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.Orientation">
      <summary>Specifies the orientation of controls or elements of controls.</summary>
    </member>
    <member name="F:System.Windows.Forms.Orientation.Horizontal">
      <summary>The control or element is oriented horizontally.</summary>
    </member>
    <member name="F:System.Windows.Forms.Orientation.Vertical">
      <summary>The control or element is oriented vertically.</summary>
    </member>
    <member name="T:System.Windows.Forms.OSFeature">
      <summary>Provides operating-system specific feature queries.</summary>
    </member>
    <member name="F:System.Windows.Forms.OSFeature.LayeredWindows">
      <summary>Represents the layered, top-level windows feature. This field is read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.OSFeature.Themes">
      <summary>Represents the operating system themes feature. This field is read-only.</summary>
    </member>
    <member name="M:System.Windows.Forms.OSFeature.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.OSFeature" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.OSFeature.GetVersionPresent(System.Object)">
      <summary>Retrieves the version of the specified feature currently available on the system.</summary>
      <param name="feature">The feature whose version is requested, either <see cref="F:System.Windows.Forms.OSFeature.LayeredWindows" /> or <see cref="F:System.Windows.Forms.OSFeature.Themes" />.</param>
      <returns>A <see cref="T:System.Version" /> representing the version of the specified operating system feature currently available on the system; or <see langword="null" /> if the feature cannot be found.</returns>
    </member>
    <member name="M:System.Windows.Forms.OSFeature.IsPresent(System.Windows.Forms.SystemParameter)">
      <summary>Retrieves a value indicating whether the operating system supports the specified feature or metric.</summary>
      <param name="enumVal">A <see cref="T:System.Windows.Forms.SystemParameter" /> representing the feature to search for.</param>
      <returns>
        <see langword="true" /> if the feature is available on the system; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.OSFeature.Feature">
      <summary>Gets a <see langword="static" /> instance of the <see cref="T:System.Windows.Forms.OSFeature" /> class to use for feature queries. This property is read-only.</summary>
      <returns>An instance of the <see cref="T:System.Windows.Forms.OSFeature" /> class.</returns>
    </member>
    <member name="T:System.Windows.Forms.OwnerDrawPropertyBag">
      <summary>Contains values of properties that a component might need only occasionally.</summary>
    </member>
    <member name="M:System.Windows.Forms.OwnerDrawPropertyBag.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.OwnerDrawPropertyBag" /> class.</summary>
      <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> value.</param>
      <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> value.</param>
    </member>
    <member name="M:System.Windows.Forms.OwnerDrawPropertyBag.Copy(System.Windows.Forms.OwnerDrawPropertyBag)">
      <summary>Copies an <see cref="T:System.Windows.Forms.OwnerDrawPropertyBag" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.OwnerDrawPropertyBag" /> to be copied.</param>
      <returns>A new copy of the <see cref="T:System.Windows.Forms.OwnerDrawPropertyBag" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.OwnerDrawPropertyBag.IsEmpty">
      <summary>Returns whether the <see cref="T:System.Windows.Forms.OwnerDrawPropertyBag" /> contains all default values.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.OwnerDrawPropertyBag" /> contains all default values; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.OwnerDrawPropertyBag.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Populates the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
      <param name="si">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
      <param name="context">The destination for this serialization.</param>
    </member>
    <member name="P:System.Windows.Forms.OwnerDrawPropertyBag.BackColor">
      <summary>Gets or sets the background color for the component.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the component. The default is <see cref="F:System.Drawing.Color.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.OwnerDrawPropertyBag.Font">
      <summary>Gets or sets the font of the text displayed by the component.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the component. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.OwnerDrawPropertyBag.ForeColor">
      <summary>Gets or sets the foreground color of the component.</summary>
      <returns>The foreground color of the component. The default is <see cref="F:System.Drawing.Color.Empty" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.PageSetupDialog">
      <summary>Enables users to change page-related print settings, including margins and paper orientation. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.PageSetupDialog.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PageSetupDialog" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.PageSetupDialog.Reset">
      <summary>Resets all options to their default values.</summary>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.AllowMargins">
      <summary>Gets or sets a value indicating whether the margins section of the dialog box is enabled.</summary>
      <returns>
        <see langword="true" /> if the margins section of the dialog box is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.AllowOrientation">
      <summary>Gets or sets a value indicating whether the orientation section of the dialog box (landscape versus portrait) is enabled.</summary>
      <returns>
        <see langword="true" /> if the orientation section of the dialog box is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.AllowPaper">
      <summary>Gets or sets a value indicating whether the paper section of the dialog box (paper size and paper source) is enabled.</summary>
      <returns>
        <see langword="true" /> if the paper section of the dialog box is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.AllowPrinter">
      <summary>Gets or sets a value indicating whether the Printer button is enabled.</summary>
      <returns>
        <see langword="true" /> if the Printer button is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.Document">
      <summary>Gets or sets a value indicating the <see cref="T:System.Drawing.Printing.PrintDocument" /> to get page settings from.</summary>
      <returns>The <see cref="T:System.Drawing.Printing.PrintDocument" /> to get page settings from. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.EnableMetric">
      <summary>Gets or sets a value indicating whether the margin settings, when displayed in millimeters, should be automatically converted to and from hundredths of an inch.</summary>
      <returns>
        <see langword="true" /> if the margins should be automatically converted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.MinMargins">
      <summary>Gets or sets a value indicating the minimum margins, in hundredths of an inch, the user is allowed to select.</summary>
      <returns>The minimum margins, in hundredths of an inch, the user is allowed to select. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.PageSettings">
      <summary>Gets or sets a value indicating the page settings to modify.</summary>
      <returns>The <see cref="T:System.Drawing.Printing.PageSettings" /> to modify. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.PrinterSettings">
      <summary>Gets or sets the printer settings that are modified when the user clicks the Printer button in the dialog.</summary>
      <returns>The <see cref="T:System.Drawing.Printing.PrinterSettings" /> to modify when the user clicks the Printer button. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.ShowHelp">
      <summary>Gets or sets a value indicating whether the Help button is visible.</summary>
      <returns>
        <see langword="true" /> if the Help button is visible; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PageSetupDialog.ShowNetwork">
      <summary>Gets or sets a value indicating whether the Network button is visible.</summary>
      <returns>
        <see langword="true" /> if the Network button is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.PaintEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.PaintEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PaintEventArgs" /> class with the specified graphics and clipping rectangle.</summary>
      <param name="graphics">The <see cref="T:System.Drawing.Graphics" /> used to paint the item.</param>
      <param name="clipRect">The <see cref="T:System.Drawing.Rectangle" /> that represents the rectangle in which to paint.</param>
    </member>
    <member name="M:System.Windows.Forms.PaintEventArgs.Dispose">
      <summary>Releases all resources used by the <see cref="T:System.Windows.Forms.PaintEventArgs" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.PaintEventArgs.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.PaintEventArgs" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.PaintEventArgs.Finalize">
      <summary>Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.PaintEventArgs.System#Drawing#IDeviceContext#GetHdc">
      <summary>Returns the handle to a Windows device context.</summary>
      <returns>An <see cref="T:System.IntPtr" /> representing the handle of a device context.</returns>
    </member>
    <member name="M:System.Windows.Forms.PaintEventArgs.System#Drawing#IDeviceContext#ReleaseHdc">
      <summary>Releases the handle of a Windows device context.</summary>
    </member>
    <member name="P:System.Windows.Forms.PaintEventArgs.ClipRectangle">
      <summary>Gets the rectangle in which to paint.</summary>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> in which to paint.</returns>
    </member>
    <member name="P:System.Windows.Forms.PaintEventArgs.Graphics">
      <summary>Gets the graphics used to paint.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> object used to paint. The <see cref="T:System.Drawing.Graphics" /> object provides methods for drawing objects on the display device.</returns>
    </member>
    <member name="T:System.Windows.Forms.PaintEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.Paint" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.Panel">
      <summary>Used to group collections of controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.Panel.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Panel.AutoSize" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.Panel.KeyDown">
      <summary>This member is not meaningful for this control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Panel.KeyPress">
      <summary>This member is not meaningful for this control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Panel.KeyUp">
      <summary>This member is not meaningful for this control.</summary>
    </member>
    <member name="E:System.Windows.Forms.Panel.TextChanged">
      <summary>This member is not meaningful for this control.</summary>
    </member>
    <member name="M:System.Windows.Forms.Panel.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Panel" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Panel.CreateAccessibilityInstance">
      <summary>Creates a new AccessibleObject for this <see cref="T:System.Windows.Forms.Panel" /> instance.
             The AccessibleObject instance returned by this method supports ControlType UIA property.</summary>
      <returns>
        <see cref="T:System.Windows.Forms.AccessibleObject" /> for this <see cref="T:System.Windows.Forms.Panel" /> instance.</returns>
    </member>
    <member name="M:System.Windows.Forms.Panel.OnResize(System.EventArgs)">
      <summary>Fires the event indicating that the panel has been resized. Inheriting controls should use this in favor of actually listening to the event, but should still call <see langword="base.onResize" /> to ensure that the event is fired for external listeners.</summary>
      <param name="eventargs">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Panel.ToString">
      <summary>Returns a string representation for this control.</summary>
      <returns>A <see cref="T:System.String" /> representation of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Panel.AutoSize">
      <summary>Gets or sets a value that indicates whether the control resizes based on its contents.</summary>
      <returns>
        <see langword="true" /> if the control automatically resizes based on its contents; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Panel.AutoSizeMode">
      <summary>Indicates the automatic sizing behavior of the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.AutoSizeMode" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.AutoSizeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.Panel.BorderStyle">
      <summary>Indicates the border style for the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when setting this property is not a valid <see cref="T:System.Windows.Forms.BorderStyle" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see langword="BorderStyle.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Panel.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.Panel.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Panel.TabStop">
      <summary>Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.</summary>
      <returns>
        <see langword="true" /> if the user can give the focus to the control using the TAB key; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Panel.Text">
      <summary>This member is not meaningful for this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="T:System.Windows.Forms.PictureBox">
      <summary>Represents a Windows picture box control for displaying an image.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.CausesValidationChanged">
      <summary>Overrides the <see cref="E:System.Windows.Forms.Control.CausesValidationChanged" /> property.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.Enter">
      <summary>Overrides the <see cref="E:System.Windows.Forms.Control.Enter" /> property.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.FontChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PictureBox.Font" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.ForeColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PictureBox.ForeColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.ImeModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PictureBox.ImeMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.KeyDown">
      <summary>Occurs when a key is pressed when the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.KeyPress">
      <summary>Occurs when a key is pressed when the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.KeyUp">
      <summary>Occurs when a key is released when the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.Leave">
      <summary>Occurs when input focus leaves the <see cref="T:System.Windows.Forms.PictureBox" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.LoadCompleted">
      <summary>Occurs when the asynchronous image-load operation is completed, been canceled, or raised an exception.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.LoadProgressChanged">
      <summary>Occurs when the progress of an asynchronous image-loading operation has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.RightToLeftChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PictureBox.RightToLeft" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.SizeModeChanged">
      <summary>Occurs when <see cref="P:System.Windows.Forms.PictureBox.SizeMode" /> changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.TabIndexChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PictureBox.TabIndex" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.TabStopChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PictureBox.TabStop" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PictureBox.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PictureBox.Text" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PictureBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.CancelAsync">
      <summary>Cancels an asynchronous image load.</summary>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.PictureBox.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.PictureBox" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release managed and unmanaged resources; <see langword="false" /> to release unmanaged resources only.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.Load">
      <summary>Displays the image specified by the <see cref="P:System.Windows.Forms.PictureBox.ImageLocation" /> property of the <see cref="T:System.Windows.Forms.PictureBox" />.</summary>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.PictureBox.ImageLocation" /> is <see langword="null" /> or an empty string.</exception>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.Load(System.String)">
      <summary>Sets the <see cref="P:System.Windows.Forms.PictureBox.ImageLocation" /> to the specified URL and displays the image indicated.</summary>
      <param name="url">The path for the image to display in the <see cref="T:System.Windows.Forms.PictureBox" />.</param>
      <exception cref="T:System.InvalidOperationException">
        <paramref name="url" /> is <see langword="null" /> or an empty string.</exception>
      <exception cref="T:System.Net.WebException">
        <paramref name="url" /> refers to an image on the Web that cannot be accessed.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="url" /> refers to a file that is not an image.</exception>
      <exception cref="T:System.IO.FileNotFoundException">
        <paramref name="url" /> refers to a file that does not exist.</exception>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.LoadAsync">
      <summary>Loads the image asynchronously.</summary>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.LoadAsync(System.String)">
      <summary>Loads the image at the specified location, asynchronously.</summary>
      <param name="url">The path for the image to display in the <see cref="T:System.Windows.Forms.PictureBox" />.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.PictureBox.LoadCompleted" /> event.</summary>
      <param name="e">An <see cref="T:System.ComponentModel.AsyncCompletedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnLoadProgressChanged(System.ComponentModel.ProgressChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.PictureBox.LoadProgressChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.ProgressChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="pe">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnParentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnSizeModeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.PictureBox.SizeModeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.System#ComponentModel#ISupportInitialize#BeginInit">
      <summary>Signals the object that initialization is starting.</summary>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.System#ComponentModel#ISupportInitialize#EndInit">
      <summary>Signals to the object that initialization is complete.</summary>
    </member>
    <member name="M:System.Windows.Forms.PictureBox.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.PictureBox" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.PictureBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.AllowDrop">
      <summary>Overrides the <see cref="P:System.Windows.Forms.Control.AllowDrop" /> property.</summary>
      <returns>
        <see langword="true" /> if drag-and-drop operations are allowed in the control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.BorderStyle">
      <summary>Indicates the border style for the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> enumeration values. The default is <see cref="F:System.Windows.Forms.BorderStyle.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.CausesValidation">
      <summary>Overrides the <see cref="P:System.Windows.Forms.Control.CausesValidation" /> property.</summary>
      <returns>
        <see langword="true" /> if the control causes validation to be performed on any controls requiring validation when it receives focus; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.CreateParams">
      <summary>Overrides the <see cref="P:System.Windows.Forms.Control.CreateParams" /> property.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.DefaultImeMode">
      <summary>Gets a value indicating the mode for Input Method Editor (IME) for the <see cref="T:System.Windows.Forms.PictureBox" />.</summary>
      <returns>Always <see cref="F:System.Windows.Forms.ImeMode.Disable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.ErrorImage">
      <summary>Gets or sets the image to display when an error occurs during the image-loading process or if the image load is canceled.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> to display if an error occurs during the image-loading process or if the image load is canceled.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.Font">
      <summary>Gets or sets the font of the text displayed by the control.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.ForeColor">
      <summary>Overrides the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.Image">
      <summary>Gets or sets the image that is displayed by <see cref="T:System.Windows.Forms.PictureBox" />.</summary>
      <returns>The <see cref="T:System.Drawing.Image" /> to display.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.ImageLocation">
      <summary>Gets or sets the path or URL for the image to display in the <see cref="T:System.Windows.Forms.PictureBox" />.</summary>
      <returns>The path or URL for the image to display in the <see cref="T:System.Windows.Forms.PictureBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.ImeMode">
      <summary>Gets or sets the Input Method Editor(IME) mode supported by this control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.InitialImage">
      <summary>Gets or sets the image displayed in the <see cref="T:System.Windows.Forms.PictureBox" /> control when the main image is loading.</summary>
      <returns>The <see cref="T:System.Drawing.Image" /> displayed in the picture box control when the main image is loading.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.RightToLeft">
      <summary>Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left languages.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.RightToLeft" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.SizeMode">
      <summary>Indicates how the image is displayed.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.PictureBoxSizeMode" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.PictureBoxSizeMode" /> values. The default is <see cref="F:System.Windows.Forms.PictureBoxSizeMode.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.TabIndex">
      <summary>Gets or sets the tab index value.</summary>
      <returns>The tab index value.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.TabStop">
      <summary>Gets or sets a value that indicates whether the user can give the focus to this control by using the TAB key.</summary>
      <returns>
        <see langword="true" /> if the user can give the focus to the control by using the TAB key; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.Text">
      <summary>Gets or sets the text of the <see cref="T:System.Windows.Forms.PictureBox" />.</summary>
      <returns>The text of the <see cref="T:System.Windows.Forms.PictureBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PictureBox.WaitOnLoad">
      <summary>Gets or sets a value indicating whether an image is loaded synchronously.</summary>
      <returns>
        <see langword="true" /> if an image-loading operation is completed synchronously; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.PictureBoxSizeMode">
      <summary>Specifies how an image is positioned within a <see cref="T:System.Windows.Forms.PictureBox" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.PictureBoxSizeMode.AutoSize">
      <summary>The <see cref="T:System.Windows.Forms.PictureBox" /> is sized equal to the size of the image that it contains.</summary>
    </member>
    <member name="F:System.Windows.Forms.PictureBoxSizeMode.CenterImage">
      <summary>The image is displayed in the center if the <see cref="T:System.Windows.Forms.PictureBox" /> is larger than the image. If the image is larger than the <see cref="T:System.Windows.Forms.PictureBox" />, the picture is placed in the center of the <see cref="T:System.Windows.Forms.PictureBox" /> and the outside edges are clipped.</summary>
    </member>
    <member name="F:System.Windows.Forms.PictureBoxSizeMode.Normal">
      <summary>The image is placed in the upper-left corner of the <see cref="T:System.Windows.Forms.PictureBox" />. The image is clipped if it is larger than the <see cref="T:System.Windows.Forms.PictureBox" /> it is contained in.</summary>
    </member>
    <member name="F:System.Windows.Forms.PictureBoxSizeMode.StretchImage">
      <summary>The image within the <see cref="T:System.Windows.Forms.PictureBox" /> is stretched or shrunk to fit the size of the <see cref="T:System.Windows.Forms.PictureBox" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.PictureBoxSizeMode.Zoom">
      <summary>The size of the image is increased or decreased maintaining the size ratio.</summary>
    </member>
    <member name="T:System.Windows.Forms.PopupEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolTip.Popup" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.PopupEventArgs.#ctor(System.Windows.Forms.IWin32Window,System.Windows.Forms.Control,System.Boolean,System.Drawing.Size)">
      <summary>Initializes an instance of the <see cref="T:System.Windows.Forms.PopupEventArgs" /> class.</summary>
      <param name="associatedWindow">The <see cref="T:System.Windows.Forms.IWin32Window" /> that the ToolTip is bound to.</param>
      <param name="associatedControl">The <see cref="T:System.Windows.Forms.Control" /> that the ToolTip is being created for.</param>
      <param name="isBalloon">
        <see langword="true" /> to indicate that the associated ToolTip window has a balloon-style appearance; otherwise, <see langword="false" /> to indicate that the ToolTip window has a standard rectangular appearance.</param>
      <param name="size">The <see cref="T:System.Drawing.Size" /> of the ToolTip.</param>
    </member>
    <member name="P:System.Windows.Forms.PopupEventArgs.AssociatedControl">
      <summary>Gets the control for which the <see cref="T:System.Windows.Forms.ToolTip" /> is being drawn.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that is associated with the <see cref="T:System.Windows.Forms.ToolTip" />, or <see langword="null" /> if the ToolTip is not associated with a control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PopupEventArgs.AssociatedWindow">
      <summary>Gets the window to which this <see cref="T:System.Windows.Forms.ToolTip" /> is bound.</summary>
      <returns>The window which owns the <see cref="T:System.Windows.Forms.ToolTip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PopupEventArgs.IsBalloon">
      <summary>Gets a value indicating whether the ToolTip is displayed as a standard rectangular or a balloon window.</summary>
      <returns>
        <see langword="true" /> if the ToolTip is displayed in a balloon window; otherwise, <see langword="false" /> if a standard rectangular window is used.</returns>
    </member>
    <member name="P:System.Windows.Forms.PopupEventArgs.ToolTipSize">
      <summary>Gets or sets the size of the ToolTip.</summary>
      <returns>The <see cref="T:System.Drawing.Size" /> of the <see cref="T:System.Windows.Forms.ToolTip" /> window.</returns>
    </member>
    <member name="T:System.Windows.Forms.PopupEventHandler">
      <summary>Represents the method that handles the <see cref="E:System.Windows.Forms.ToolTip.Popup" /> event of the <see cref="T:System.Windows.Forms.ToolTip" /> class.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">Information about the event.</param>
    </member>
    <member name="T:System.Windows.Forms.PowerLineStatus">
      <summary>Specifies the system power status.</summary>
    </member>
    <member name="F:System.Windows.Forms.PowerLineStatus.Offline">
      <summary>The system is offline.</summary>
    </member>
    <member name="F:System.Windows.Forms.PowerLineStatus.Online">
      <summary>The system is online.</summary>
    </member>
    <member name="F:System.Windows.Forms.PowerLineStatus.Unknown">
      <summary>The power status of the system is unknown.</summary>
    </member>
    <member name="T:System.Windows.Forms.PowerState">
      <summary>Defines identifiers that indicate a suspended system power activity mode.</summary>
    </member>
    <member name="F:System.Windows.Forms.PowerState.Hibernate">
      <summary>Indicates a system hibernation power mode. When a system enters hibernation, the contents of its memory are saved to disk before the computer is turned off. When the system is restarted, the desktop and previously active programs are restored.</summary>
    </member>
    <member name="F:System.Windows.Forms.PowerState.Suspend">
      <summary>Indicates a system suspended power mode. When a system is suspended, the computer switches to a low-power state called standby. When a computer is in standby mode, some devices are turned off and the computer uses less power. The system can restore itself more quickly than returning from hibernation. Because standby does not save the memory state to disk, a power failure while in standby can cause loss of information.</summary>
    </member>
    <member name="T:System.Windows.Forms.PowerStatus">
      <summary>Indicates current system power status information.</summary>
    </member>
    <member name="P:System.Windows.Forms.PowerStatus.BatteryChargeStatus">
      <summary>Gets the current battery charge status.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.BatteryChargeStatus" /> values indicating the current battery charge level or charging status.</returns>
    </member>
    <member name="P:System.Windows.Forms.PowerStatus.BatteryFullLifetime">
      <summary>Gets the reported full charge lifetime of the primary battery power source in seconds.</summary>
      <returns>The reported number of seconds of battery life available when the battery is fully charged, or -1 if the battery life is unknown.</returns>
    </member>
    <member name="P:System.Windows.Forms.PowerStatus.BatteryLifePercent">
      <summary>Gets the approximate amount of full battery charge remaining.</summary>
      <returns>The approximate amount, from 0.0 to 1.0, of full battery charge remaining.</returns>
    </member>
    <member name="P:System.Windows.Forms.PowerStatus.BatteryLifeRemaining">
      <summary>Gets the approximate number of seconds of battery time remaining.</summary>
      <returns>The approximate number of seconds of battery life remaining, or -1 if the approximate remaining battery life is unknown.</returns>
    </member>
    <member name="P:System.Windows.Forms.PowerStatus.PowerLineStatus">
      <summary>Gets the current system power status.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.PowerLineStatus" /> values indicating the current system power status.</returns>
    </member>
    <member name="T:System.Windows.Forms.PreProcessControlState">
      <summary>Provides options that specify the relationship between the control and preprocessing messages.</summary>
    </member>
    <member name="F:System.Windows.Forms.PreProcessControlState.MessageNeeded">
      <summary>Specifies that the control requires the message and that processing should continue.</summary>
    </member>
    <member name="F:System.Windows.Forms.PreProcessControlState.MessageNotNeeded">
      <summary>Specifies that the control does not require the message.</summary>
    </member>
    <member name="F:System.Windows.Forms.PreProcessControlState.MessageProcessed">
      <summary>Specifies that the message has been processed and no further processing is required.</summary>
    </member>
    <member name="T:System.Windows.Forms.PreviewKeyDownEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.PreviewKeyDown" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.PreviewKeyDownEventArgs.#ctor(System.Windows.Forms.Keys)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PreviewKeyDownEventArgs" /> class with the specified key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.PreviewKeyDownEventArgs.Alt">
      <summary>Gets a value indicating whether the ALT key was pressed.</summary>
      <returns>
        <see langword="true" /> if the ALT key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PreviewKeyDownEventArgs.Control">
      <summary>Gets a value indicating whether the CTRL key was pressed.</summary>
      <returns>
        <see langword="true" /> if the CTRL key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PreviewKeyDownEventArgs.IsInputKey">
      <summary>Gets or sets a value indicating whether a key is a regular input key.</summary>
      <returns>
        <see langword="true" /> if the key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PreviewKeyDownEventArgs.KeyCode">
      <summary>Gets the keyboard code for a <see cref="E:System.Windows.Forms.Control.KeyDown" /> or <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.Keys" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.PreviewKeyDownEventArgs.KeyData">
      <summary>Gets the key code combined with key modifiers such as the SHIFT, CONTROL, and ALT keys for a <see cref="E:System.Windows.Forms.Control.KeyDown" /> or <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.Keys" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.PreviewKeyDownEventArgs.KeyValue">
      <summary>Gets the keyboard value for a <see cref="E:System.Windows.Forms.Control.KeyDown" /> or <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the keyboard value.</returns>
    </member>
    <member name="P:System.Windows.Forms.PreviewKeyDownEventArgs.Modifiers">
      <summary>Gets the modifier flags for a <see cref="E:System.Windows.Forms.Control.KeyDown" /> or <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.Keys" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.PreviewKeyDownEventArgs.Shift">
      <summary>Gets a value indicating whether the SHIFT key was pressed.</summary>
      <returns>
        <see langword="true" /> if the SHIFT key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.PreviewKeyDownEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.PreviewKeyDown" /> event for a control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.PreviewKeyDownEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.PrintControllerWithStatusDialog">
      <summary>Controls how a document is printed from a Windows Forms application.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintControllerWithStatusDialog.#ctor(System.Drawing.Printing.PrintController)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PrintControllerWithStatusDialog" /> class, wrapping the supplied <see cref="T:System.Drawing.Printing.PrintController" />.</summary>
      <param name="underlyingController">A <see cref="T:System.Drawing.Printing.PrintController" /> to encapsulate.</param>
    </member>
    <member name="M:System.Windows.Forms.PrintControllerWithStatusDialog.#ctor(System.Drawing.Printing.PrintController,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PrintControllerWithStatusDialog" /> class, wrapping the supplied <see cref="T:System.Drawing.Printing.PrintController" /> and specifying a title for the dialog box.</summary>
      <param name="underlyingController">A <see cref="T:System.Drawing.Printing.PrintController" /> to encapsulate.</param>
      <param name="dialogTitle">A <see cref="T:System.String" /> containing a title for the status dialog box.</param>
    </member>
    <member name="M:System.Windows.Forms.PrintControllerWithStatusDialog.OnEndPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)">
      <summary>Completes the control sequence that determines when and how to print a page of a document.</summary>
      <param name="document">A <see cref="T:System.Drawing.Printing.PrintDocument" /> that represents the document currently being printed.</param>
      <param name="e">A <see cref="T:System.Drawing.Printing.PrintPageEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PrintControllerWithStatusDialog.OnEndPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)">
      <summary>Completes the control sequence that determines when and how to print a document.</summary>
      <param name="document">A <see cref="T:System.Drawing.Printing.PrintDocument" /> that represents the document currently being printed.</param>
      <param name="e">A <see cref="T:System.Drawing.Printing.PrintPageEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPage(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintPageEventArgs)">
      <summary>Begins the control sequence that determines when and how to print a page of a document.</summary>
      <param name="document">A <see cref="T:System.Drawing.Printing.PrintDocument" /> that represents the document currently being printed.</param>
      <param name="e">A <see cref="T:System.Drawing.Printing.PrintPageEventArgs" /> that contains the event data.</param>
      <returns>A <see cref="T:System.Drawing.Graphics" /> object that represents a page from a <see cref="T:System.Drawing.Printing.PrintDocument" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPrint(System.Drawing.Printing.PrintDocument,System.Drawing.Printing.PrintEventArgs)">
      <summary>Begins the control sequence that determines when and how to print a document.</summary>
      <param name="document">A <see cref="T:System.Drawing.Printing.PrintDocument" /> that represents the document currently being printed.</param>
      <param name="e">A <see cref="T:System.Drawing.Printing.PrintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="P:System.Windows.Forms.PrintControllerWithStatusDialog.IsPreview">
      <summary>Gets a value indicating this <see cref="T:System.Windows.Forms.PrintControllerWithStatusDialog" /> is used for print preview.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.PrintControllerWithStatusDialog" /> is used for print preview, otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.PrintDialog">
      <summary>Lets users select a printer and choose which sections of the document to print from a Windows Forms application.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintDialog.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PrintDialog" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintDialog.Reset">
      <summary>Resets all options, the last selected printer, and the page settings to their default values.</summary>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.AllowCurrentPage">
      <summary>Gets or sets a value indicating whether the Current Page option button is displayed.</summary>
      <returns>
        <see langword="true" /> if the Current Page option button is displayed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.AllowPrintToFile">
      <summary>Gets or sets a value indicating whether the Print to file check box is enabled.</summary>
      <returns>
        <see langword="true" /> if the Print to file check box is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.AllowSelection">
      <summary>Gets or sets a value indicating whether the Selection option button is enabled.</summary>
      <returns>
        <see langword="true" /> if the Selection option button is enabled; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.AllowSomePages">
      <summary>Gets or sets a value indicating whether the Pages option button is enabled.</summary>
      <returns>
        <see langword="true" /> if the Pages option button is enabled; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.Document">
      <summary>Gets or sets a value indicating the <see cref="T:System.Drawing.Printing.PrintDocument" /> used to obtain <see cref="T:System.Drawing.Printing.PrinterSettings" />.</summary>
      <returns>The <see cref="T:System.Drawing.Printing.PrintDocument" /> used to obtain <see cref="T:System.Drawing.Printing.PrinterSettings" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.PrinterSettings">
      <summary>Gets or sets the printer settings the dialog box modifies.</summary>
      <returns>The <see cref="T:System.Drawing.Printing.PrinterSettings" /> the dialog box modifies.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.PrintToFile">
      <summary>Gets or sets a value indicating whether the Print to file check box is selected.</summary>
      <returns>
        <see langword="true" /> if the Print to file check box is selected; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.ShowHelp">
      <summary>Gets or sets a value indicating whether the Help button is displayed.</summary>
      <returns>
        <see langword="true" /> if the Help button is displayed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.ShowNetwork">
      <summary>Gets or sets a value indicating whether the Network button is displayed.</summary>
      <returns>
        <see langword="true" /> if the Network button is displayed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintDialog.UseEXDialog">
      <summary>Gets or sets a value indicating whether the dialog should be shown in the Windows XP style for systems running Windows XP Home Edition, Windows XP Professional, Windows Server 2003 or later.</summary>
      <returns>
        <see langword="true" /> to indicate the dialog should be shown with the Windows XP style, otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.PrintPreviewControl">
      <summary>Represents the raw preview part of print previewing from a Windows Forms application, without any dialog boxes or buttons. Most <see cref="T:System.Windows.Forms.PrintPreviewControl" /> objects are found on <see cref="T:System.Windows.Forms.PrintPreviewDialog" /> objects, but they do not have to be.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewControl.StartPageChanged">
      <summary>Occurs when the start page changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewControl.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewControl.Text" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PrintPreviewControl" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.PrintPreviewControl.InvalidatePreview">
      <summary>Refreshes the preview of the document.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.OnGotFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.OnLostFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.OnPaint(System.Windows.Forms.PaintEventArgs)" /> method.</summary>
      <param name="pevent">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="eventargs">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.OnStartPageChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.PrintPreviewControl.StartPageChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.ResetBackColor">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.BackColor" /> property to <see cref="P:System.Drawing.SystemColors.AppWorkspace" />, which is the default color.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.ResetForeColor">
      <summary>Resets the foreground color of the <see cref="T:System.Windows.Forms.PrintPreviewControl" /> to <see cref="P:System.Drawing.Color.White" />, which is the default color.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewControl.WndProc(System.Windows.Forms.Message@)">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" /> method.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewControl.AutoZoom">
      <summary>Gets or sets a value indicating whether resizing the control or changing the number of pages shown automatically adjusts the <see cref="P:System.Windows.Forms.PrintPreviewControl.Zoom" /> property.</summary>
      <returns>
        <see langword="true" /> if the changing the control size or number of pages adjusts the <see cref="P:System.Windows.Forms.PrintPreviewControl.Zoom" /> property; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewControl.Columns">
      <summary>Gets or sets the number of pages displayed horizontally across the screen.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The set value is less than 1.</exception>
      <returns>The number of pages displayed horizontally across the screen. The default is 1.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewControl.Document">
      <summary>Gets or sets a value indicating the document to preview.</summary>
      <returns>The <see cref="T:System.Drawing.Printing.PrintDocument" /> representing the document to preview.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewControl.RightToLeft">
      <summary>Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.RightToLeft" /> values. The default is <see cref="F:System.Windows.Forms.RightToLeft.Inherit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewControl.Rows">
      <summary>Gets or sets the number of pages displayed vertically down the screen.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The set value is less than 1.</exception>
      <returns>The number of pages displayed vertically down the screen. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewControl.StartPage">
      <summary>Gets or sets the page number of the upper left page.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The set value is less than 0.</exception>
      <returns>The page number of the upper left page. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewControl.TabStop" />
    <member name="P:System.Windows.Forms.PrintPreviewControl.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewControl.UseAntiAlias">
      <summary>Gets or sets a value indicating whether printing uses the anti-aliasing features of the operating system.</summary>
      <returns>
        <see langword="true" /> if anti-aliasing is used; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewControl.Zoom">
      <summary>Gets or sets a value indicating how large the pages will appear.</summary>
      <exception cref="T:System.ArgumentException">The value is less than or equal to 0.</exception>
      <returns>A value indicating how large the pages will appear. A value of 1.0 indicates full size.</returns>
    </member>
    <member name="T:System.Windows.Forms.PrintPreviewDialog">
      <summary>Represents a dialog box form that contains a <see cref="T:System.Windows.Forms.PrintPreviewControl" /> for printing from a Windows Forms application.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.AutoValidateChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Form.AutoValidate" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.BackColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.BackColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.CausesValidationChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.CausesValidation" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.ContextMenuStripChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.ContextMenuStrip" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.CursorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Cursor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.DockChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Dock" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.EnabledChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Enabled" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.FontChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Font" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.ForeColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.ForeColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.ImeModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.ImeMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.LocationChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Location" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.MarginChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Margin" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.MaximumSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.MaximumSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.MinimumSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.MinimumSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.RightToLeftChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.RightToLeft" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.RightToLeftLayoutChanged">
      <summary>Occurs when value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.SizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Size" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.TabStopChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.TabStop" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Text" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PrintPreviewDialog.VisibleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.Visible" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewDialog.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PrintPreviewDialog" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewDialog.CreateHandle">
      <summary>Creates the handle for the form that encapsulates the <see cref="T:System.Windows.Forms.PrintPreviewDialog" />.</summary>
      <exception cref="T:System.Drawing.Printing.InvalidPrinterException">The printer settings in <see cref="P:System.Windows.Forms.PrintPreviewDialog.Document" /> are not valid.</exception>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewDialog.OnClosing(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.Closing" /> event.</summary>
      <param name="e">Provides data for a cancelable event.</param>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewDialog.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Determines whether a key should be processed further.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> to indicate the key should be processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.PrintPreviewDialog.ProcessTabKey(System.Boolean)">
      <summary>Processes the TAB key.</summary>
      <param name="forward">
        <see langword="true" /> to cycle forward through the controls in the form; otherwise, <see langword="false" />.</param>
      <returns>
        <see langword="true" /> to indicate the TAB key was successfully processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AcceptButton">
      <summary>Gets or sets the button on the form that is clicked when the user presses the ENTER key.</summary>
      <returns>An <see cref="T:System.Windows.Forms.IButtonControl" /> that represents the button to use as the accept button for the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AccessibleDescription">
      <summary>Gets or sets the accessible description of the control.</summary>
      <returns>The accessible description of the control. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AccessibleName">
      <summary>Gets or sets the accessible name of the control.</summary>
      <returns>The accessible name of the control. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AccessibleRole">
      <summary>The accessible role of the control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values. The default is <see cref="F:System.Windows.Forms.AccessibleRole.Default" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AllowDrop">
      <summary>Gets or sets whether the control can accept data that the user drags onto it.</summary>
      <returns>
        <see langword="true" /> if drag-and-drop operations are allowed in the control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Anchor">
      <summary>Gets or sets the anchor style for the control.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.AnchorStyles" /> values. The default is <see langword="Top" /> and <see langword="Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AutoScale">
      <summary>Gets or sets a value indicating whether the form adjusts its size to fit the height of the font used on the form and scales its controls.</summary>
      <returns>
        <see langword="true" /> if the form will automatically scale itself and its controls based on the current font assigned to the form; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AutoScaleBaseSize">
      <summary>The <see cref="T:System.Windows.Forms.PrintPreviewDialog" /> class does not support the <see cref="P:System.Windows.Forms.PrintPreviewDialog.AutoScaleBaseSize" /> property.</summary>
      <returns>Stores an ordered pair of integers, typically the width and height of a rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AutoScroll">
      <summary>Gets or sets a value indicating whether the form enables autoscrolling.</summary>
      <returns>Represents a Boolean value.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AutoScrollMargin">
      <summary>Gets or sets the size of the auto-scroll margin.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the height and width, in pixels, of the auto-scroll margin.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AutoScrollMinSize">
      <summary>Gets or sets the minimum size of the automatic scroll bars.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the minimum height and width, in pixels, of the scroll bars.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AutoSize">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.PrintPreviewDialog" /> should automatically resize to fit its contents.</summary>
      <returns>
        <see langword="true" /> if <see cref="T:System.Windows.Forms.PrintPreviewDialog" /> should resize to fit its contents; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.AutoValidate">
      <summary>Gets or sets how the control performs validation when the user changes focus to another control.</summary>
      <returns>Determines how a control validates its data when it loses user input focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.BackColor">
      <summary>Gets or sets the background color of the form.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.BackgroundImage">
      <summary>Gets or sets the background image for the control.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> that represents the image to display in the background of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayout">
      <summary>Gets or sets the layout of the <see cref="P:System.Windows.Forms.PrintPreviewDialog.BackgroundImage" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.CancelButton">
      <summary>Gets or sets the cancel button for the <see cref="T:System.Windows.Forms.PrintPreviewDialog" />.</summary>
      <returns>Allows a control to act like a button on a form.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.CausesValidation">
      <summary>Gets or sets a value indicating whether entering the control causes validation for all controls that require validation.</summary>
      <returns>
        <see langword="true" /> if entering the control causes validation to be performed on controls requiring validation; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.ContextMenuStrip">
      <summary>Gets or sets how the short cut menu for the control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> for this control, or <see langword="null" /> if there is no <see cref="T:System.Windows.Forms.ContextMenuStrip" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.ControlBox">
      <summary>Gets or sets a value indicating whether a control box is displayed in the caption bar of the form.</summary>
      <returns>
        <see langword="true" /> if the form displays a control box in the upper-left corner of the form; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Cursor">
      <summary>Gets or sets the cursor for the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor to display when the mouse pointer is over the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.DataBindings">
      <summary>Gets the data bindings for the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ControlBindingsCollection" /> that contains the <see cref="T:System.Windows.Forms.Binding" /> objects for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.DefaultMinimumSize">
      <summary>Gets the default minimum size, in pixels, of the <see cref="T:System.Windows.Forms.PrintPreviewDialog" /> control.</summary>
      <returns>The <see cref="T:System.Drawing.Size" /> structure representing the default minimum size.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Dock">
      <summary>Gets or sets how the control should be docked in its parent control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default is <see cref="F:System.Windows.Forms.DockStyle.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.DockPadding">
      <summary>Overrides the <see cref="P:System.Windows.Forms.ScrollableControl.DockPadding" /> property.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ScrollableControl.DockPaddingEdges" /> that represents the padding for all the edges of a docked control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Document">
      <summary>Gets or sets the document to preview.</summary>
      <returns>The <see cref="T:System.Drawing.Printing.PrintDocument" /> representing the document to preview.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Enabled">
      <summary>Get or sets a value indicating whether the control is enabled.</summary>
      <returns>
        <see langword="true" /> if the control is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Font">
      <summary>Gets or sets the font used for the control.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.ForeColor">
      <summary>Gets or sets the foreground color of the control.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.FormBorderStyle">
      <summary>Gets or sets the border style of the form.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is outside the range of valid values.</exception>
      <returns>A <see cref="T:System.Windows.Forms.FormBorderStyle" /> that represents the style of border to display for the form. The default is <see cref="F:System.Windows.Forms.FormBorderStyle.Sizable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.HelpButton">
      <summary>Gets or sets a value indicating whether a Help button should be displayed in the caption box of the form.</summary>
      <returns>
        <see langword="true" /> to display a Help button in the form's caption bar; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Icon">
      <summary>Gets or sets the icon for the form.</summary>
      <returns>An <see cref="T:System.Drawing.Icon" /> that represents the icon for the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.ImeMode">
      <summary>Gets or sets the Input Method Editor (IME) mode supported by this control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.ImeMode" /> enumeration values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values. The default is <see cref="F:System.Windows.Forms.ImeMode.Inherit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.IsMdiContainer">
      <summary>Gets or sets a value indicating whether the form is a container for multiple document interface (MDI) child forms.</summary>
      <returns>
        <see langword="true" /> if the form is a container for MDI child forms; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.KeyPreview">
      <summary>Gets or sets a value indicating whether the form will receive key events before the event is passed to the control that has focus.</summary>
      <returns>
        <see langword="true" /> if the form will receive all key events; <see langword="false" /> if the currently selected control on the form receives key events. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Location">
      <summary>Gets or sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.</summary>
      <returns>The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the control relative to the upper-left corner of its container.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Margin">
      <summary>Gets or sets the margins for the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the space between controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.MaximizeBox">
      <summary>Gets or sets a value indicating whether the maximize button is displayed in the caption bar of the form.</summary>
      <returns>
        <see langword="true" /> to display a maximize button for the form; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.MaximumSize">
      <summary>Gets or sets the maximum size the form can be resized to.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The values of the height or width within the <see cref="T:System.Drawing.Size" /> are less than 0.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the maximum size for the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.MinimizeBox">
      <summary>Gets or sets a value indicating whether the minimize button is displayed in the caption bar of the form.</summary>
      <returns>
        <see langword="true" /> to display a minimize button for the form; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.MinimumSize">
      <summary>Gets the minimum size the form can be resized to.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The values of the height or width within the <see cref="T:System.Drawing.Size" /> are less than 0.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the minimum size for the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Opacity">
      <summary>Gets or sets the opacity level of the form.</summary>
      <returns>The level of opacity for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Padding">
      <summary>Gets or sets the padding for the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the control's internal spacing characteristics.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.PrintPreviewControl">
      <summary>Gets a value indicating the <see cref="T:System.Windows.Forms.PrintPreviewControl" /> contained in this form.</summary>
      <returns>The <see cref="T:System.Windows.Forms.PrintPreviewControl" /> contained in this form.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.RightToLeft">
      <summary>Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.RightToLeft" /> values. The default is <see cref="F:System.Windows.Forms.RightToLeft.Inherit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.RightToLeftLayout">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.PrintPreviewDialog" /> should be laid out from right to left.</summary>
      <returns>
        <see langword="true" /> to indicate the <see cref="T:System.Windows.Forms.PrintPreviewDialog" /> contents should be laid out from right to left; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.ShowInTaskbar">
      <summary>Gets or sets a value indicating whether the form is displayed in the Windows taskbar.</summary>
      <returns>
        <see langword="true" /> to display the form in the Windows taskbar at run time; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Size">
      <summary>Gets or sets the size of the form.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the size of the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.SizeGripStyle">
      <summary>Gets or sets the style of the size grip to display in the lower-right corner of the form.</summary>
      <returns>Gets or sets the style of the size grip to display in the lower-right corner of the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.StartPosition">
      <summary>Gets or sets the starting position of the dialog box at run time.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is outside the range of valid values.</exception>
      <returns>A <see cref="T:System.Windows.Forms.FormStartPosition" /> that represents the starting position of the dialog box.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.TabStop">
      <summary>Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.</summary>
      <returns>
        <see langword="true" /> if the user can give the focus to this control using the TAB key; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Tag">
      <summary>Gets or sets the object that contains data about the control.</summary>
      <returns>An object that contains data about the control. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Text">
      <summary>Gets or sets the text displayed on the control.</summary>
      <returns>Represents text as a series of Unicode characters.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.TopMost">
      <summary>Gets or sets a value indicating whether the form should be displayed as the topmost form of your application.</summary>
      <returns>
        <see langword="true" /> to display the form as a topmost form; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.TransparencyKey">
      <summary>Gets or sets the color that will represent transparent areas of the form.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color to display transparently on the form.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.UseAntiAlias">
      <summary>Gets or sets a value indicating whether printing uses the anti-aliasing features of the operating system.</summary>
      <returns>
        <see langword="true" /> if anti-aliasing is used; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.UseWaitCursor">
      <summary>Gets the wait cursor, typically an hourglass shape.</summary>
      <returns>
        <see langword="true" /> to use the wait cursor for the current control and all child controls; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.Visible">
      <summary>Gets or sets a value indicating whether the control is visible.</summary>
      <returns>This property is not relevant for this class.  
  
 <see langword="true" /> if the control is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PrintPreviewDialog.WindowState">
      <summary>Gets or sets the form's window state.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value specified is outside the range of valid values.</exception>
      <returns>A <see cref="T:System.Windows.Forms.FormWindowState" /> that represents the window state of the form. The default is <see cref="F:System.Windows.Forms.FormWindowState.Normal" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ProfessionalColors">
      <summary>Provides <see cref="T:System.Drawing.Color" /> structures that are colors of a Windows display element. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientBegin">
      <summary>Gets the starting color of the gradient used when the button is checked.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the gradient used when the button is checked.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientEnd">
      <summary>Gets the end color of the gradient used when the button is checked.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when the button is checked.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientMiddle">
      <summary>Gets the middle color of the gradient used when the button is checked.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used when the button is checked.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlight">
      <summary>Gets the solid color used when the button is checked.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color used when the button is checked.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlightBorder">
      <summary>Gets the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlight" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonPressedBorder">
      <summary>Gets the border color to use with the <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientBegin" />, <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientMiddle" />, and <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientEnd" /> colors.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with the <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientBegin" />, <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientMiddle" />, and <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientEnd" /> colors.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientBegin">
      <summary>Gets the starting color of the gradient used when the button is pressed down.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used when the button is pressed down.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientEnd">
      <summary>Gets the end color of the gradient used when the button is pressed down.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when the button is pressed down.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonPressedGradientMiddle">
      <summary>Gets the middle color of the gradient used when the button is pressed down.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used when the button is pressed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonPressedHighlight">
      <summary>Gets the solid color used when the button is pressed down.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color used when the button is pressed down.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonPressedHighlightBorder">
      <summary>Gets the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonPressedHighlight" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonPressedHighlight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedBorder">
      <summary>Gets the border color to use with the <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientBegin" />, <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientMiddle" />, and <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientEnd" /> colors.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with the <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientBegin" />, <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientMiddle" />, and <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientEnd" /> colors.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientBegin">
      <summary>Gets the starting color of the gradient used when the button is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used when the button is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientEnd">
      <summary>Gets the end color of the gradient used when the button is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when the button is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientMiddle">
      <summary>Gets the middle color of the gradient used when the button is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used when the button is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlight">
      <summary>Gets the solid color used when the button is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color used when the button is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlightBorder">
      <summary>Gets the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlight" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.CheckBackground">
      <summary>Gets the solid color to use when the check box is selected and gradients are being used.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color to use when the check box is selected and gradients are being used.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.CheckPressedBackground">
      <summary>Gets the solid color to use when the check box is selected and gradients are being used.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color to use when the check box is selected and gradients are being used.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.CheckSelectedBackground">
      <summary>Gets the solid color to use when the check box is selected and gradients are being used.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color to use when the check box is selected and gradients are being used.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.GripDark">
      <summary>Gets the color to use for shadow effects on the grip or move handle.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the color to use for shadow effects on the grip or move handle.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.GripLight">
      <summary>Gets the color to use for highlight effects on the grip or move handle.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the color to use for highlight effects on the grip or move handle.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ImageMarginGradientBegin">
      <summary>Gets the starting color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ImageMarginGradientEnd">
      <summary>Gets the end color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ImageMarginGradientMiddle">
      <summary>Gets the middle color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientBegin">
      <summary>Gets the starting color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientEnd">
      <summary>Gets the end color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientMiddle">
      <summary>Gets the middle color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuBorder">
      <summary>Gets the border color or a <see cref="T:System.Windows.Forms.MenuStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color or a <see cref="T:System.Windows.Forms.MenuStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuItemBorder">
      <summary>Gets the border color to use with a <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with a <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientBegin">
      <summary>Gets the starting color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed down.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed down.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientEnd">
      <summary>Gets the end color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed down.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed down.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientMiddle">
      <summary>Gets the middle color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed down.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed down.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuItemSelected">
      <summary>Gets the solid color to use when a <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> other than the top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color to use when a <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> other than the top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuItemSelectedGradientBegin">
      <summary>Gets the starting color of the gradient used when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuItemSelectedGradientEnd">
      <summary>Gets the end color of the gradient used when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuStripGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.MenuStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.MenuStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.MenuStripGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.MenuStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.MenuStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.OverflowButtonGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.OverflowButtonGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.OverflowButtonGradientMiddle">
      <summary>Gets the middle color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.RaftingContainerGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.RaftingContainerGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.SeparatorDark">
      <summary>Gets the color to use to for shadow effects on the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the color to use to for shadow effects on the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.SeparatorLight">
      <summary>Gets the color to use to for highlight effects on the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the color to use to create highlight effects on the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.StatusStripBorder" />
    <member name="P:System.Windows.Forms.ProfessionalColors.StatusStripGradientBegin">
      <summary>Gets the starting color of the gradient used on the <see cref="T:System.Windows.Forms.StatusStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used on the <see cref="T:System.Windows.Forms.StatusStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.StatusStripGradientEnd">
      <summary>Gets the end color of the gradient used on the <see cref="T:System.Windows.Forms.StatusStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used on the <see cref="T:System.Windows.Forms.StatusStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ToolStripBorder">
      <summary>Gets the border color to use on the bottom edge of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use on the bottom edge of the <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ToolStripContentPanelGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ToolStripContentPanelGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ToolStripDropDownBackground">
      <summary>Gets the solid background color of the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid background color of the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ToolStripGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ToolStripGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ToolStripGradientMiddle">
      <summary>Gets the middle color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ToolStripPanelGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColors.ToolStripPanelGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ProfessionalColorTable">
      <summary>Provides colors used for Microsoft Office display elements.</summary>
    </member>
    <member name="M:System.Windows.Forms.ProfessionalColorTable.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ProfessionalColorTable" /> class.</summary>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientBegin">
      <summary>Gets the starting color of the gradient used when the button is checked.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used when the button is checked.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientEnd">
      <summary>Gets the end color of the gradient used when the button is checked.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when the button is checked.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientMiddle">
      <summary>Gets the middle color of the gradient used when the button is checked.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used when the button is checked.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlight">
      <summary>Gets the solid color used when the button is checked.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color used when the button is checked.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlightBorder">
      <summary>Gets the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlight" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedBorder">
      <summary>Gets the border color to use with the <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientBegin" />, <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientMiddle" />, and <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientEnd" /> colors.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with the <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientBegin" />, <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientMiddle" />, and <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientEnd" /> colors.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientBegin">
      <summary>Gets the starting color of the gradient used when the button is pressed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used when the button is pressed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientEnd">
      <summary>Gets the end color of the gradient used when the button is pressed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when the button is pressed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientMiddle">
      <summary>Gets the middle color of the gradient used when the button is pressed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used when the button is pressed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlight">
      <summary>Gets the solid color used when the button is pressed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color used when the button is pressed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlightBorder">
      <summary>Gets the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlight" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedBorder">
      <summary>Gets the border color to use with the <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientBegin" />, <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientMiddle" />, and <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientEnd" /> colors.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with the <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientBegin" />, <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientMiddle" />, and <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientEnd" /> colors.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientBegin">
      <summary>Gets the starting color of the gradient used when the button is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used when the button is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientEnd">
      <summary>Gets the end color of the gradient used when the button is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when the button is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientMiddle">
      <summary>Gets the middle color of the gradient used when the button is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used when the button is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlight">
      <summary>Gets the solid color used when the button is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color used when the button is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlightBorder">
      <summary>Gets the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlight" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with <see cref="P:System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.CheckBackground">
      <summary>Gets the solid color to use when the button is checked and gradients are being used.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color to use when the button is checked and gradients are being used.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.CheckPressedBackground">
      <summary>Gets the solid color to use when the button is checked and selected and gradients are being used.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color to use when the button is checked and selected and gradients are being used.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.CheckSelectedBackground">
      <summary>Gets the solid color to use when the button is checked and selected and gradients are being used.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color to use when the button is checked and selected and gradients are being used.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.GripDark">
      <summary>Gets the color to use for shadow effects on the grip (move handle).</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the color to use for shadow effects on the grip (move handle).</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.GripLight">
      <summary>Gets the color to use for highlight effects on the grip (move handle).</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the color to use for highlight effects on the grip (move handle).</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientBegin">
      <summary>Gets the starting color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientEnd">
      <summary>Gets the end color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientMiddle">
      <summary>Gets the middle color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientBegin">
      <summary>Gets the starting color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientEnd">
      <summary>Gets the end color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientMiddle">
      <summary>Gets the middle color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used in the image margin of a <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> when an item is revealed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuBorder">
      <summary>Gets the color that is the border color to use on a <see cref="T:System.Windows.Forms.MenuStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use on a <see cref="T:System.Windows.Forms.MenuStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuItemBorder">
      <summary>Gets the border color to use with a <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use with a <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientBegin">
      <summary>Gets the starting color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientEnd">
      <summary>Gets the end color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientMiddle">
      <summary>Gets the middle color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used when a top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is pressed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuItemSelected">
      <summary>Gets the solid color to use when a <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> other than the top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid color to use when a <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> other than the top-level <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuItemSelectedGradientBegin">
      <summary>Gets the starting color of the gradient used when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuItemSelectedGradientEnd">
      <summary>Gets the end color of the gradient used when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuStripGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.MenuStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.MenuStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.MenuStripGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.MenuStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.MenuStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientMiddle">
      <summary>Gets the middle color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.RaftingContainerGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.RaftingContainerGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.SeparatorDark">
      <summary>Gets the color to use to for shadow effects on the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the color to use to for shadow effects on the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.SeparatorLight">
      <summary>Gets the color to use to for highlight effects on the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the color to use to for highlight effects on the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.StatusStripBorder" />
    <member name="P:System.Windows.Forms.ProfessionalColorTable.StatusStripGradientBegin">
      <summary>Gets the starting color of the gradient used on the <see cref="T:System.Windows.Forms.StatusStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used on the <see cref="T:System.Windows.Forms.StatusStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.StatusStripGradientEnd">
      <summary>Gets the end color of the gradient used on the <see cref="T:System.Windows.Forms.StatusStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used on the <see cref="T:System.Windows.Forms.StatusStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ToolStripBorder">
      <summary>Gets the border color to use on the bottom edge of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the border color to use on the bottom edge of the <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ToolStripContentPanelGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ToolStripContentPanelGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ToolStripDropDownBackground">
      <summary>Gets the solid background color of the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the solid background color of the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ToolStripGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ToolStripGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ToolStripGradientMiddle">
      <summary>Gets the middle color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the middle color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ToolStripPanelGradientBegin">
      <summary>Gets the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the starting color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.ToolStripPanelGradientEnd">
      <summary>Gets the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that is the end color of the gradient used in the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProfessionalColorTable.UseSystemColors">
      <summary>Gets or sets a value indicating whether to use <see cref="T:System.Drawing.SystemColors" /> rather than colors that match the current visual style.</summary>
      <returns>
        <see langword="true" /> to use <see cref="T:System.Drawing.SystemColors" />; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ProgressBar">
      <summary>Represents a Windows progress bar control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ProgressBar.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ProgressBar.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.CausesValidationChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ProgressBar.CausesValidation" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.DoubleClick">
      <summary>Occurs when the user double-clicks the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.Enter">
      <summary>Occurs when focus enters the <see cref="T:System.Windows.Forms.ProgressBar" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.FontChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ProgressBar.Font" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.ImeModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ProgressBar.ImeMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.KeyDown">
      <summary>Occurs when the user presses a key while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.KeyPress">
      <summary>Occurs when the user presses a key while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.KeyUp">
      <summary>Occurs when the user releases a key while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.Leave">
      <summary>Occurs when focus leaves the <see cref="T:System.Windows.Forms.ProgressBar" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.MouseDoubleClick">
      <summary>Occurs when the user double-clicks the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ProgressBar.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.Paint">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ProgressBar" /> is drawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.RightToLeftLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ProgressBar.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.TabStopChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ProgressBar.TabStop" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ProgressBar.TextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ProgressBar.Text" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ProgressBar" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.CreateAccessibilityInstance">
      <summary>Creates a new instance of the accessibility object for the <see cref="T:System.Windows.Forms.ProgressBar" /> control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control.ControlAccessibleObject" /> for this <see cref="T:System.Windows.Forms.ProgressBar" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.CreateHandle">
      <summary>Creates a handle for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.Increment(System.Int32)">
      <summary>Advances the current position of the progress bar by the specified amount.</summary>
      <param name="value">The amount by which to increment the progress bar's current position.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.ProgressBar.Style" /> property is set to <see cref="F:System.Windows.Forms.ProgressBarStyle.Marquee" /></exception>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.OnForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ForeColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.OnHandleCreated(System.EventArgs)">
      <summary>Overrides <see cref="M:System.Windows.Forms.Control.OnHandleCreated(System.EventArgs)" />.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.OnRightToLeftLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="P:System.Windows.Forms.ProgressBar.RightToLeftLayout" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.PerformStep">
      <summary>Advances the current position of the progress bar by the amount of the <see cref="P:System.Windows.Forms.ProgressBar.Step" /> property.</summary>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.ProgressBar.Style" /> is set to <see cref="F:System.Windows.Forms.ProgressBarStyle.Marquee" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.ResetForeColor">
      <summary>Resets the <see cref="P:System.Windows.Forms.Control.ForeColor" /> to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.ProgressBar.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.ProgressBar" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.ProgressBar" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.AllowDrop">
      <summary>Gets or sets a value indicating whether the control can accept data that the user drags onto it.</summary>
      <returns>
        <see langword="true" /> if drag-and-drop operations are allowed in the control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.BackgroundImage">
      <summary>Gets or sets the background image for the <see cref="T:System.Windows.Forms.ProgressBar" /> control.</summary>
      <returns>The current background image.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.BackgroundImageLayout">
      <summary>Gets or sets the layout of the background image of the progress bar.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.CausesValidation">
      <summary>Gets or sets a value indicating whether the control, when it receives focus, causes validation to be performed on any controls that require validation.</summary>
      <returns>
        <see langword="true" /> if the control, when it receives focus, causes validation to be performed on any controls that require validation; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.CreateParams">
      <summary>Overrides <see cref="P:System.Windows.Forms.Control.CreateParams" />.</summary>
      <returns>Information needed when you create a control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.DefaultImeMode">
      <summary>Gets the default Input Method Editor (IME) mode supported by the control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the default size of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.DoubleBuffered">
      <summary>Gets or sets a value indicating whether the control should redraw its surface using a secondary buffer.</summary>
      <returns>
        <see langword="true" /> if a secondary buffer should be used, <see langword="false" /> otherwise.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.Font">
      <summary>Gets or sets the font of text in the <see cref="T:System.Windows.Forms.ProgressBar" />.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> of the text. The default is the font set by the container.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.ImeMode">
      <summary>Gets or sets the input method editor (IME) for the <see cref="T:System.Windows.Forms.ProgressBar" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.MarqueeAnimationSpeed">
      <summary>Gets or sets the time period, in milliseconds, that it takes the progress block to scroll across the progress bar.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The indicated time period is less than 0.</exception>
      <returns>The time period, in milliseconds, that it takes the progress block to scroll across the progress bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.Maximum">
      <summary>Gets or sets the maximum value of the range of the control.</summary>
      <exception cref="T:System.ArgumentException">The value specified is less than 0.</exception>
      <returns>The maximum value of the range. The default is 100.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.Minimum">
      <summary>Gets or sets the minimum value of the range of the control.</summary>
      <exception cref="T:System.ArgumentException">The value specified for the property is less than 0.</exception>
      <returns>The minimum value of the range. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.Padding">
      <summary>Gets or sets the space between the edges of a <see cref="T:System.Windows.Forms.ProgressBar" /> control and its contents.</summary>
      <returns>
        <see cref="F:System.Windows.Forms.Padding.Empty" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.RightToLeftLayout">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ProgressBar" /> and any text it contains is displayed from right to left.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ProgressBar" /> is displayed from right to left; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.Step">
      <summary>Gets or sets the amount by which a call to the <see cref="M:System.Windows.Forms.ProgressBar.PerformStep" /> method increases the current position of the progress bar.</summary>
      <returns>The amount by which to increment the progress bar with each call to the <see cref="M:System.Windows.Forms.ProgressBar.PerformStep" /> method. The default is 10.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.Style">
      <summary>Gets or sets the manner in which progress should be indicated on the progress bar.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value is not a member of the <see cref="T:System.Windows.Forms.ProgressBarStyle" /> enumeration.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ProgressBarStyle" /> values. The default is <see cref="F:System.Windows.Forms.ProgressBarStyle.Blocks" /></returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.TabStop">
      <summary>Overrides <see cref="P:System.Windows.Forms.Control.TabStop" />.</summary>
      <returns>true if the user can set the focus to the control by using the TAB key; otherwise, false. The default is true.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBar.Value">
      <summary>Gets or sets the current position of the progress bar.</summary>
      <exception cref="T:System.ArgumentException">The value specified is greater than the value of the <see cref="P:System.Windows.Forms.ProgressBar.Maximum" /> property.  
  
 -or-  
  
 The value specified is less than the value of the <see cref="P:System.Windows.Forms.ProgressBar.Minimum" /> property.</exception>
      <returns>The position within the range of the progress bar. The default is 0.</returns>
    </member>
    <member name="T:System.Windows.Forms.ProgressBarRenderer">
      <summary>Provides methods used to render a progress bar control with visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.ProgressBarRenderer.DrawHorizontalBar(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws an empty progress bar control that fills in horizontally.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the progress bar.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the progress bar.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ProgressBarRenderer.DrawHorizontalChunks(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws a set of progress bar pieces that fill a horizontal progress bar.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the progress bar.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds to be filled by progress bar pieces.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ProgressBarRenderer.DrawVerticalBar(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws an empty progress bar control that fills in vertically.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the progress bar.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the progress bar.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ProgressBarRenderer.DrawVerticalChunks(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws a set of progress bar pieces that fill a vertical progress bar.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the progress bar.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds to be filled by progress bar pieces.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="P:System.Windows.Forms.ProgressBarRenderer.ChunkSpaceThickness">
      <summary>Gets the width, in pixels, of the space between each inner piece of the progress bar.</summary>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>The width, in pixels, of the space between each inner piece of the progress bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBarRenderer.ChunkThickness">
      <summary>Gets the width, in pixels, of a single inner piece of the progress bar.</summary>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>The width, in pixels, of a single inner piece of the progress bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.ProgressBarRenderer.IsSupported">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ProgressBarRenderer" /> class can be used to draw a progress bar control with visual styles.</summary>
      <returns>
        <see langword="true" /> if the user has enabled visual styles in the operating system and visual styles are applied to the client area of application windows; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ProgressBarStyle">
      <summary>Specifies the style that a <see cref="T:System.Windows.Forms.ProgressBar" /> uses to indicate the progress of an operation.</summary>
    </member>
    <member name="F:System.Windows.Forms.ProgressBarStyle.Blocks">
      <summary>Indicates progress by increasing the number of segmented blocks in a <see cref="T:System.Windows.Forms.ProgressBar" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ProgressBarStyle.Continuous">
      <summary>Indicates progress by increasing the size of a smooth, continuous bar in a <see cref="T:System.Windows.Forms.ProgressBar" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ProgressBarStyle.Marquee">
      <summary>Indicates progress by continuously scrolling a block across a <see cref="T:System.Windows.Forms.ProgressBar" /> in a marquee fashion.</summary>
    </member>
    <member name="T:System.Windows.Forms.PropertyGrid">
      <summary>Provides a user interface for browsing the properties of an object.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PropertyGrid.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PropertyGrid.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.ForeColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PropertyGrid.ForeColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.KeyDown">
      <summary>Occurs when a key is first pressed.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.KeyPress">
      <summary>Occurs when a key is pressed while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.KeyUp">
      <summary>Occurs when a key is released while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.MouseDown">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.PropertyGrid" /> control with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.MouseEnter">
      <summary>Occurs when the mouse pointer enters the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.MouseLeave">
      <summary>Occurs when the mouse pointer leaves the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.MouseMove">
      <summary>Occurs when the mouse pointer moves over the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.MouseUp">
      <summary>Occurs when the mouse pointer is over the control and the user releases a mouse button.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.PropertyGrid.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.PropertySortChanged">
      <summary>Occurs when the sort mode is changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.PropertyTabChanged">
      <summary>Occurs when a property tab changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.PropertyValueChanged">
      <summary>Occurs when a property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.SelectedGridItemChanged">
      <summary>Occurs when the selected <see cref="T:System.Windows.Forms.GridItem" /> is changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.SelectedObjectsChanged">
      <summary>Occurs when the objects selected by the <see cref="P:System.Windows.Forms.PropertyGrid.SelectedObjects" /> property have changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#ComComponentNameChanged">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.PropertyGrid" /> control is browsing a COM object and the user renames the object.</summary>
    </member>
    <member name="E:System.Windows.Forms.PropertyGrid.TextChanged">
      <summary>Occurs when the text of the <see cref="T:System.Windows.Forms.PropertyGrid" /> changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PropertyGrid" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.CollapseAllGridItems">
      <summary>Collapses all the categories in the <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for this control.</summary>
      <returns>An accessibility object for this control.</returns>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.CreatePropertyTab(System.Type)">
      <summary>When overridden in a derived class, enables the creation of a <see cref="T:System.Windows.Forms.Design.PropertyTab" />.</summary>
      <param name="tabType">The type of tab to create.</param>
      <returns>The newly created property tab. Returns <see langword="null" /> in its default implementation.</returns>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.Dispose(System.Boolean)">
      <summary>Disposes of the resources (other than memory) used by the <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.ExpandAllGridItems">
      <summary>Expands all the categories in the <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnComComponentNameChanged(System.ComponentModel.Design.ComponentRenameEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.ComComponentNameChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.Design.ComponentRenameEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="me">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event.</summary>
      <param name="me">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="me">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnNotifyPropertyValueUIItemsChanged(System.Object,System.EventArgs)">
      <summary>Raises the <see cref="M:System.Drawing.Design.IPropertyValueUIService.NotifyPropertyValueUIItemsChanged" /> event.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="pevent">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnPropertySortChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.PropertyGrid.PropertySortChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnPropertyTabChanged(System.Windows.Forms.PropertyTabChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.PropertyGrid.PropertyTabChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PropertyTabChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnPropertyValueChanged(System.Windows.Forms.PropertyValueChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.PropertyGrid.PropertyValueChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PropertyValueChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnSelectedGridItemChanged(System.Windows.Forms.SelectedGridItemChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.PropertyGrid.SelectedGridItemChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.SelectedGridItemChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnSelectedObjectsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.PropertyGrid.SelectedObjectsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnSystemColorsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.SystemColorsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">Specifies key codes and modifiers.</param>
      <returns>
        <see langword="true" /> if the key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.Refresh">
      <summary>Forces the control to invalidate its client area and immediately redraw itself and any child controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.RefreshTabs(System.ComponentModel.PropertyTabScope)">
      <summary>Refreshes the property tabs of the specified scope.</summary>
      <param name="tabScope">Either the <see langword="Component" /> or <see langword="Document" /> value of <see cref="T:System.ComponentModel.PropertyTabScope" />.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="tabScope" /> parameter is not the <see langword="Component" /> or <see langword="Document" /> value of <see cref="T:System.ComponentModel.PropertyTabScope" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.ResetSelectedProperty">
      <summary>Resets the selected property to its default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.ScaleCore(System.Single,System.Single)">
      <summary>This method is not relevant for this class.</summary>
      <param name="dx">The horizontal scaling factor.</param>
      <param name="dy">The vertical scaling factor.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.ShowEventsButton(System.Boolean)">
      <summary>Displays or hides the events button.</summary>
      <param name="value">
        <see langword="true" /> to show the events button; <see langword="false" /> to hide the events button.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#DropDownDone">
      <summary>Closes any open drop-down controls on the <see cref="T:System.Windows.Forms.PropertyGrid" /> control. For a description of this member, see <see cref="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.DropDownDone" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#EnsurePendingChangesCommitted">
      <summary>Commits all pending changes to the <see cref="T:System.Windows.Forms.PropertyGrid" /> control. For a description of this member, see <see cref="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.EnsurePendingChangesCommitted" />.</summary>
      <returns>
        <see langword="true" /> if all the <see cref="T:System.Windows.Forms.PropertyGrid" /> successfully commits changes; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#HandleF4">
      <summary>Activates the <see cref="T:System.Windows.Forms.PropertyGrid" /> control when the user chooses properties for a control in Design view. For a description of this member, see <see cref="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.HandleF4" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#LoadState(Microsoft.Win32.RegistryKey)">
      <summary>Loads user states from the registry into the <see cref="T:System.Windows.Forms.PropertyGrid" /> control. For a description of this member, see <see cref="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.LoadState(Microsoft.Win32.RegistryKey)" />.</summary>
      <param name="key">The registry key that contains the user states.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#SaveState(Microsoft.Win32.RegistryKey)">
      <summary>Saves user states from the <see cref="T:System.Windows.Forms.PropertyGrid" /> control to the registry. For a description of this member, see <see cref="M:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.SaveState(Microsoft.Win32.RegistryKey)" />.</summary>
      <param name="key">The registry key that contains the user states.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.AutoScroll">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.BackgroundImage">
      <summary>This property is not relevant for this class.</summary>
      <returns>The background image of the property grid.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.BackgroundImageLayout">
      <summary>This property is not relevant for this class.</summary>
      <returns>The background image layout of the property grid.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.BrowsableAttributes">
      <summary>Gets or sets the browsable attributes associated with the object that the property grid is attached to.</summary>
      <returns>The collection of browsable attributes associated with the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CanShowCommands">
      <summary>Gets a value indicating whether the commands pane can be made visible for the currently selected objects.</summary>
      <returns>
        <see langword="true" /> if the commands pane can be made visible; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CanShowVisualStyleGlyphs">
      <summary>Gets or sets a value that indicates whether OS-specific visual style glyphs are used for the expansion nodes in the grid area.</summary>
      <returns>
        <see langword="true" /> to use the visual style glyphs; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CategoryForeColor">
      <summary>Gets or sets the text color used for category headings.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> structure representing the text color.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CategorySplitterColor">
      <summary>Gets or sets the color of the line that separates categories in the grid area.</summary>
      <returns>The color of the category splitter.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CommandsActiveLinkColor">
      <summary>Gets or sets the color of active links in the executable commands region.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> structure representing the active link color.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CommandsBackColor">
      <summary>Gets or sets the background color of the hot commands region.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values. The default is the default system color for controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CommandsBorderColor">
      <summary>Gets or sets the color of the border surrounding the hot commands region.</summary>
      <returns>The color of the commands border.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CommandsDisabledLinkColor">
      <summary>Gets or sets the unavailable link color for the executable commands region.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> structure representing the unavailable link color.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CommandsForeColor">
      <summary>Gets or sets the foreground color for the hot commands region.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values. The default is the default system color for control text.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CommandsLinkColor">
      <summary>Gets or sets the link color for the executable commands region.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> structure representing the link color for the executable commands region.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CommandsVisible">
      <summary>Gets a value indicating whether the commands pane is visible.</summary>
      <returns>
        <see langword="true" /> if the commands pane is visible; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.CommandsVisibleIfAvailable">
      <summary>Gets or sets a value indicating whether the commands pane is visible for objects that expose verbs.</summary>
      <returns>
        <see langword="true" /> if the commands pane is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.ContextMenuDefaultLocation">
      <summary>Gets the default location for the shortcut menu.</summary>
      <returns>The default location for the shortcut menu if the command is invoked. Typically, this is centered over the selected property.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.Controls">
      <summary>This property is not relevant for this class.</summary>
      <returns>The controls associated with the property grid.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.DefaultTabType">
      <summary>Gets the type of the default tab.</summary>
      <returns>A <see cref="T:System.Type" /> representing the default tab.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.DisabledItemForeColor">
      <summary>Gets or sets the foreground color of disabled text in the grid area.</summary>
      <returns>The foreground color of disabled items.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.DrawFlatToolbar">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.PropertyGrid" /> control paints its toolbar with flat buttons.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.PropertyGrid" /> paints its toolbar with flat buttons; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.ForeColor">
      <summary>This property is not relevant for this class.</summary>
      <returns>The foreground color of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.HelpBackColor">
      <summary>Gets or sets the background color for the Help region.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values. The default is the default system color for controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.HelpBorderColor">
      <summary>Gets or sets the color of the border surrounding the description pane.</summary>
      <returns>The color of the help border.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.HelpForeColor">
      <summary>Gets or sets the foreground color for the Help region.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values. The default is the default system color for control text.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.HelpVisible">
      <summary>Gets or sets a value indicating whether the Help text is visible.</summary>
      <returns>
        <see langword="true" /> if the help text is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.LargeButtons">
      <summary>Gets or sets a value indicating whether buttons appear in standard size or in large size.</summary>
      <returns>
        <see langword="true" /> if buttons on the control appear large; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.LineColor">
      <summary>Gets or sets the color of the gridlines and borders.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values. The default is the default system color for scroll bars.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.Padding">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.PropertySort">
      <summary>Gets or sets the type of sorting the <see cref="T:System.Windows.Forms.PropertyGrid" /> uses to display properties.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.PropertySort" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.PropertySort" /> values. The default is <see cref="F:System.Windows.Forms.PropertySort.Categorized" /> or <see cref="F:System.Windows.Forms.PropertySort.Alphabetical" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.PropertyTabs">
      <summary>Gets the collection of property tabs that are displayed in the grid.</summary>
      <returns>A <see cref="T:System.Windows.Forms.PropertyGrid.PropertyTabCollection" /> containing the collection of <see cref="T:System.Windows.Forms.Design.PropertyTab" /> objects being displayed by the <see cref="T:System.Windows.Forms.PropertyGrid" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.SelectedGridItem">
      <summary>Gets or sets the selected grid item.</summary>
      <returns>The currently selected row in the property grid.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.SelectedItemWithFocusBackColor">
      <summary>Gets or sets the background color of selected items that have the input focus.</summary>
      <returns>The background color of focused, selected items.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.SelectedItemWithFocusForeColor">
      <summary>Gets or sets the foreground color of selected items that have the input focus.</summary>
      <returns>The foreground color of focused, selected items.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.SelectedObject">
      <summary>Gets or sets the object for which the grid displays properties.</summary>
      <returns>The first object in the object list. If there is no currently selected object the return is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.SelectedObjects">
      <summary>Gets or sets the currently selected objects.</summary>
      <exception cref="T:System.ArgumentException">One of the items in the array of objects had a null value.</exception>
      <returns>An array of type <see cref="T:System.Object" />. The default is an empty array.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.SelectedTab">
      <summary>Gets the currently selected property tab.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Design.PropertyTab" /> that is providing the selected view.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.ShowFocusCues">
      <summary>Gets a value indicating whether the control should display focus rectangles.</summary>
      <returns>
        <see langword="true" /> if the control should display focus rectangles; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.ShowPropertyPageImage">
      <summary>Gets the image that represents the property page.</summary>
      <returns>The image that represents the property page.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.Site">
      <summary>Gets or sets the site of the control.</summary>
      <returns>The <see cref="T:System.ComponentModel.ISite" /> associated with the Control, if any.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.SortByCategoryImage">
      <summary>Gets the image that represents sorting grid items by category.</summary>
      <returns>The image that represents sorting by category.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.SortByPropertyImage">
      <summary>Gets the image that represents sorting grid items by property name.</summary>
      <returns>The image that represents sorting by property.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.System#Windows#Forms#ComponentModel#Com2Interop#IComPropertyBrowser#InPropertySet">
      <summary>For a description of this member, see <see cref="P:System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.InPropertySet" />.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.PropertyGrid" /> control is currently setting one of the properties of its selected object; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.ToolbarVisible">
      <summary>Gets or sets a value indicating whether the toolbar is visible.</summary>
      <returns>
        <see langword="true" /> if the toolbar is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.ToolStripRenderer">
      <summary>Gets or sets the painting functionality for <see cref="T:System.Windows.Forms.ToolStrip" /> objects.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripRenderer" /> for the <see cref="T:System.Windows.Forms.PropertyGrid" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.UseCompatibleTextRendering">
      <summary>Gets or sets a value that determines whether to use the <see cref="T:System.Drawing.Graphics" /> class (GDI+) or the <see cref="T:System.Windows.Forms.TextRenderer" /> class (GDI) to render text.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Drawing.Graphics" /> class should be used to perform text rendering for compatibility with versions 1.0 and 1.1. of the .NET Framework; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.ViewBackColor">
      <summary>Gets or sets a value indicating the background color in the grid.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values. The default is the default system color for windows.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.ViewBorderColor">
      <summary>Gets or sets the color of the border surrounding the grid area.</summary>
      <returns>The color of the property grid border.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.ViewForeColor">
      <summary>Gets or sets a value indicating the color of the text in the grid.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values. The default is current system color for text in windows.</returns>
    </member>
    <member name="T:System.Windows.Forms.PropertyGrid.PropertyTabCollection">
      <summary>Contains a collection of <see cref="T:System.Windows.Forms.Design.PropertyTab" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.AddTabType(System.Type)">
      <summary>Adds a Property tab of the specified type to the collection.</summary>
      <param name="propertyTabType">The Property tab type to add to the grid.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.AddTabType(System.Type,System.ComponentModel.PropertyTabScope)">
      <summary>Adds a Property tab of the specified type and with the specified scope to the collection.</summary>
      <param name="propertyTabType">The Property tab type to add to the grid.</param>
      <param name="tabScope">One of the <see cref="T:System.ComponentModel.PropertyTabScope" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.Clear(System.ComponentModel.PropertyTabScope)">
      <summary>Removes all the Property tabs of the specified scope from the collection.</summary>
      <param name="tabScope">The scope of the tabs to clear.</param>
      <exception cref="T:System.ArgumentException">The assigned value of the <paramref name="tabScope" /> parameter is less than the <see langword="Document" /> value of <see cref="T:System.ComponentModel.PropertyTabScope" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.GetEnumerator">
      <summary>Returns an enumeration of all the Property tabs in the collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Windows.Forms.PropertyGrid.PropertyTabCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.RemoveTabType(System.Type)">
      <summary>Removes the specified tab type from the collection.</summary>
      <param name="propertyTabType">The tab type to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyGrid.PropertyTabCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>For a description of this member, see <see cref="M:System.Collections.ICollection.CopyTo(System.Array,System.Int32)" />.</summary>
      <param name="dest">A zero-based array that receives the copied items from the collection.</param>
      <param name="index">The first position in the specified array to receive copied contents.</param>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.PropertyTabCollection.Count">
      <summary>Gets the number of Property tabs in the collection.</summary>
      <returns>The number of Property tabs in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.PropertyTabCollection.Item(System.Int32)">
      <summary>Gets the <see cref="T:System.Windows.Forms.Design.PropertyTab" /> at the specified index.</summary>
      <param name="index">The index of the <see cref="T:System.Windows.Forms.Design.PropertyTab" /> to return.</param>
      <returns>The <see cref="T:System.Windows.Forms.Design.PropertyTab" /> at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.PropertyTabCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized" />.</summary>
      <returns>
        <see langword="true" /> to indicate the list is synchronized; otherwise <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGrid.PropertyTabCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot" />.</summary>
      <returns>An object that can be used to synchronize access to the underlying list.</returns>
    </member>
    <member name="T:System.Windows.Forms.PropertyGridInternal.IRootGridEntry">
      <summary>Defines methods and a property that allow filtering on specific attributes.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGridInternal.IRootGridEntry.ResetBrowsableAttributes">
      <summary>Resets the <see cref="P:System.Windows.Forms.PropertyGridInternal.IRootGridEntry.BrowsableAttributes" /> property to the default value.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGridInternal.IRootGridEntry.ShowCategories(System.Boolean)">
      <summary>Sorts the properties in the property browser.</summary>
      <param name="showCategories">
        <see langword="true" /> to group the properties by category; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.PropertyGridInternal.IRootGridEntry.BrowsableAttributes">
      <summary>Gets or sets the attributes on which the property browser filters.</summary>
      <returns>The attributes on which the property browser filters.</returns>
    </member>
    <member name="T:System.Windows.Forms.PropertyGridInternal.PropertiesTab">
      <summary>Represents the Properties tab on a <see cref="T:System.Windows.Forms.PropertyGrid" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGridInternal.PropertiesTab.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PropertyGridInternal.PropertiesTab" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetDefaultProperty(System.Object)">
      <summary>Gets the default property of the specified component.</summary>
      <param name="obj">The component to retrieve the default property of.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the default property.</returns>
    </member>
    <member name="M:System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
      <summary>Gets the properties of the specified component that match the specified attributes and context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that indicates the context to retrieve properties from.</param>
      <param name="component">The component to retrieve properties from.</param>
      <param name="attributes">An array of type <see cref="T:System.Attribute" /> that indicates the attributes of the properties to retrieve.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the properties matching the specified context and attributes.</returns>
    </member>
    <member name="M:System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetProperties(System.Object,System.Attribute[])">
      <summary>Gets the properties of the specified component that match the specified attributes.</summary>
      <param name="component">The component to retrieve properties from.</param>
      <param name="attributes">An array of type <see cref="T:System.Attribute" /> that indicates the attributes of the properties to retrieve.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that contains the properties.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGridInternal.PropertiesTab.HelpKeyword">
      <summary>Gets the Help keyword that is to be associated with this tab.</summary>
      <returns>The string "vs.properties".</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyGridInternal.PropertiesTab.TabName">
      <summary>Gets the name of the Properties tab.</summary>
      <returns>The string "Properties".</returns>
    </member>
    <member name="T:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands">
      <summary>Contains a set of menu commands used by the designer in Visual Studio.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Commands">
      <summary>Represents the command identifier for the Commands menu item.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Description">
      <summary>Represents the command identifier for the Description menu item.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Hide">
      <summary>Represents the command identifier for the Hide menu item.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Reset">
      <summary>Represents the command identifier for the Reset menu item.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.wfcMenuCommand">
      <summary>Represents the GUID for the internal property browser's command set.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.wfcMenuGroup">
      <summary>Represents the GUID the internal property browser uses to create a shortcut menu.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PropertyGridInternal.PropertyGridCommands" /> class.</summary>
    </member>
    <member name="T:System.Windows.Forms.PropertyManager">
      <summary>Maintains a <see cref="T:System.Windows.Forms.Binding" /> between an object's property and a data-bound control property.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PropertyManager" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.AddNew">
      <summary>Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
      <exception cref="T:System.NotSupportedException">In all cases.</exception>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.CancelCurrentEdit">
      <summary>Cancels the current edit.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.EndCurrentEdit">
      <summary>Ends the current edit.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.GetListName(System.Collections.ArrayList)">
      <summary>Gets the name of the list supplying the data for the binding.</summary>
      <param name="listAccessors">An <see cref="T:System.Collections.ArrayList" /> containing the table's bound properties.</param>
      <returns>Always returns an empty string.</returns>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.OnCurrentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingManagerBase.CurrentChanged" /> event.</summary>
      <param name="ea">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.OnCurrentItemChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.BindingManagerBase.CurrentItemChanged" /> event.</summary>
      <param name="ea">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.RemoveAt(System.Int32)">
      <summary>Throws a <see cref="T:System.NotSupportedException" /> in all cases.</summary>
      <param name="index">The index of the row to delete.</param>
      <exception cref="T:System.NotSupportedException">In all cases.</exception>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.ResumeBinding">
      <summary>Resumes data binding.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.SuspendBinding">
      <summary>Suspends the data binding between a data source and a data-bound property.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyManager.UpdateIsBinding">
      <summary>Updates the current <see cref="T:System.Windows.Forms.Binding" /> between a data binding and a data-bound property.</summary>
    </member>
    <member name="P:System.Windows.Forms.PropertyManager.Count">
      <summary>Gets the number of rows managed by the <see cref="T:System.Windows.Forms.BindingManagerBase" />.</summary>
      <returns>Always returns 1.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyManager.Current">
      <summary>Gets the object to which the data-bound property belongs.</summary>
      <returns>An object that represents the object to which the property belongs.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyManager.Position">
      <summary>Gets the position in the underlying list that controls bound to this data source point to.</summary>
      <returns>Always returns 0.</returns>
    </member>
    <member name="T:System.Windows.Forms.PropertySort">
      <summary>Specifies how properties are sorted in the <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertySort.Alphabetical">
      <summary>Properties are sorted in an alphabetical list.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertySort.Categorized">
      <summary>Properties are displayed according to their category in a group. The categories are defined by the properties themselves.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertySort.CategorizedAlphabetical">
      <summary>Properties are displayed according to their category in a group. The properties are further sorted alphabetically within the group. The categories are defined by the properties themselves.</summary>
    </member>
    <member name="F:System.Windows.Forms.PropertySort.NoSort">
      <summary>Properties are displayed in the order in which they are retrieved from the <see cref="T:System.ComponentModel.TypeDescriptor" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.PropertyTabChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.PropertyGrid.PropertyTabChanged" /> event of a <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyTabChangedEventArgs.#ctor(System.Windows.Forms.Design.PropertyTab,System.Windows.Forms.Design.PropertyTab)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PropertyTabChangedEventArgs" /> class.</summary>
      <param name="oldTab">The Previously selected property tab.</param>
      <param name="newTab">The newly selected property tab.</param>
    </member>
    <member name="P:System.Windows.Forms.PropertyTabChangedEventArgs.NewTab">
      <summary>Gets the new <see cref="T:System.Windows.Forms.Design.PropertyTab" /> selected.</summary>
      <returns>The newly selected <see cref="T:System.Windows.Forms.Design.PropertyTab" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyTabChangedEventArgs.OldTab">
      <summary>Gets the old <see cref="T:System.Windows.Forms.Design.PropertyTab" /> selected.</summary>
      <returns>The old <see cref="T:System.Windows.Forms.Design.PropertyTab" /> that was selected.</returns>
    </member>
    <member name="T:System.Windows.Forms.PropertyTabChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.PropertyGrid.PropertyTabChanged" /> event of a <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
      <param name="s">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.PropertyTabChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.PropertyValueChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.PropertyGrid.PropertyValueChanged" /> event of a <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.PropertyValueChangedEventArgs.#ctor(System.Windows.Forms.GridItem,System.Object)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.PropertyValueChangedEventArgs" /> class.</summary>
      <param name="changedItem">The item in the grid that changed.</param>
      <param name="oldValue">The old property value.</param>
    </member>
    <member name="P:System.Windows.Forms.PropertyValueChangedEventArgs.ChangedItem">
      <summary>Gets the <see cref="T:System.Windows.Forms.GridItem" /> that was changed.</summary>
      <returns>A <see cref="T:System.Windows.Forms.GridItem" /> in the <see cref="T:System.Windows.Forms.PropertyGrid" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.PropertyValueChangedEventArgs.OldValue">
      <summary>The value of the grid item before it was changed.</summary>
      <returns>A object representing the old value of the property.</returns>
    </member>
    <member name="T:System.Windows.Forms.PropertyValueChangedEventHandler">
      <summary>The event handler class that is invoked when a property in the grid is modified by the user.</summary>
      <param name="s">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.PropertyValueChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.QueryAccessibilityHelpEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.QueryAccessibilityHelp" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.QueryAccessibilityHelpEventArgs.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.QueryAccessibilityHelpEventArgs" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.QueryAccessibilityHelpEventArgs.#ctor(System.String,System.String,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.QueryAccessibilityHelpEventArgs" /> class.</summary>
      <param name="helpNamespace">The file containing Help for the <see cref="T:System.Windows.Forms.AccessibleObject" />.</param>
      <param name="helpString">The string defining what Help to get for the <see cref="T:System.Windows.Forms.AccessibleObject" />.</param>
      <param name="helpKeyword">The keyword to associate with the Help request for the <see cref="T:System.Windows.Forms.AccessibleObject" />.</param>
    </member>
    <member name="P:System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpKeyword">
      <summary>Gets or sets the Help keyword for the specified control.</summary>
      <returns>The Help topic associated with the <see cref="T:System.Windows.Forms.AccessibleObject" /> that was queried.</returns>
    </member>
    <member name="P:System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpNamespace">
      <summary>Gets or sets a value specifying the name of the Help file.</summary>
      <returns>The name of the Help file. This name can be in the form C:\path\sample.chm or /folder/file.htm.</returns>
    </member>
    <member name="P:System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpString">
      <summary>Gets or sets the string defining what Help to get for the <see cref="T:System.Windows.Forms.AccessibleObject" />.</summary>
      <returns>The Help to retrieve for the accessible object.</returns>
    </member>
    <member name="T:System.Windows.Forms.QueryAccessibilityHelpEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.QueryAccessibilityHelp" /> event of a control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.QueryAccessibilityHelpEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.QueryContinueDragEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.QueryContinueDragEventArgs.#ctor(System.Int32,System.Boolean,System.Windows.Forms.DragAction)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" /> class.</summary>
      <param name="keyState">The current state of the SHIFT, CTRL, and ALT keys.</param>
      <param name="escapePressed">
        <see langword="true" /> if the ESC key was pressed; otherwise, <see langword="false" />.</param>
      <param name="action">A <see cref="T:System.Windows.Forms.DragAction" /> value.</param>
    </member>
    <member name="P:System.Windows.Forms.QueryContinueDragEventArgs.Action">
      <summary>Gets or sets the status of a drag-and-drop operation.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DragAction" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.QueryContinueDragEventArgs.EscapePressed">
      <summary>Gets whether the user pressed the ESC key.</summary>
      <returns>
        <see langword="true" /> if the ESC key was pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.QueryContinueDragEventArgs.KeyState">
      <summary>Gets the current state of the SHIFT, CTRL, and ALT keys.</summary>
      <returns>The current state of the SHIFT, CTRL, and ALT keys.</returns>
    </member>
    <member name="T:System.Windows.Forms.QueryContinueDragEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Control.QueryContinueDrag" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of an event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.QuestionEventArgs">
      <summary>Provides data for events that need a <see langword="true" /> or <see langword="false" /> answer to a question.</summary>
    </member>
    <member name="M:System.Windows.Forms.QuestionEventArgs.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.QuestionEventArgs" /> class using a default <see cref="P:System.Windows.Forms.QuestionEventArgs.Response" /> property value of <see langword="false" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.QuestionEventArgs.#ctor(System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.QuestionEventArgs" /> class using the specified default value for the <see cref="P:System.Windows.Forms.QuestionEventArgs.Response" /> property.</summary>
      <param name="response">The default value of the <see cref="P:System.Windows.Forms.QuestionEventArgs.Response" /> property.</param>
    </member>
    <member name="P:System.Windows.Forms.QuestionEventArgs.Response">
      <summary>Gets or sets a value indicating the response to a question represented by the event.</summary>
      <returns>
        <see langword="true" /> for an affirmative response; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.QuestionEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.DataGridView.CancelRowEdit" /> event or the <see cref="E:System.Windows.Forms.DataGridView.RowDirtyStateNeeded" /> event of a <see cref="T:System.Windows.Forms.DataGridView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.QuestionEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.RadioButton">
      <summary>Enables the user to select a single option from a group of choices when paired with other <see cref="T:System.Windows.Forms.RadioButton" /> controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.RadioButton.AppearanceChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.RadioButton.Appearance" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.RadioButton.CheckedChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.RadioButton.DoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.RadioButton" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.RadioButton.MouseDoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.RadioButton" /> control with the mouse.</summary>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.RadioButton" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.RadioButton" /> control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.OnCheckedChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.CheckBox.CheckedChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.OnClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.OnEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Enter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.OnHandleCreated(System.EventArgs)">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.OnHandleCreated(System.EventArgs)" /> method.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="mevent">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.PerformClick">
      <summary>Generates a <see cref="E:System.Windows.Forms.Control.Click" /> event for the control, simulating a click by a user.</summary>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.ProcessMnemonic(System.Char)">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.ProcessMnemonic(System.Char)" /> method.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was successfully processed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.RescaleConstantsForDpi(System.Int32,System.Int32)">
      <summary>Provides constants for rescaling the <see cref="T:System.Windows.Forms.RadioButton" /> control when a DPI change occurs.</summary>
      <param name="deviceDpiOld">The DPI value prior to the change.</param>
      <param name="deviceDpiNew">The DPI value after the change.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.ToString">
      <summary>Overrides the <see cref="M:System.ComponentModel.Component.ToString" /> method.</summary>
      <returns>A string representation of the <see cref="T:System.Windows.Forms.RadioButton" /> that indicates whether it is checked.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.Appearance">
      <summary>Gets or sets a value determining the appearance of the <see cref="T:System.Windows.Forms.RadioButton" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.Appearance" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.Appearance" /> values. The default value is <see cref="F:System.Windows.Forms.Appearance.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.AutoCheck">
      <summary>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> value and the appearance of the control automatically change when the control is clicked.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> value and the appearance of the control automatically change on the <see cref="E:System.Windows.Forms.Control.Click" /> event; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.CheckAlign">
      <summary>Gets or sets the location of the check box portion of the <see cref="T:System.Windows.Forms.RadioButton" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Drawing.ContentAlignment" /> values.</exception>
      <returns>One of the valid <see cref="T:System.Drawing.ContentAlignment" /> values. The default value is <see cref="F:System.Drawing.ContentAlignment.MiddleLeft" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.Checked">
      <summary>Gets or sets a value indicating whether the control is checked.</summary>
      <returns>
        <see langword="true" /> if the check box is checked; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>Returns a <see cref="T:System.Drawing.Size" /> with a <see cref="P:System.Drawing.Size.Width" /> of 104 and a <see cref="P:System.Drawing.Size.Height" /> of 24.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.TabStop">
      <summary>Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.</summary>
      <returns>
        <see langword="true" /> if the user can give focus to this control using the TAB key; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.TextAlign">
      <summary>Gets or sets the alignment of the text on the <see cref="T:System.Windows.Forms.RadioButton" /> control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Drawing.ContentAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default is <see cref="F:System.Drawing.ContentAlignment.MiddleLeft" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject">
      <summary>Provides information about the <see cref="T:System.Windows.Forms.RadioButton" /> control to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.#ctor(System.Windows.Forms.RadioButton)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.RadioButton" /> that this object provides information for.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.DoDefaultAction">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event.</summary>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.DefaultAction">
      <summary>Gets a string that describes the default action of the <see cref="T:System.Windows.Forms.RadioButton" /> control.</summary>
      <returns>A description of the default action of the <see cref="T:System.Windows.Forms.RadioButton" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.KeyboardShortcut" />
    <member name="P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.Name" />
    <member name="P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.RadioButton" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.State">
      <summary>Gets the state of the <see cref="T:System.Windows.Forms.RadioButton" /> control.</summary>
      <returns>If the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> property is set to true, returns <see cref="F:System.Windows.Forms.AccessibleStates.Checked" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.RadioButtonRenderer">
      <summary>Provides methods used to render an option button control (also known as a radio button) with or without visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.RadioButtonRenderer.DrawParentBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.Control)">
      <summary>Draws the background of a control's parent in the specified area.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the background of the parent of <paramref name="childControl" />.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> in which to draw the parent control's background. This rectangle should be inside the child control's bounds.</param>
      <param name="childControl">The control whose parent's background will be drawn.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Boolean,System.Windows.Forms.VisualStyles.RadioButtonState)">
      <summary>Draws an option button control (also known as a radio button) in the specified state and location, with the specified text, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the option button.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the option button glyph at.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="radioButtonText" /> in.</param>
      <param name="radioButtonText">The <see cref="T:System.String" /> to draw with the option button.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="radioButtonText" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.RadioButtonState" /> values that specifies the visual state of the option button.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.RadioButtonState)">
      <summary>Draws an option button control (also known as a radio button) in the specified state and location, with the specified text and image, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the option button.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the option button glyph at.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="radioButtonText" /> in.</param>
      <param name="radioButtonText">The <see cref="T:System.String" /> to draw with the option button.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="radioButtonText" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw with the option button.</param>
      <param name="imageBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="image" /> in.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.RadioButtonState" /> values that specifies the visual state of the option button.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Boolean,System.Windows.Forms.VisualStyles.RadioButtonState)">
      <summary>Draws an option button control (also known as a radio button) in the specified state and location, with the specified text and text formatting, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the option button.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the option button glyph at.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="radioButtonText" /> in.</param>
      <param name="radioButtonText">The <see cref="T:System.String" /> to draw with the option button.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="radioButtonText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.RadioButtonState" /> values that specifies the visual state of the option button.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.RadioButtonState)">
      <summary>Draws an option button control (also known as a radio button) in the specified state and location; with the specified text, text formatting, and image; and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the option button.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the option button glyph at.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="radioButtonText" /> in.</param>
      <param name="radioButtonText">The <see cref="T:System.String" /> to draw with the option button.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="radioButtonText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw with the option button.</param>
      <param name="imageBounds">The <see cref="T:System.Drawing.Rectangle" /> to draw <paramref name="image" /> in.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.RadioButtonState" /> values that specifies the visual state of the option button.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics,System.Drawing.Point,System.Windows.Forms.VisualStyles.RadioButtonState)">
      <summary>Draws an option button control (also known as a radio button) in the specified state and location.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the option button.</param>
      <param name="glyphLocation">The <see cref="T:System.Drawing.Point" /> to draw the option button glyph at.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.RadioButtonState" /> values that specifies the visual state of the option button.</param>
    </member>
    <member name="M:System.Windows.Forms.RadioButtonRenderer.GetGlyphSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.RadioButtonState)">
      <summary>Returns the size, in pixels, of the option button (also known as a radio button) glyph.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the option button.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.RadioButtonState" /> values that specifies the visual state of the option button.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the size, in pixels, of the option button glyph.</returns>
    </member>
    <member name="M:System.Windows.Forms.RadioButtonRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.RadioButtonState)">
      <summary>Indicates whether the background of the option button (also known as a radio button) has semitransparent or alpha-blended pieces.</summary>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.RadioButtonState" /> values that specifies the visual state of the option button.</param>
      <returns>
        <see langword="true" /> if the background of the option button has semitransparent or alpha-blended pieces; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RadioButtonRenderer.RenderMatchingApplicationState">
      <summary>Gets or sets a value indicating whether the renderer uses the application state to determine rendering style.</summary>
      <returns>
        <see langword="true" /> if the application state is used to determine rendering style; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.RelatedImageListAttribute">
      <summary>Indicates which <see cref="T:System.Windows.Forms.ImageList" /> a property is related to.</summary>
    </member>
    <member name="M:System.Windows.Forms.RelatedImageListAttribute.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.RelatedImageListAttribute" /> class.</summary>
      <param name="relatedImageList">The name of the <see cref="T:System.Windows.Forms.ImageList" /> the property relates to.</param>
    </member>
    <member name="P:System.Windows.Forms.RelatedImageListAttribute.RelatedImageList">
      <summary>Gets the name of the related <see cref="T:System.Windows.Forms.ImageList" />.</summary>
      <returns>The name of the related <see cref="T:System.Windows.Forms.ImageList" /></returns>
    </member>
    <member name="T:System.Windows.Forms.RetrieveVirtualItemEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.RetrieveVirtualItem" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.RetrieveVirtualItemEventArgs.#ctor(System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.RetrieveVirtualItemEventArgs" /> class.</summary>
      <param name="itemIndex">The index of the item to retrieve.</param>
    </member>
    <member name="P:System.Windows.Forms.RetrieveVirtualItemEventArgs.Item">
      <summary>Gets or sets the item retrieved from the cache.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ListViewItem" /> retrieved from the cache.</returns>
    </member>
    <member name="P:System.Windows.Forms.RetrieveVirtualItemEventArgs.ItemIndex">
      <summary>Gets the index of the item to retrieve from the cache.</summary>
      <returns>The index of the item to retrieve from the cache.</returns>
    </member>
    <member name="T:System.Windows.Forms.RetrieveVirtualItemEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.RetrieveVirtualItem" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.RetrieveVirtualItemEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Windows.Forms.RetrieveVirtualItemEventArgs.Item" /> property is not set to an item when the <see cref="E:System.Windows.Forms.ListView.RetrieveVirtualItem" /> event is handled.</exception>
    </member>
    <member name="T:System.Windows.Forms.RichTextBox">
      <summary>Represents a Windows rich text box control.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.RichTextBox.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.RichTextBox.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.ContentsResized">
      <summary>Occurs when contents within the control are resized.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.DragDrop">
      <summary>Occurs when the user completes a drag-and-drop.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.DragEnter">
      <summary>Occurs when an object is dragged into the control's bounds.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.DragLeave">
      <summary>Occurs when an object is dragged out of the control's bounds.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.DragOver">
      <summary>Occurs when an object is dragged over the control's bounds.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.GiveFeedback">
      <summary>Occurs during a drag operation.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.HScroll">
      <summary>Occurs when the user clicks the horizontal scroll bar of the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.ImeChange">
      <summary>Occurs when the user switches input methods on an Asian version of the Windows operating system.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.LinkClicked">
      <summary>Occurs when the user clicks on a link within the text of the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.Protected">
      <summary>Occurs when the user attempts to modify protected text in the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.QueryContinueDrag">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.SelectionChanged">
      <summary>Occurs when the selection of text within the control has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.RichTextBox.VScroll">
      <summary>Occurs when the user clicks the vertical scroll bars of the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.RichTextBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.CanPaste(System.Windows.Forms.DataFormats.Format)">
      <summary>Determines whether you can paste information from the Clipboard in the specified data format.</summary>
      <param name="clipFormat">One of the <see cref="T:System.Windows.Forms.DataFormats.Format" /> values.</param>
      <returns>
        <see langword="true" /> if you can paste data from the Clipboard in the specified data format; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.RichTextBox.CreateRichEditOleCallback">
      <summary>Creates an <see langword="IRichEditOleCallback" />-compatible object for handling rich-edit callback operations.</summary>
      <returns>An object that implements the <see langword="IRichEditOleCallback" /> interface.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)">
      <summary>This method is not relevant for this class.</summary>
      <param name="bitmap">A <see cref="T:System.Drawing.Bitmap" />.</param>
      <param name="targetBounds">A <see cref="T:System.Drawing.Rectangle" />.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.Find(System.Char[])">
      <summary>Searches the text of a <see cref="T:System.Windows.Forms.RichTextBox" /> control for the first instance of a character from a list of characters.</summary>
      <param name="characterSet">The array of characters to search for.</param>
      <returns>The location within the control where the search characters were found or -1 if the search characters are not found or an empty search character set is specified in the <paramref name="char" /> parameter.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.Find(System.Char[],System.Int32)">
      <summary>Searches the text of a <see cref="T:System.Windows.Forms.RichTextBox" /> control, at a specific starting point, for the first instance of a character from a list of characters.</summary>
      <param name="characterSet">The array of characters to search for.</param>
      <param name="start">The location within the control's text at which to begin searching.</param>
      <returns>The location within the control where the search characters are found.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.Find(System.Char[],System.Int32,System.Int32)">
      <summary>Searches a range of text in a <see cref="T:System.Windows.Forms.RichTextBox" /> control for the first instance of a character from a list of characters.</summary>
      <param name="characterSet">The array of characters to search for.</param>
      <param name="start">The location within the control's text at which to begin searching.</param>
      <param name="end">The location within the control's text at which to end searching.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="characterSet" /> is null.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="start" /> is less than 0 or greater than the length of the text in the control.</exception>
      <returns>The location within the control where the search characters are found.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.Find(System.String)">
      <summary>Searches the text in a <see cref="T:System.Windows.Forms.RichTextBox" /> control for a string.</summary>
      <param name="str">The text to locate in the control.</param>
      <returns>The location within the control where the search text was found or -1 if the search string is not found or an empty search string is specified in the <paramref name="str" /> parameter.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.Find(System.String,System.Int32,System.Int32,System.Windows.Forms.RichTextBoxFinds)">
      <summary>Searches the text in a <see cref="T:System.Windows.Forms.RichTextBox" /> control for a string within a range of text within the control and with specific options applied to the search.</summary>
      <param name="str">The text to locate in the control.</param>
      <param name="start">The location within the control's text at which to begin searching.</param>
      <param name="end">The location within the control's text at which to end searching. This value must be equal to negative one (-1) or greater than or equal to the <paramref name="start" /> parameter.</param>
      <param name="options">A bitwise combination of the <see cref="T:System.Windows.Forms.RichTextBoxFinds" /> values.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="str" /> parameter was <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The <paramref name="start" /> parameter was less than zero.

-or-
        
The <paramref name="end" /> parameter was less the <paramref name="start" /> parameter.</exception>
      <returns>The location within the control where the search text was found.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.Find(System.String,System.Int32,System.Windows.Forms.RichTextBoxFinds)">
      <summary>Searches the text in a <see cref="T:System.Windows.Forms.RichTextBox" /> control for a string at a specific location within the control and with specific options applied to the search.</summary>
      <param name="str">The text to locate in the control.</param>
      <param name="start">The location within the control's text at which to begin searching.</param>
      <param name="options">A bitwise combination of the <see cref="T:System.Windows.Forms.RichTextBoxFinds" /> values.</param>
      <returns>The location within the control where the search text was found.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.Find(System.String,System.Windows.Forms.RichTextBoxFinds)">
      <summary>Searches the text in a <see cref="T:System.Windows.Forms.RichTextBox" /> control for a string with specific options applied to the search.</summary>
      <param name="str">The text to locate in the control.</param>
      <param name="options">A bitwise combination of the <see cref="T:System.Windows.Forms.RichTextBoxFinds" /> values.</param>
      <returns>The location within the control where the search text was found.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.GetCharIndexFromPosition(System.Drawing.Point)">
      <summary>Retrieves the index of the character nearest to the specified location.</summary>
      <param name="pt">The location to search.</param>
      <returns>The zero-based character index at the specified location.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.GetLineFromCharIndex(System.Int32)">
      <summary>Retrieves the line number from the specified character position within the text of the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <param name="index">The character index position to search.</param>
      <returns>The zero-based line number in which the character index is located.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.GetPositionFromCharIndex(System.Int32)">
      <summary>Retrieves the location within the control at the specified character index.</summary>
      <param name="index">The index of the character for which to retrieve the location.</param>
      <returns>The location of the specified character.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.LoadFile(System.IO.Stream,System.Windows.Forms.RichTextBoxStreamType)">
      <summary>Loads the contents of an existing data stream into the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <param name="data">A stream of data to load into the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</param>
      <param name="fileType">One of the <see cref="T:System.Windows.Forms.RichTextBoxStreamType" /> values.</param>
      <exception cref="T:System.IO.IOException">An error occurred while loading the file into the control.</exception>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: The <paramref name="data" /> argument is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">The file being loaded is not an RTF document.</exception>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.LoadFile(System.String)">
      <summary>Loads a rich text format (RTF) or standard ASCII text file into the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <param name="path">The name and location of the file to load into the control.</param>
      <exception cref="T:System.IO.IOException">An error occurred while loading the file into the control.</exception>
      <exception cref="T:System.ArgumentException">The file being loaded is not an RTF document.</exception>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.LoadFile(System.String,System.Windows.Forms.RichTextBoxStreamType)">
      <summary>Loads a specific type of file into the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <param name="path">The name and location of the file to load into the control.</param>
      <param name="fileType">One of the <see cref="T:System.Windows.Forms.RichTextBoxStreamType" /> values.</param>
      <exception cref="T:System.IO.IOException">An error occurred while loading the file into the control.</exception>
      <exception cref="T:System.ArgumentException">The file being loaded is not an RTF document.</exception>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnContentsResized(System.Windows.Forms.ContentsResizedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.RichTextBox.ContentsResized" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ContentsResizedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnGotFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnHScroll(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.RichTextBox.HScroll" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnImeChange(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.RichTextBox.ImeChange" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnLinkClicked(System.Windows.Forms.LinkClickedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.RichTextBox.LinkClicked" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LinkClickedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnProtected(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.RichTextBox.Protected" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnSelectionChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.RichTextBox.SelectionChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.OnVScroll(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.RichTextBox.VScroll" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.Paste(System.Windows.Forms.DataFormats.Format)">
      <summary>Pastes the contents of the Clipboard in the specified Clipboard format.</summary>
      <param name="clipFormat">The Clipboard format in which the data should be obtained from the Clipboard.</param>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.Redo">
      <summary>Reapplies the last operation that was undone in the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.SaveFile(System.IO.Stream,System.Windows.Forms.RichTextBoxStreamType)">
      <summary>Saves the contents of a <see cref="T:System.Windows.Forms.RichTextBox" /> control to an open data stream.</summary>
      <param name="data">The data stream that contains the file to save to.</param>
      <param name="fileType">One of the <see cref="T:System.Windows.Forms.RichTextBoxStreamType" /> values.</param>
      <exception cref="T:System.ArgumentException">An invalid file type is specified in the <paramref name="fileType" /> parameter.</exception>
      <exception cref="T:System.IO.IOException">An error occurs in saving the contents of the control to a file.</exception>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.SaveFile(System.String)">
      <summary>Saves the contents of the <see cref="T:System.Windows.Forms.RichTextBox" /> to a rich text format (RTF) file.</summary>
      <param name="path">The name and location of the file to save.</param>
      <exception cref="T:System.IO.IOException">An error occurs in saving the contents of the control to a file.</exception>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.SaveFile(System.String,System.Windows.Forms.RichTextBoxStreamType)">
      <summary>Saves the contents of the <see cref="T:System.Windows.Forms.RichTextBox" /> to a specific type of file.</summary>
      <param name="path">The name and location of the file to save.</param>
      <param name="fileType">One of the <see cref="T:System.Windows.Forms.RichTextBoxStreamType" /> values.</param>
      <exception cref="T:System.ArgumentException">An invalid file type is specified in the <paramref name="fileType" /> parameter.</exception>
      <exception cref="T:System.IO.IOException">An error occurs in saving the contents of the control to a file.</exception>
    </member>
    <member name="M:System.Windows.Forms.RichTextBox.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">A Windows Message object.</param>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.AllowDrop">
      <summary>Gets or sets a value indicating whether the control will enable drag-and-drop operations.</summary>
      <returns>
        <see langword="true" /> if drag-and-drop is enabled in the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.AutoSize">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.AutoWordSelection">
      <summary>Gets or sets a value indicating whether automatic word selection is enabled.</summary>
      <returns>
        <see langword="true" /> if automatic word selection is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.BackgroundImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>The background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.BackgroundImageLayout">
      <summary>This property is not relevant to this class.</summary>
      <returns>The layout of the background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.BulletIndent">
      <summary>Gets or sets the indentation used in the <see cref="T:System.Windows.Forms.RichTextBox" /> control when the bullet style is applied to the text.</summary>
      <exception cref="T:System.ArgumentException">The specified indentation was less than zero.</exception>
      <returns>The number of pixels inserted as the indentation after a bullet. The default is zero.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.CanRedo">
      <summary>Gets a value indicating whether there are actions that have occurred within the <see cref="T:System.Windows.Forms.RichTextBox" /> that can be reapplied.</summary>
      <returns>
        <see langword="true" /> if there are operations that have been undone that can be reapplied to the content of the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.DetectUrls">
      <summary>Gets or sets a value indicating whether or not the <see cref="T:System.Windows.Forms.RichTextBox" /> will automatically format a Uniform Resource Locator (URL) when it is typed into the control.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.RichTextBox" /> will automatically format URLs that are typed into the control as a link; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.EnableAutoDragDrop">
      <summary>Gets or sets a value that enables drag-and-drop operations on text, pictures, and other data.</summary>
      <returns>
        <see langword="true" /> to enable drag-and-drop operations; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.Font">
      <summary>Gets or sets the font of the text displayed by the control.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.ForeColor">
      <summary>Gets or sets the foreground color of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the control's foreground color.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.LanguageOption">
      <summary>Gets or sets a value that indicates <see cref="T:System.Windows.Forms.RichTextBox" /> settings for Input Method Editor (IME) and Asian language support.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.RichTextBoxLanguageOptions" /> values. The default is <see cref="F:System.Windows.Forms.RichTextBoxLanguageOptions.AutoFontSizeAdjust" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.MaxLength">
      <summary>Gets or sets the maximum number of characters the user can type or paste into the rich text box control.</summary>
      <exception cref="T:System.ArgumentException">The value assigned to the property is less than 0.</exception>
      <returns>The number of characters that can be entered into the control. The default is <see cref="F:System.Int32.MaxValue">Int32.MaxValue</see>.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.Multiline">
      <summary>Gets or sets a value indicating whether this is a multiline <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <returns>
        <see langword="true" /> if the control is a multiline <see cref="T:System.Windows.Forms.RichTextBox" /> control; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.RedoActionName">
      <summary>Gets the name of the action that can be reapplied to the control when the <see cref="M:System.Windows.Forms.RichTextBox.Redo" /> method is called.</summary>
      <returns>A string that represents the name of the action that will be performed when a call to the <see cref="M:System.Windows.Forms.RichTextBox.Redo" /> method is made.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.RichTextShortcutsEnabled">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> if shortcut keys are enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.RightMargin">
      <summary>Gets or sets the size of a single line of text within the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <exception cref="T:System.ArgumentException">The specified value was less than zero.</exception>
      <returns>The size, in pixels, of a single line of text in the control. The default is zero.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.Rtf">
      <summary>Gets or sets the text of the <see cref="T:System.Windows.Forms.RichTextBox" /> control, including all rich text format (RTF) codes.</summary>
      <returns>The text of the control in RTF format.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.ScrollBars">
      <summary>Gets or sets the type of scroll bars to display in the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not defined in the <see cref="T:System.Windows.Forms.RichTextBoxScrollBars" /> enumeration.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.RichTextBoxScrollBars" /> values. The default is <see langword="RichTextBoxScrollBars.Both" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectedRtf">
      <summary>Gets or sets the currently selected rich text format (RTF) formatted text in the control.</summary>
      <returns>The selected RTF text in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectedText">
      <summary>Gets or sets the selected text within the <see cref="T:System.Windows.Forms.RichTextBox" />.</summary>
      <returns>A string that represents the selected text in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionAlignment">
      <summary>Gets or sets the alignment to apply to the current selection or insertion point.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the values defined in the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> class.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionBackColor">
      <summary>Gets or sets the color of text when the text is selected in a <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the text color when the text is selected. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionBullet">
      <summary>Gets or sets a value indicating whether the bullet style is applied to the current selection or insertion point.</summary>
      <returns>
        <see langword="true" /> if the current selection or insertion point has the bullet style applied; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionCharOffset">
      <summary>Gets or sets whether text in the control appears on the baseline, as a superscript, or as a subscript below the baseline.</summary>
      <exception cref="T:System.ArgumentException">The specified value was less than -2000 or greater than 2000.</exception>
      <returns>A number that specifies the character offset.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionColor">
      <summary>Gets or sets the text color of the current text selection or insertion point.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color to apply to the current text selection or to text entered after the insertion point.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionFont">
      <summary>Gets or sets the font of the current text selection or insertion point.</summary>
      <returns>A <see cref="T:System.Drawing.Font" /> that represents the font to apply to the current text selection or to text entered after the insertion point.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionHangingIndent">
      <summary>Gets or sets the distance between the left edge of the first line of text in the selected paragraph and the left edge of subsequent lines in the same paragraph.</summary>
      <returns>The distance, in pixels, for the hanging indent applied to the current text selection or the insertion point.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionIndent">
      <summary>Gets or sets the length, in pixels, of the indentation of the line where the selection starts.</summary>
      <returns>The current distance, in pixels, of the indentation applied to the left of the current text selection or the insertion point.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionLength">
      <summary>Gets or sets the number of characters selected in control.</summary>
      <returns>The number of characters selected in the text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionProtected">
      <summary>Gets or sets a value indicating whether the current text selection is protected.</summary>
      <returns>
        <see langword="true" /> if the current selection prevents any changes to its content; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionRightIndent">
      <summary>The distance (in pixels) between the right edge of the <see cref="T:System.Windows.Forms.RichTextBox" /> control and the right edge of the text that is selected or added at the current insertion point.</summary>
      <returns>The indentation space, in pixels, at the right of the current selection or insertion point.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionTabs">
      <summary>Gets or sets the absolute tab stop positions in a <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The array has more than the maximum 32 elements.</exception>
      <returns>An array in which each member specifies a tab offset, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.SelectionType">
      <summary>Gets the selection type within the control.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.RichTextBoxSelectionTypes" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.ShowSelectionMargin">
      <summary>Gets or sets a value indicating whether a selection margin is displayed in the <see cref="T:System.Windows.Forms.RichTextBox" />.</summary>
      <returns>
        <see langword="true" /> if a selection margin is enabled in the control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.Text">
      <summary>Gets or sets the current text in the rich text box.</summary>
      <returns>The text displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.TextLength">
      <summary>Gets the length of text in the control.</summary>
      <returns>The number of characters contained in the text of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.UndoActionName">
      <summary>Gets the name of the action that can be undone in the control when the <see cref="M:System.Windows.Forms.TextBoxBase.Undo" /> method is called.</summary>
      <returns>The text name of the action that can be undone.</returns>
    </member>
    <member name="P:System.Windows.Forms.RichTextBox.ZoomFactor">
      <summary>Gets or sets the current zoom level of the <see cref="T:System.Windows.Forms.RichTextBox" />.</summary>
      <exception cref="T:System.ArgumentException">The specified zoom factor did not fall within the permissible range.</exception>
      <returns>The factor by which the contents of the control is zoomed.</returns>
    </member>
    <member name="T:System.Windows.Forms.RichTextBoxFinds">
      <summary>Specifies how a text search is carried out in a <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxFinds.MatchCase">
      <summary>Locate only instances of the search text that have the exact casing.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxFinds.NoHighlight">
      <summary>The search text, if found, should not be highlighted.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxFinds.None">
      <summary>Locate all instances of the search text, whether the instances found in the search are whole words or not.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxFinds.Reverse">
      <summary>The search starts at the end of the control's document and searches to the beginning of the document.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxFinds.WholeWord">
      <summary>Locate only instances of the search text that are whole words.</summary>
    </member>
    <member name="T:System.Windows.Forms.RichTextBoxLanguageOptions">
      <summary>Provides <see cref="T:System.Windows.Forms.RichTextBox" /> settings for Input Method Editor (IME) and Asian language support.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxLanguageOptions.AutoFont">
      <summary>Specifies that the control automatically changes fonts when the user explicitly changes to a different keyboard layout.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxLanguageOptions.AutoFontSizeAdjust">
      <summary>Specifies that font-bound font sizes are scaled from the insertion point size according to a script. For example, Asian fonts are slightly larger than Western fonts. This is the default.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxLanguageOptions.AutoKeyboard">
      <summary>Specifies that the <see cref="T:System.Windows.Forms.RichTextBox" /> control automatically changes the keyboard layout when the user explicitly changes to a different font, or when the user explicitly changes the insertion point to a new location in the text.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxLanguageOptions.DualFont">
      <summary>Sets the control to dual-font mode. Used for Asian language text. The <see cref="T:System.Windows.Forms.RichTextBox" /> control uses an English font for ASCII text and an Asian font for Asian text.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxLanguageOptions.ImeAlwaysSendNotify">
      <summary>Specifies how the client is notified during IME composition. A setting of 0 specifies that no EN_CHANGE or EN_SELCHANGE events occur during an undetermined state. Notification is sent when the final string comes in. This is the default. A setting of 1 specifies that EN_CHANGE and EN_SELCHANGE events occur during an undetermined state.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxLanguageOptions.ImeCancelComplete">
      <summary>Specifies how the control uses the composition string of an Input Method Editor (IME) if the user cancels it. If this flag is set, the control discards the composition string. If this flag is not set, the control uses the composition string as the result string.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxLanguageOptions.UIFonts">
      <summary>Specifies that user-interface default fonts be used. This option is turned off by default.</summary>
    </member>
    <member name="T:System.Windows.Forms.RichTextBoxScrollBars">
      <summary>Specifies the type of scroll bars to display in a <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxScrollBars.Both">
      <summary>Display both a horizontal and a vertical scroll bar when needed.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxScrollBars.ForcedBoth">
      <summary>Always display both a horizontal and a vertical scroll bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxScrollBars.ForcedHorizontal">
      <summary>Always display a horizontal scroll bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical">
      <summary>Always display a vertical scroll bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxScrollBars.Horizontal">
      <summary>Display a horizontal scroll bar only when text is longer than the width of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxScrollBars.None">
      <summary>No scroll bars are displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxScrollBars.Vertical">
      <summary>Display a vertical scroll bar only when text is longer than the height of the control.</summary>
    </member>
    <member name="T:System.Windows.Forms.RichTextBoxSelectionAttribute">
      <summary>Specifies whether any characters in the current selection have the style or attribute.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxSelectionAttribute.All">
      <summary>All characters.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxSelectionAttribute.Mixed">
      <summary>Some but not all characters.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxSelectionAttribute.None">
      <summary>No characters.</summary>
    </member>
    <member name="T:System.Windows.Forms.RichTextBoxSelectionTypes">
      <summary>Specifies the type of selection in a <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxSelectionTypes.Empty">
      <summary>No text is selected in the current selection.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxSelectionTypes.MultiChar">
      <summary>More than one character is selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxSelectionTypes.MultiObject">
      <summary>More than one Object Linking and Embedding (OLE) object is selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxSelectionTypes.Object">
      <summary>At least one Object Linking and Embedding (OLE) object is selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxSelectionTypes.Text">
      <summary>The current selection contains only text.</summary>
    </member>
    <member name="T:System.Windows.Forms.RichTextBoxStreamType">
      <summary>Specifies the types of input and output streams used to load and save data in the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxStreamType.PlainText">
      <summary>A plain text stream that includes spaces in places of Object Linking and Embedding (OLE) objects.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxStreamType.RichNoOleObjs">
      <summary>A Rich Text Format (RTF) stream with spaces in place of OLE objects. This value is only valid for use with the <see cref="M:System.Windows.Forms.RichTextBox.SaveFile(System.String)" /> method of the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxStreamType.RichText">
      <summary>A Rich Text Format (RTF) stream.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxStreamType.TextTextOleObjs">
      <summary>A plain text stream with a textual representation of OLE objects. This value is only valid for use with the <see cref="M:System.Windows.Forms.RichTextBox.SaveFile(System.String)" /> method of the <see cref="T:System.Windows.Forms.RichTextBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxStreamType.UnicodePlainText">
      <summary>A text stream that contains spaces in place of Object Linking and Embedding (OLE) objects. The text is encoded in Unicode.</summary>
    </member>
    <member name="T:System.Windows.Forms.RichTextBoxWordPunctuations">
      <summary>Specifies the types of punctuation tables that can be used with the <see cref="T:System.Windows.Forms.RichTextBox" /> control's word-wrapping and word-breaking features.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxWordPunctuations.All">
      <summary>Used as a mask.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxWordPunctuations.Custom">
      <summary>Use a custom defined punctuation table.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxWordPunctuations.Level1">
      <summary>Use pre-defined Level 1 punctuation table as default.</summary>
    </member>
    <member name="F:System.Windows.Forms.RichTextBoxWordPunctuations.Level2">
      <summary>Use pre-defined Level 2 punctuation table as default.</summary>
    </member>
    <member name="T:System.Windows.Forms.RightToLeft">
      <summary>Specifies a value indicating whether the text appears from right to left, such as when using Hebrew or Arabic fonts.</summary>
    </member>
    <member name="F:System.Windows.Forms.RightToLeft.Inherit">
      <summary>The direction the text read is inherited from the parent control.</summary>
    </member>
    <member name="F:System.Windows.Forms.RightToLeft.No">
      <summary>The text reads from left to right. This is the default.</summary>
    </member>
    <member name="F:System.Windows.Forms.RightToLeft.Yes">
      <summary>The text reads from right to left.</summary>
    </member>
    <member name="T:System.Windows.Forms.RowStyle">
      <summary>Represents the look and feel of a row in a table layout.</summary>
    </member>
    <member name="M:System.Windows.Forms.RowStyle.#ctor">
      <summary>Initializes an instance of the <see cref="T:System.Windows.Forms.RowStyle" /> class to its default state.</summary>
    </member>
    <member name="M:System.Windows.Forms.RowStyle.#ctor(System.Windows.Forms.SizeType)">
      <summary>Initializes an instance of the <see cref="T:System.Windows.Forms.RowStyle" /> class using the supplied <see cref="T:System.Windows.Forms.SizeType" /> value.</summary>
      <param name="sizeType">A <see cref="P:System.Windows.Forms.TableLayoutStyle.SizeType" /> indicating how the row should be should be sized relative to its containing table.</param>
    </member>
    <member name="M:System.Windows.Forms.RowStyle.#ctor(System.Windows.Forms.SizeType,System.Single)">
      <summary>Initializes an instance of the <see cref="T:System.Windows.Forms.RowStyle" /> class using the supplied <see cref="T:System.Windows.Forms.SizeType" /> and height values.</summary>
      <param name="sizeType">A <see cref="P:System.Windows.Forms.TableLayoutStyle.SizeType" /> indicating how the row should be should be sized relative to its containing table.</param>
      <param name="height">The preferred height in pixels or percentage of the <see cref="T:System.Windows.Forms.TableLayoutPanel" />, depending on <paramref name="sizeType" />.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="height" /> is less than 0.</exception>
    </member>
    <member name="P:System.Windows.Forms.RowStyle.Height">
      <summary>Gets or sets the height of a row.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 0 when setting this property.</exception>
      <returns>The preferred height of a row in pixels or percentage of the <see cref="T:System.Windows.Forms.TableLayoutPanel" />, depending on the <see cref="P:System.Windows.Forms.TableLayoutStyle.SizeType" /> property.</returns>
    </member>
    <member name="T:System.Windows.Forms.SaveFileDialog">
      <summary>Prompts the user to select a location for saving a file. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.SaveFileDialog.#ctor">
      <summary>Initializes a new instance of this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.SaveFileDialog.OpenFile">
      <summary>Opens the file with read/write permission selected by the user.</summary>
      <returns>The read/write file selected by the user.</returns>
    </member>
    <member name="M:System.Windows.Forms.SaveFileDialog.Reset">
      <summary>Resets all dialog box options to their default values.</summary>
    </member>
    <member name="P:System.Windows.Forms.SaveFileDialog.CheckWriteAccess">
      <summary>Gets or sets a value indicating whether the dialog box verifies if the creation of the specified file will be successful.
             If this flag is not set, the calling application must handle errors, such as denial of access, that are discovered when the item is created.</summary>
    </member>
    <member name="P:System.Windows.Forms.SaveFileDialog.CreatePrompt">
      <summary>Gets or sets a value indicating whether the dialog box prompts the user for permission to create a file if the user specifies a file that does not exist.</summary>
      <returns>
        <see langword="true" /> if the dialog box prompts the user before creating a file if the user specifies a file name that does not exist; <see langword="false" /> if the dialog box automatically creates the new file without prompting the user for permission. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SaveFileDialog.ExpandedMode">
      <summary>Gets or sets a value indicating whether the dialog box is always opened in the expanded mode.</summary>
    </member>
    <member name="P:System.Windows.Forms.SaveFileDialog.OverwritePrompt">
      <summary>Gets or sets a value indicating whether the <see langword="Save As" /> dialog box displays a warning if the user specifies a file name that already exists.</summary>
      <returns>
        <see langword="true" /> if the dialog box prompts the user before overwriting an existing file if the user specifies a file name that already exists; <see langword="false" /> if the dialog box automatically overwrites the existing file without prompting the user for permission. The default value is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.Screen">
      <summary>Represents a display device or multiple display devices on a single system.</summary>
    </member>
    <member name="M:System.Windows.Forms.Screen.Equals(System.Object)">
      <summary>Gets or sets a value indicating whether the specified object is equal to this <see langword="Screen" />.</summary>
      <param name="obj">The object to compare to this <see cref="T:System.Windows.Forms.Screen" />.</param>
      <returns>
        <see langword="true" /> if the specified object is equal to this <see cref="T:System.Windows.Forms.Screen" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.FromControl(System.Windows.Forms.Control)">
      <summary>Retrieves a <see cref="T:System.Windows.Forms.Screen" /> for the display that contains the largest portion of the specified control.</summary>
      <param name="control">A <see cref="T:System.Windows.Forms.Control" /> for which to retrieve a <see cref="T:System.Windows.Forms.Screen" />.</param>
      <returns>A <see cref="T:System.Windows.Forms.Screen" /> for the display that contains the largest region of the specified control. In multiple display environments where no display contains the control, the display closest to the specified control is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.FromHandle(System.IntPtr)">
      <summary>Retrieves a <see cref="T:System.Windows.Forms.Screen" /> for the display that contains the largest portion of the object referred to by the specified handle.</summary>
      <param name="hwnd">The window handle for which to retrieve the <see cref="T:System.Windows.Forms.Screen" />.</param>
      <returns>A <see cref="T:System.Windows.Forms.Screen" /> for the display that contains the largest region of the object. In multiple display environments where no display contains any portion of the specified window, the display closest to the object is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.FromPoint(System.Drawing.Point)">
      <summary>Retrieves a <see cref="T:System.Windows.Forms.Screen" /> for the display that contains the specified point.</summary>
      <param name="point">A <see cref="T:System.Drawing.Point" /> that specifies the location for which to retrieve a <see cref="T:System.Windows.Forms.Screen" />.</param>
      <returns>A <see cref="T:System.Windows.Forms.Screen" /> for the display that contains the point. In multiple display environments where no display contains the point, the display closest to the specified point is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.FromRectangle(System.Drawing.Rectangle)">
      <summary>Retrieves a <see cref="T:System.Windows.Forms.Screen" /> for the display that contains the largest portion of the rectangle.</summary>
      <param name="rect">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area for which to retrieve the display.</param>
      <returns>A <see cref="T:System.Windows.Forms.Screen" /> for the display that contains the largest region of the specified rectangle. In multiple display environments where no display contains the rectangle, the display closest to the rectangle is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.GetBounds(System.Drawing.Point)">
      <summary>Retrieves the bounds of the display that contains the specified point.</summary>
      <param name="pt">A <see cref="T:System.Drawing.Point" /> that specifies the coordinates for which to retrieve the display bounds.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the display that contains the specified point. In multiple display environments where no display contains the specified point, the display closest to the point is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.GetBounds(System.Drawing.Rectangle)">
      <summary>Retrieves the bounds of the display that contains the largest portion of the specified rectangle.</summary>
      <param name="rect">A <see cref="T:System.Drawing.Rectangle" /> that specifies the area for which to retrieve the display bounds.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the display that contains the specified rectangle. In multiple display environments where no monitor contains the specified rectangle, the monitor closest to the rectangle is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.GetBounds(System.Windows.Forms.Control)">
      <summary>Retrieves the bounds of the display that contains the largest portion of the specified control.</summary>
      <param name="ctl">The <see cref="T:System.Windows.Forms.Control" /> for which to retrieve the display bounds.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the display that contains the specified control. In multiple display environments where no display contains the specified control, the display closest to the control is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.GetHashCode">
      <summary>Computes and retrieves a hash code for an object.</summary>
      <returns>A hash code for an object.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.GetWorkingArea(System.Drawing.Point)">
      <summary>Retrieves the working area closest to the specified point. The working area is the desktop area of the display, excluding taskbars, docked windows, and docked tool bars.</summary>
      <param name="pt">A <see cref="T:System.Drawing.Point" /> that specifies the coordinates for which to retrieve the working area.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that specifies the working area. In multiple display environments where no display contains the specified point, the display closest to the point is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.GetWorkingArea(System.Drawing.Rectangle)">
      <summary>Retrieves the working area for the display that contains the largest portion of the specified rectangle. The working area is the desktop area of the display, excluding taskbars, docked windows, and docked tool bars.</summary>
      <param name="rect">The <see cref="T:System.Drawing.Rectangle" /> that specifies the area for which to retrieve the working area.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that specifies the working area. In multiple display environments where no display contains the specified rectangle, the display closest to the rectangle is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.GetWorkingArea(System.Windows.Forms.Control)">
      <summary>Retrieves the working area for the display that contains the largest region of the specified control. The working area is the desktop area of the display, excluding taskbars, docked windows, and docked tool bars.</summary>
      <param name="ctl">The <see cref="T:System.Windows.Forms.Control" /> for which to retrieve the working area.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that specifies the working area. In multiple display environments where no display contains the specified control, the display closest to the control is returned.</returns>
    </member>
    <member name="M:System.Windows.Forms.Screen.ToString">
      <summary>Retrieves a string representing this object.</summary>
      <returns>A string representation of the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.Screen.AllScreens">
      <summary>Gets an array of all displays on the system.</summary>
      <returns>An array of type <see cref="T:System.Windows.Forms.Screen" />, containing all displays on the system.</returns>
    </member>
    <member name="P:System.Windows.Forms.Screen.BitsPerPixel">
      <summary>Gets the number of bits of memory, associated with one pixel of data.</summary>
      <returns>The number of bits of memory, associated with one pixel of data.</returns>
    </member>
    <member name="P:System.Windows.Forms.Screen.Bounds">
      <summary>Gets the bounds of the display.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" />, representing the bounds of the display.</returns>
    </member>
    <member name="P:System.Windows.Forms.Screen.DeviceName">
      <summary>Gets the device name associated with a display.</summary>
      <returns>The device name associated with a display.</returns>
    </member>
    <member name="P:System.Windows.Forms.Screen.Primary">
      <summary>Gets a value indicating whether a particular display is the primary device.</summary>
      <returns>
        <see langword="true" /> if this display is primary; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Screen.PrimaryScreen">
      <summary>Gets the primary display.</summary>
      <returns>The primary display.</returns>
    </member>
    <member name="P:System.Windows.Forms.Screen.WorkingArea">
      <summary>Gets the working area of the display. The working area is the desktop area of the display, excluding taskbars, docked windows, and docked tool bars.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" />, representing the working area of the display.</returns>
    </member>
    <member name="T:System.Windows.Forms.ScrollableControl">
      <summary>Defines a base class for controls that support auto-scrolling behavior.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollableControl.Scroll">
      <summary>Occurs when the user or code scrolls through the client area.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollableControl.ScrollStateAutoScrolling">
      <summary>Determines the value of the <see cref="P:System.Windows.Forms.ScrollableControl.AutoScroll" /> property.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollableControl.ScrollStateFullDrag">
      <summary>Determines whether the user has enabled full window drag.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollableControl.ScrollStateHScrollVisible">
      <summary>Determines whether the value of the <see cref="P:System.Windows.Forms.ScrollableControl.HScroll" /> property is set to <see langword="true" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollableControl.ScrollStateUserHasScrolled">
      <summary>Determines whether the user had scrolled through the <see cref="T:System.Windows.Forms.ScrollableControl" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollableControl.ScrollStateVScrollVisible">
      <summary>Determines whether the value of the <see cref="P:System.Windows.Forms.ScrollableControl.VScroll" /> property is set to <see langword="true" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ScrollableControl" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.AdjustFormScrollbars(System.Boolean)">
      <summary>Adjusts the scroll bars on the container based on the current control positions and the control currently selected.</summary>
      <param name="displayScrollbars">
        <see langword="true" /> to show the scroll bars; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.GetScrollState(System.Int32)">
      <summary>Determines whether the specified flag has been set.</summary>
      <param name="bit">The flag to check.</param>
      <returns>
        <see langword="true" /> if the specified flag has been set; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="levent">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.OnPaddingChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.PaddingChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Paints the background of the control.</summary>
      <param name="e">The event data.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later versions only: <paramref name="e" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.OnScroll(System.Windows.Forms.ScrollEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ScrollableControl.Scroll" /> event.</summary>
      <param name="se">A <see cref="T:System.Windows.Forms.ScrollEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> object that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Scales a control's location, size, padding and margin.</summary>
      <param name="factor">The factor by which the height and width of the control will be scaled.</param>
      <param name="specified">A <see cref="T:System.Windows.Forms.BoundsSpecified" /> value that specifies the bounds of the control to use when defining its size and position.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.ScaleCore(System.Single,System.Single)">
      <summary>This method is not relevant for this class.</summary>
      <param name="dx">The horizontal scaling factor.</param>
      <param name="dy">The vertical scaling factor.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.ScrollControlIntoView(System.Windows.Forms.Control)">
      <summary>Scrolls the specified child control into view on an auto-scroll enabled control.</summary>
      <param name="activeControl">The child control to scroll into view.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.ScrollToControl(System.Windows.Forms.Control)">
      <summary>Calculates the scroll offset to the specified child control.</summary>
      <param name="activeControl">The child control to scroll into view.</param>
      <returns>The upper-left hand <see cref="T:System.Drawing.Point" /> of the display area relative to the client area required to scroll the control into view.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.SetAutoScrollMargin(System.Int32,System.Int32)">
      <summary>Sets the size of the auto-scroll margins.</summary>
      <param name="x">The <see cref="P:System.Drawing.Size.Width" /> value.</param>
      <param name="y">The <see cref="P:System.Drawing.Size.Height" /> value.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.SetDisplayRectLocation(System.Int32,System.Int32)">
      <summary>Positions the display window to the specified value.</summary>
      <param name="x">The horizontal offset at which to position the <see cref="T:System.Windows.Forms.ScrollableControl" />.</param>
      <param name="y">The vertical offset at which to position the <see cref="T:System.Windows.Forms.ScrollableControl" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.SetScrollState(System.Int32,System.Boolean)">
      <summary>Sets the specified scroll state flag.</summary>
      <param name="bit">The scroll state flag to set.</param>
      <param name="value">The value to set the flag.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.AutoScroll">
      <summary>Gets or sets a value indicating whether the container enables the user to scroll to any controls placed outside of its visible boundaries.</summary>
      <returns>
        <see langword="true" /> if the container enables auto-scrolling; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.AutoScrollMargin">
      <summary>Gets or sets the size of the auto-scroll margin.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.Drawing.Size.Height" /> or <see cref="P:System.Drawing.Size.Width" /> value assigned is less than 0.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the height and width of the auto-scroll margin in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.AutoScrollMinSize">
      <summary>Gets or sets the minimum size of the auto-scroll.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that determines the minimum size of the virtual area through which the user can scroll.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.AutoScrollPosition">
      <summary>Gets or sets the location of the auto-scroll position.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> that represents the auto-scroll position in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.DisplayRectangle">
      <summary>Gets the rectangle that represents the virtual display area of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the display area of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.DockPadding">
      <summary>Gets the dock padding settings for all edges of the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ScrollableControl.DockPaddingEdges" /> that represents the padding for all the edges of a docked control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.HorizontalScroll">
      <summary>Gets the characteristics associated with the horizontal scroll bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.HScrollProperties" /> that contains information about the horizontal scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.HScroll">
      <summary>Gets or sets a value indicating whether the horizontal scroll bar is visible.</summary>
      <returns>
        <see langword="true" /> if the horizontal scroll bar is visible; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.VerticalScroll">
      <summary>Gets the characteristics associated with the vertical scroll bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VScrollProperties" /> that contains information about the vertical scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.VScroll">
      <summary>Gets or sets a value indicating whether the vertical scroll bar is visible.</summary>
      <returns>
        <see langword="true" /> if the vertical scroll bar is visible; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ScrollableControl.DockPaddingEdges">
      <summary>Determines the border padding for docked controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Equals(System.Object)">
      <summary>Determines whether the specified object is equal to the current <see cref="T:System.Windows.Forms.ScrollableControl.DockPaddingEdges" /> object.</summary>
      <param name="other">The object to compare with the current <see cref="T:System.Windows.Forms.ScrollableControl.DockPaddingEdges" /> object.</param>
      <returns>
        <see langword="true" /> if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.DockPaddingEdges.GetHashCode">
      <summary>Serves as a hash function for a particular type.</summary>
      <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.DockPaddingEdges.System#ICloneable#Clone">
      <summary>Creates a new object that is a copy of the current instance.</summary>
      <returns>A new object that is a copy of the current instance.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.DockPaddingEdges.ToString">
      <summary>Returns an empty string.</summary>
      <returns>An empty string.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.All">
      <summary>Gets or sets the padding width for all edges of a docked control.</summary>
      <returns>The padding width, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Bottom">
      <summary>Gets or sets the padding width for the bottom edge of a docked control.</summary>
      <returns>The padding width, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Left">
      <summary>Gets or sets the padding width for the left edge of a docked control.</summary>
      <returns>The padding width, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Right">
      <summary>Gets or sets the padding width for the right edge of a docked control.</summary>
      <returns>The padding width, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollableControl.DockPaddingEdges.Top">
      <summary>Gets or sets the padding width for the top edge of a docked control.</summary>
      <returns>The padding width, in pixels.</returns>
    </member>
    <member name="T:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter">
      <summary>A <see cref="T:System.ComponentModel.TypeConverter" /> for the <see cref="T:System.Windows.Forms.ScrollableControl.DockPaddingEdges" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
      <summary>Returns a collection of properties for the type of array specified by the value parameter, using the specified context and attributes.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="value">An object that specifies the type of array for which to get properties.</param>
      <param name="attributes">An array of type attribute that is used as a filter.</param>
      <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> with the properties that are exposed for the <see cref="T:System.Windows.Forms.ScrollableControl" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Returns whether the current object supports properties, using the specified context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="T:System.Windows.Forms.ScrollBar">
      <summary>Implements the basic functionality of a scroll bar control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ScrollBar.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.BackColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ScrollBar.BackColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ScrollBar.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ScrollBar.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.Click">
      <summary>Occurs when the control is clicked if the <see cref="F:System.Windows.Forms.ControlStyles.StandardClick" /> bit flag is set to <see langword="true" /> in a derived class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.DoubleClick">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ScrollBar" /> control is double-clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.FontChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ScrollBar.Font" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.ForeColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ScrollBar.ForeColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.ImeModeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ScrollBar.ImeMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.MouseClick">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.ScrollBar" /> control with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.MouseDoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.ScrollBar" /> control with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.MouseDown">
      <summary>Occurs when the mouse pointer is over the control and the user presses a mouse button.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.MouseMove">
      <summary>Occurs when the user moves the mouse pointer over the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.MouseUp">
      <summary>Occurs when the user moves the mouse pointer over the control and releases a mouse button.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.Paint">
      <summary>Occurs when the control is redrawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.Scroll">
      <summary>Occurs when the scroll box has been moved by either a mouse or keyboard action.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ScrollBar.Text" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ScrollBar.ValueChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ScrollBar.Value" /> property is changed, either by a <see cref="E:System.Windows.Forms.ScrollBar.Scroll" /> event or programmatically.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ScrollBar" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.CreateAccessibilityInstance">
      <summary>Creates a new AccessibleObject for this <see cref="T:System.Windows.Forms.ScrollBar" /> instance.
             The AccessibleObject instance returned by this method supports ControlType UIA property.</summary>
      <returns>AccessibleObject for this <see cref="T:System.Windows.Forms.ScrollBar" /> instance.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Returns the bounds to use when the <see cref="T:System.Windows.Forms.ScrollBar" /> is scaled by a specified amount.</summary>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that specifies the initial bounds.</param>
      <param name="factor">A <see cref="T:System.Drawing.SizeF" /> that indicates the amount the current bounds should be increased by.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values that indicate the how to define the control's size and position returned by <see cref="M:System.Windows.Forms.ScrollBar.GetScaledBounds(System.Drawing.Rectangle,System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)" />.</param>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> specifying the scaled bounds.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.OnScroll(System.Windows.Forms.ScrollEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ScrollBar.Scroll" /> event.</summary>
      <param name="se">A <see cref="T:System.Windows.Forms.ScrollEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.OnValueChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ScrollBar.ValueChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <param name="factor" />
      <param name="specified" />
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.ScrollBar" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.ScrollBar" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.UpdateScrollInfo">
      <summary>Updates the <see cref="T:System.Windows.Forms.ScrollBar" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollBar.WndProc(System.Windows.Forms.Message@)">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" /> method.</summary>
      <param name="m">A Windows Message object.</param>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.AutoSize">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ScrollBar" /> is automatically resized to fit its contents.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ScrollBar" /> should be automatically resized to fit its contents; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.BackgroundImage">
      <summary>Gets or sets the background image displayed in the control.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> that represents the image to display in the background of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.BackgroundImageLayout">
      <summary>Gets or sets the background image layout as defined in the <see cref="T:System.Windows.Forms.ImageLayout" /> enumeration.</summary>
      <returns>One of the values of <see cref="T:System.Windows.Forms.ImageLayout" /> (Center , None, Stretch, Tile, or Zoom). Tile is the default value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.DefaultImeMode">
      <summary>Gets the default Input Method Editor (IME) mode supported by this control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.DefaultMargin">
      <summary>Gets the default distance between the <see cref="T:System.Windows.Forms.ScrollBar" /> control edges and its contents.</summary>
      <returns>
        <see cref="F:System.Windows.Forms.Padding.Empty" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.Font">
      <summary>Gets or sets the font of the text displayed by the control.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.ForeColor">
      <summary>Gets or sets the foreground color of the scroll bar control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the foreground color for this scroll bar control. The default is the foreground color of the parent control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.ImeMode">
      <summary>Gets or sets the Input Method Editor (IME) mode supported by this control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.LargeChange">
      <summary>Gets or sets a value to be added to or subtracted from the <see cref="P:System.Windows.Forms.ScrollBar.Value" /> property when the scroll box is moved a large distance.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than 0.</exception>
      <returns>A numeric value. The default value is 10.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.Maximum">
      <summary>Gets or sets the upper limit of values of the scrollable range.</summary>
      <returns>A numeric value. The default value is 100.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.Minimum">
      <summary>Gets or sets the lower limit of values of the scrollable range.</summary>
      <returns>A numeric value. The default value is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.ScaleScrollBarForDpiChange">
      <summary>Gets or sets a flag to let the scrollbar scale according to the DPI of the window.</summary>
      <returns>
        <see langword="true" /> to let the scrollbar scale according to the DPI of the window; <see langword="false" /> otherwise. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.SmallChange">
      <summary>Gets or sets the value to be added to or subtracted from the <see cref="P:System.Windows.Forms.ScrollBar.Value" /> property when the scroll box is moved a small distance.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than 0.</exception>
      <returns>A numeric value. The default value is 1.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.TabStop">
      <summary>Gets or sets a value indicating whether the user can give the focus to the <see cref="T:System.Windows.Forms.ScrollBar" /> control by using the TAB key.</summary>
      <returns>
        <see langword="true" /> if the user can give the focus to the control by using the TAB key; otherwise, false. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBar.Value">
      <summary>Gets or sets a numeric value that represents the current position of the scroll box on the scroll bar control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than the <see cref="P:System.Windows.Forms.ScrollBar.Minimum" /> property value.  
  
 -or-  
  
 The assigned value is greater than the <see cref="P:System.Windows.Forms.ScrollBar.Maximum" /> property value.</exception>
      <returns>A numeric value that is within the <see cref="P:System.Windows.Forms.ScrollBar.Minimum" /> and <see cref="P:System.Windows.Forms.ScrollBar.Maximum" /> range. The default value is 0.</returns>
    </member>
    <member name="T:System.Windows.Forms.ScrollBarRenderer">
      <summary>Provides methods used to render a scroll bar control with visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawArrowButton(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState)">
      <summary>Draws a scroll arrow with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the scroll arrow.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the scroll arrow.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState" /> values that specifies the visual state of the scroll arrow.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Draws a horizontal scroll box (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the scroll box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the scroll box.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the scroll box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawHorizontalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Draws a grip on a horizontal scroll box (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the scroll box grip.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the scroll box grip.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the scroll box grip.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawLeftHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Draws a horizontal scroll bar track with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the scroll bar track.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the scroll bar track.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the scroll bar track.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawLowerVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Draws a vertical scroll bar track with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the scroll bar track.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the scroll bar track.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the scroll bar track.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawRightHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Draws a horizontal scroll bar track with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the scroll bar track.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the scroll bar track.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the scroll bar track.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawSizeBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState)">
      <summary>Draws a scroll bar sizing handle with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the sizing handle.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the sizing handle.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState" /> values that specifies the visual state of the sizing handle.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawUpperVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Draws a vertical scroll bar track with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the scroll bar track.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the scroll bar track.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the scroll bar track.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawVerticalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Draws a vertical scroll box (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the scroll box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the scroll box.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the scroll box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.DrawVerticalThumbGrip(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Draws a grip on a vertical scroll box (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the scroll box grip.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the scroll box grip.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the scroll box grip.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.GetSizeBoxSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Returns the size of the sizing handle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> this operation will use.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the sizing handle.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the size of the sizing handle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ScrollBarRenderer.GetThumbGripSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.ScrollBarState)">
      <summary>Returns the size of the scroll box grip.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> this operation will use.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.ScrollBarState" /> values that specifies the visual state of the scroll box grip.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the size of the scroll box grip.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollBarRenderer.IsSupported">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ScrollBarRenderer" /> class can be used to draw a scroll bar with visual styles.</summary>
      <returns>
        <see langword="true" /> if the user has enabled visual styles in the operating system and visual styles are applied to the client areas of application windows; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ScrollBars">
      <summary>Specifies which scroll bars will be visible on a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollBars.Both">
      <summary>Both horizontal and vertical scroll bars are shown.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollBars.Horizontal">
      <summary>Only horizontal scroll bars are shown.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollBars.None">
      <summary>No scroll bars are shown.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollBars.Vertical">
      <summary>Only vertical scroll bars are shown.</summary>
    </member>
    <member name="T:System.Windows.Forms.ScrollButton">
      <summary>Specifies the type of scroll arrow to draw on a scroll bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollButton.Down">
      <summary>A down-scroll arrow.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollButton.Left">
      <summary>A left-scroll arrow.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollButton.Max">
      <summary>A maximum-scroll arrow.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollButton.Min">
      <summary>A minimum-scroll arrow.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollButton.Right">
      <summary>A right-scroll arrow.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollButton.Up">
      <summary>An up-scroll arrow.</summary>
    </member>
    <member name="T:System.Windows.Forms.ScrollEventArgs">
      <summary>Provides data for the <see langword="Scroll" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollEventArgs.#ctor(System.Windows.Forms.ScrollEventType,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ScrollEventArgs" /> class using the given values for the <see cref="P:System.Windows.Forms.ScrollEventArgs.Type" /> and <see cref="P:System.Windows.Forms.ScrollEventArgs.NewValue" /> properties.</summary>
      <param name="type">One of the <see cref="T:System.Windows.Forms.ScrollEventType" /> values.</param>
      <param name="newValue">The new value for the scroll bar.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollEventArgs.#ctor(System.Windows.Forms.ScrollEventType,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ScrollEventArgs" /> class using the given values for the <see cref="P:System.Windows.Forms.ScrollEventArgs.Type" />, <see cref="P:System.Windows.Forms.ScrollEventArgs.OldValue" />, and <see cref="P:System.Windows.Forms.ScrollEventArgs.NewValue" /> properties.</summary>
      <param name="type">One of the <see cref="T:System.Windows.Forms.ScrollEventType" /> values.</param>
      <param name="oldValue">The old value for the scroll bar.</param>
      <param name="newValue">The new value for the scroll bar.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollEventArgs.#ctor(System.Windows.Forms.ScrollEventType,System.Int32,System.Int32,System.Windows.Forms.ScrollOrientation)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ScrollEventArgs" /> class using the given values for the <see cref="P:System.Windows.Forms.ScrollEventArgs.Type" />, <see cref="P:System.Windows.Forms.ScrollEventArgs.OldValue" />, <see cref="P:System.Windows.Forms.ScrollEventArgs.NewValue" />, and <see cref="P:System.Windows.Forms.ScrollEventArgs.ScrollOrientation" /> properties.</summary>
      <param name="type">One of the <see cref="T:System.Windows.Forms.ScrollEventType" /> values.</param>
      <param name="oldValue">The old value for the scroll bar.</param>
      <param name="newValue">The new value for the scroll bar.</param>
      <param name="scroll">One of the <see cref="T:System.Windows.Forms.ScrollOrientation" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.ScrollEventArgs.#ctor(System.Windows.Forms.ScrollEventType,System.Int32,System.Windows.Forms.ScrollOrientation)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ScrollEventArgs" /> class using the given values for the <see cref="P:System.Windows.Forms.ScrollEventArgs.Type" />, <see cref="P:System.Windows.Forms.ScrollEventArgs.NewValue" />, and <see cref="P:System.Windows.Forms.ScrollEventArgs.ScrollOrientation" /> properties.</summary>
      <param name="type">One of the <see cref="T:System.Windows.Forms.ScrollEventType" /> values.</param>
      <param name="newValue">The new value for the scroll bar.</param>
      <param name="scroll">One of the <see cref="T:System.Windows.Forms.ScrollOrientation" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.ScrollEventArgs.NewValue">
      <summary>Gets or sets the new <see cref="P:System.Windows.Forms.ScrollBar.Value" /> of the scroll bar.</summary>
      <returns>The numeric value that the <see cref="P:System.Windows.Forms.ScrollBar.Value" /> property will be changed to.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollEventArgs.OldValue">
      <summary>Gets the old <see cref="P:System.Windows.Forms.ScrollBar.Value" /> of the scroll bar.</summary>
      <returns>The numeric value that the <see cref="P:System.Windows.Forms.ScrollBar.Value" /> property contained before it changed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollEventArgs.ScrollOrientation">
      <summary>Gets the scroll bar orientation that raised the <see langword="Scroll" /> event.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ScrollOrientation" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollEventArgs.Type">
      <summary>Gets the type of scroll event that occurred.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ScrollEventType" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.ScrollEventHandler">
      <summary>Represents the method that handles the <see langword="Scroll" /> event of a <see cref="T:System.Windows.Forms.DataGridView" /> or <see cref="T:System.Windows.Forms.ScrollBar" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ScrollEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ScrollEventType">
      <summary>Specifies the type of action used to raise the <see cref="E:System.Windows.Forms.ScrollBar.Scroll" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollEventType.EndScroll">
      <summary>The scroll box has stopped moving.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollEventType.First">
      <summary>The scroll box was moved to the <see cref="P:System.Windows.Forms.ScrollBar.Minimum" /> position.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollEventType.LargeDecrement">
      <summary>The scroll box moved a large distance. The user clicked the scroll bar to the left(horizontal) or above(vertical) the scroll box, or pressed the PAGE UP key.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollEventType.LargeIncrement">
      <summary>The scroll box moved a large distance. The user clicked the scroll bar to the right(horizontal) or below(vertical) the scroll box, or pressed the PAGE DOWN key.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollEventType.Last">
      <summary>The scroll box was moved to the <see cref="P:System.Windows.Forms.ScrollBar.Maximum" /> position.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollEventType.SmallDecrement">
      <summary>The scroll box was moved a small distance. The user clicked the left(horizontal) or top(vertical) scroll arrow, or pressed the UP ARROW key.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollEventType.SmallIncrement">
      <summary>The scroll box was moved a small distance. The user clicked the right(horizontal) or bottom(vertical) scroll arrow, or pressed the DOWN ARROW key.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollEventType.ThumbPosition">
      <summary>The scroll box was moved.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollEventType.ThumbTrack">
      <summary>The scroll box is currently being moved.</summary>
    </member>
    <member name="T:System.Windows.Forms.ScrollOrientation">
      <summary>Specifies the scroll bar orientation for the <see cref="E:System.Windows.Forms.ScrollBar.Scroll" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollOrientation.HorizontalScroll">
      <summary>The horizontal scroll bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.ScrollOrientation.VerticalScroll">
      <summary>The vertical scroll bar.</summary>
    </member>
    <member name="T:System.Windows.Forms.ScrollProperties">
      <summary>Encapsulates properties related to scrolling.</summary>
    </member>
    <member name="M:System.Windows.Forms.ScrollProperties.#ctor(System.Windows.Forms.ScrollableControl)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ScrollProperties" /> class.</summary>
      <param name="container">The <see cref="T:System.Windows.Forms.ScrollableControl" /> whose scrolling properties this object describes.</param>
    </member>
    <member name="P:System.Windows.Forms.ScrollProperties.Enabled">
      <summary>Gets or sets whether the scroll bar can be used on the container.</summary>
      <returns>
        <see langword="true" /> if the scroll bar can be used; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollProperties.LargeChange">
      <summary>Gets or sets the distance to move a scroll bar in response to a large scroll command.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="P:System.Windows.Forms.ScrollProperties.LargeChange" /> cannot be less than zero.</exception>
      <returns>An <see cref="T:System.Int32" /> describing how far, in pixels, to move the scroll bar in response to a large change.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollProperties.Maximum">
      <summary>Gets or sets the upper limit of the scrollable range.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the maximum range of the scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollProperties.Minimum">
      <summary>Gets or sets the lower limit of the scrollable range.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="P:System.Windows.Forms.ScrollProperties.Minimum" /> cannot be less than zero.</exception>
      <returns>An <see cref="T:System.Int32" /> representing the lower range of the scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollProperties.ParentControl">
      <summary>Gets the control to which this scroll information applies.</summary>
      <returns>The control to which this scroll information applies.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollProperties.SmallChange">
      <summary>Gets or sets the distance to move a scroll bar in response to a small scroll command.</summary>
      <returns>An <see cref="T:System.Int32" /> representing how far, in pixels, to move the scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollProperties.Value">
      <summary>Gets or sets a numeric value that represents the current position of the scroll bar box.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the position of the scroll bar box, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ScrollProperties.Visible">
      <summary>Gets or sets whether the scroll bar can be seen by the user.</summary>
      <returns>
        <see langword="true" /> if it can be seen; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.SearchDirectionHint">
      <summary>Provides a directional hint of where to search for a <see cref="T:System.Windows.Forms.ListViewItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.SearchDirectionHint.Down">
      <summary>Below the current item.</summary>
    </member>
    <member name="F:System.Windows.Forms.SearchDirectionHint.Left">
      <summary>To the left of the current item.</summary>
    </member>
    <member name="F:System.Windows.Forms.SearchDirectionHint.Right">
      <summary>To the right of the current item.</summary>
    </member>
    <member name="F:System.Windows.Forms.SearchDirectionHint.Up">
      <summary>Above the current item.</summary>
    </member>
    <member name="T:System.Windows.Forms.SearchForVirtualItemEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ListView.SearchForVirtualItem" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.SearchForVirtualItemEventArgs.#ctor(System.Boolean,System.Boolean,System.Boolean,System.String,System.Drawing.Point,System.Windows.Forms.SearchDirectionHint,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.SearchForVirtualItemEventArgs" /> class.</summary>
      <param name="isTextSearch">A value indicating whether the search is a text search.</param>
      <param name="isPrefixSearch">A value indicating whether the search is a prefix search.</param>
      <param name="includeSubItemsInSearch">A value indicating whether to include subitems of list items in the search.</param>
      <param name="text">The text of the item to search for.</param>
      <param name="startingPoint">The <see cref="T:System.Drawing.Point" /> at which to start the search.</param>
      <param name="direction">One of the <see cref="T:System.Windows.Forms.SearchDirectionHint" /> values.</param>
      <param name="startIndex">The index of the <see cref="T:System.Windows.Forms.ListViewItem" /> at which to start the search.</param>
    </member>
    <member name="P:System.Windows.Forms.SearchForVirtualItemEventArgs.Direction">
      <summary>Gets the direction from the current item that the search should take place.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.SearchDirectionHint" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.SearchForVirtualItemEventArgs.IncludeSubItemsInSearch">
      <summary>Gets a value indicating whether the search should include subitems of list items.</summary>
      <returns>
        <see langword="true" /> if subitems should be included in the search; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SearchForVirtualItemEventArgs.Index">
      <summary>Gets or sets the index of the <see cref="T:System.Windows.Forms.ListViewItem" /> found in the <see cref="T:System.Windows.Forms.ListView" /> .</summary>
      <returns>The index of the <see cref="T:System.Windows.Forms.ListViewItem" /> found in the <see cref="T:System.Windows.Forms.ListView" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SearchForVirtualItemEventArgs.IsPrefixSearch">
      <summary>Gets a value indicating whether the search should return an item if its text starts with the search text.</summary>
      <returns>
        <see langword="true" /> if the search should match item text that starts with the search text; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SearchForVirtualItemEventArgs.IsTextSearch">
      <summary>Gets a value indicating whether the search is a text search.</summary>
      <returns>
        <see langword="true" /> if the search is a text search; <see langword="false" /> if the search is a location search.</returns>
    </member>
    <member name="P:System.Windows.Forms.SearchForVirtualItemEventArgs.StartIndex">
      <summary>Gets the index of the <see cref="T:System.Windows.Forms.ListViewItem" /> where the search starts.</summary>
      <returns>The index of the <see cref="T:System.Windows.Forms.ListViewItem" /> indicating where the search starts.</returns>
    </member>
    <member name="P:System.Windows.Forms.SearchForVirtualItemEventArgs.StartingPoint">
      <summary>Gets the starting location of the search.</summary>
      <returns>The <see cref="T:System.Drawing.Point" /> that indicates the starting location of the search.</returns>
    </member>
    <member name="P:System.Windows.Forms.SearchForVirtualItemEventArgs.Text">
      <summary>Gets the text used to find an item in the <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
      <returns>The text used to find an item in the <see cref="T:System.Windows.Forms.ListView" /> control.</returns>
    </member>
    <member name="T:System.Windows.Forms.SearchForVirtualItemEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ListView.SearchForVirtualItem" /> event of a <see cref="T:System.Windows.Forms.ListView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.SearchForVirtualItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.SecurityIDType">
      <summary>This enumeration is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.SecurityIDType.Alias">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.SecurityIDType.Computer">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.SecurityIDType.DeletedAccount">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.SecurityIDType.Domain">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.SecurityIDType.Group">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.SecurityIDType.Invalid">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.SecurityIDType.Unknown">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.SecurityIDType.User">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.SecurityIDType.WellKnownGroup">
      <summary>This value is not used.</summary>
    </member>
    <member name="T:System.Windows.Forms.SelectedGridItemChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.PropertyGrid.SelectedGridItemChanged" /> event of the <see cref="T:System.Windows.Forms.PropertyGrid" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.SelectedGridItemChangedEventArgs.#ctor(System.Windows.Forms.GridItem,System.Windows.Forms.GridItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.SelectedGridItemChangedEventArgs" /> class.</summary>
      <param name="oldSel">The previously selected grid item.</param>
      <param name="newSel">The newly selected grid item.</param>
    </member>
    <member name="P:System.Windows.Forms.SelectedGridItemChangedEventArgs.NewSelection">
      <summary>Gets the newly selected <see cref="T:System.Windows.Forms.GridItem" />.</summary>
      <returns>The new <see cref="T:System.Windows.Forms.GridItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SelectedGridItemChangedEventArgs.OldSelection">
      <summary>Gets the previously selected <see cref="T:System.Windows.Forms.GridItem" />.</summary>
      <returns>The old <see cref="T:System.Windows.Forms.GridItem" />. This can be <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.SelectedGridItemChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.PropertyGrid.SelectedGridItemChanged" /> event of a <see cref="T:System.Windows.Forms.PropertyGrid" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.SelectedGridItemChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.SelectionMode">
      <summary>Specifies the selection behavior of a list box.</summary>
    </member>
    <member name="F:System.Windows.Forms.SelectionMode.MultiExtended">
      <summary>Multiple items can be selected, and the user can use the SHIFT, CTRL, and arrow keys to make selections.</summary>
    </member>
    <member name="F:System.Windows.Forms.SelectionMode.MultiSimple">
      <summary>Multiple items can be selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.SelectionMode.None">
      <summary>No items can be selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.SelectionMode.One">
      <summary>Only one item can be selected.</summary>
    </member>
    <member name="T:System.Windows.Forms.SelectionRange">
      <summary>Represents a date selection range in a month calendar control.</summary>
    </member>
    <member name="M:System.Windows.Forms.SelectionRange.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.SelectionRange" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.SelectionRange.#ctor(System.DateTime,System.DateTime)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.SelectionRange" /> class with the specified beginning and ending dates.</summary>
      <param name="lower">The starting date in the <see cref="T:System.Windows.Forms.SelectionRange" />.</param>
      <param name="upper">The ending date in the <see cref="T:System.Windows.Forms.SelectionRange" />.</param>
    </member>
    <member name="M:System.Windows.Forms.SelectionRange.#ctor(System.Windows.Forms.SelectionRange)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.SelectionRange" /> class with the specified selection range.</summary>
      <param name="range">The existing <see cref="T:System.Windows.Forms.SelectionRange" />.</param>
    </member>
    <member name="M:System.Windows.Forms.SelectionRange.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.SelectionRange" />.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.SelectionRange" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SelectionRange.End">
      <summary>Gets or sets the ending date and time of the selection range.</summary>
      <returns>The ending <see cref="T:System.DateTime" /> value of the range.</returns>
    </member>
    <member name="P:System.Windows.Forms.SelectionRange.Start">
      <summary>Gets or sets the starting date and time of the selection range.</summary>
      <returns>The starting <see cref="T:System.DateTime" /> value of the range.</returns>
    </member>
    <member name="T:System.Windows.Forms.SelectionRangeConverter">
      <summary>Provides a type converter to convert <see cref="T:System.Windows.Forms.SelectionRange" /> objects to and from various other types.</summary>
    </member>
    <member name="M:System.Windows.Forms.SelectionRangeConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.SelectionRangeConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.SelectionRangeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Determines if this converter can convert an object of the specified source type to the native type of the converter by querying the supplied type descriptor context.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="sourceType">The source <see cref="T:System.Type" /> to be converted.</param>
      <returns>
        <see langword="true" /> if the converter can perform the specified conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.SelectionRangeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Gets a value indicating whether this converter can convert an object to the specified destination type by using the specified context.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">The destination <see cref="T:System.Type" /> to convert into.</param>
      <returns>
        <see langword="true" /> if this converter can perform the specified conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.SelectionRangeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the specified value to the converter's native type by using the specified locale.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">The locale information for the conversion.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="value" /> is of type <see cref="T:System.String" /> but could not be parsed into two strings representing dates.</exception>
      <exception cref="T:System.InvalidCastException">
        <paramref name="value" /> is of type <see cref="T:System.String" /> that was parsed into two strings, but the conversion of one or both into the <see cref="T:System.DateTime" /> type did not succeed.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.SelectionRangeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the specified <see cref="T:System.Windows.Forms.SelectionRangeConverter" /> object to another type by using the specified culture.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">The locale information for the conversion.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <param name="destinationType">The destination <see cref="T:System.Type" /> to convert into.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destinationType" /> is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="value" /> cannot be converted to the <paramref name="destinationType" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.SelectionRangeConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
      <summary>Creates a <see cref="T:System.Windows.Forms.SelectionRange" /> object by using the specified type descriptor and set of property values for that object.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="propertyValues">An <see cref="T:System.Collections.IDictionary" /> that contains the new property values.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="propertyValues" /> is <see langword="null" /> or its <c>Start</c> and <c>End</c> elements could not be converted into a <see cref="T:System.Windows.Forms.SelectionRange" />.</exception>
      <returns>If successful, the newly created <see cref="T:System.Windows.Forms.SelectionRange" />; otherwise, this method throws an exception.</returns>
    </member>
    <member name="M:System.Windows.Forms.SelectionRangeConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines if changing a value on an instance should require a call to <see cref="Overload:System.Windows.Forms.SelectionRangeConverter.CreateInstance" /> to create a new value.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <returns>
        <see langword="true" /> if <see cref="Overload:System.Windows.Forms.SelectionRangeConverter.CreateInstance" /> must be called to make a change to one or more properties; otherwise <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.SelectionRangeConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
      <summary>Returns the set of filtered properties for the <see cref="T:System.Windows.Forms.SelectionRange" /> type.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="value">An <see cref="T:System.Object" /> that specifies the type of array for which to get properties.</param>
      <param name="attributes">An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
      <returns>If successful, the set of properties that should be exposed for the <see cref="T:System.Windows.Forms.SelectionRange" /> type; otherwise, <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.SelectionRangeConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Determines whether the current object supports properties that use the specified type descriptor context.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <returns>
        <see langword="true" /> if <see cref="Overload:System.Windows.Forms.SelectionRangeConverter.GetProperties" /> can be called to find the properties of a <see cref="T:System.Windows.Forms.SelectionRange" /> object; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.SendKeys">
      <summary>Provides methods for sending keystrokes to an application.</summary>
    </member>
    <member name="M:System.Windows.Forms.SendKeys.Flush">
      <summary>Processes all the Windows messages currently in the message queue.</summary>
    </member>
    <member name="M:System.Windows.Forms.SendKeys.Send(System.String)">
      <summary>Sends keystrokes to the active application.</summary>
      <param name="keys">The string of keystrokes to send.</param>
      <exception cref="T:System.InvalidOperationException">There is not an active application to send keystrokes to.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="keys" /> does not represent valid keystrokes.</exception>
    </member>
    <member name="M:System.Windows.Forms.SendKeys.SendWait(System.String)">
      <summary>Sends the given keys to the active application, and then waits for the messages to be processed.</summary>
      <param name="keys">The string of keystrokes to send.</param>
    </member>
    <member name="T:System.Windows.Forms.Shortcut">
      <summary>Specifies shortcut keys that can be used by menu items.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt0">
      <summary>The shortcut keys ALT+0.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt1">
      <summary>The shortcut keys ALT+1.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt2">
      <summary>The shortcut keys ALT+2.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt3">
      <summary>The shortcut keys ALT+3.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt4">
      <summary>The shortcut keys ALT+4.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt5">
      <summary>The shortcut keys ALT+5.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt6">
      <summary>The shortcut keys ALT+6.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt7">
      <summary>The shortcut keys ALT+7.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt8">
      <summary>The shortcut keys ALT+8.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Alt9">
      <summary>The shortcut keys ALT+9.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltBksp">
      <summary>The shortcut keys ALT+BACKSPACE.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltDownArrow">
      <summary>The shortcut keys ALT+DOWNARROW.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF1">
      <summary>The shortcut keys ALT+F1.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF10">
      <summary>The shortcut keys ALT+F10.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF11">
      <summary>The shortcut keys ALT+F11.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF12">
      <summary>The shortcut keys ALT+F12.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF2">
      <summary>The shortcut keys ALT+F2.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF3">
      <summary>The shortcut keys ALT+F3.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF4">
      <summary>The shortcut keys ALT+F4.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF5">
      <summary>The shortcut keys ALT+F5.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF6">
      <summary>The shortcut keys ALT+F6.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF7">
      <summary>The shortcut keys ALT+F7.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF8">
      <summary>The shortcut keys ALT+F8.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltF9">
      <summary>The shortcut keys ALT+F9.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltLeftArrow">
      <summary>The shortcut keys ALT+LEFTARROW.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltRightArrow">
      <summary>The shortcut keys ALT+RIGHTARROW.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.AltUpArrow">
      <summary>The shortcut keys ALT+UPARROW.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl0">
      <summary>The shortcut keys CTRL+0.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl1">
      <summary>The shortcut keys CTRL+1.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl2">
      <summary>The shortcut keys CTRL+2.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl3">
      <summary>The shortcut keys CTRL+3.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl4">
      <summary>The shortcut keys CTRL+4.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl5">
      <summary>The shortcut keys CTRL+5.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl6">
      <summary>The shortcut keys CTRL+6.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl7">
      <summary>The shortcut keys CTRL+7.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl8">
      <summary>The shortcut keys CTRL+8.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ctrl9">
      <summary>The shortcut keys CTRL+9.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlA">
      <summary>The shortcut keys CTRL+A.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlB">
      <summary>The shortcut keys CTRL+B.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlC">
      <summary>The shortcut keys CTRL+C.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlD">
      <summary>The shortcut keys CTRL+D.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlDel">
      <summary>The shortcut keys CTRL+DELETE.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlE">
      <summary>The shortcut keys CTRL+E.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF">
      <summary>The shortcut keys CTRL+F.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF1">
      <summary>The shortcut keys CTRL+F1.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF10">
      <summary>The shortcut keys CTRL+F10.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF11">
      <summary>The shortcut keys CTRL+F11.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF12">
      <summary>The shortcut keys CTRL+F12.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF2">
      <summary>The shortcut keys CTRL+F2.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF3">
      <summary>The shortcut keys CTRL+F3.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF4">
      <summary>The shortcut keys CTRL+F4.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF5">
      <summary>The shortcut keys CTRL+F5.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF6">
      <summary>The shortcut keys CTRL+F6.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF7">
      <summary>The shortcut keys CTRL+F7.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF8">
      <summary>The shortcut keys CTRL+F8.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlF9">
      <summary>The shortcut keys CTRL+F9.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlG">
      <summary>The shortcut keys CTRL+G.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlH">
      <summary>The shortcut keys CTRL+H.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlI">
      <summary>The shortcut keys CTRL+I.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlIns">
      <summary>The shortcut keys CTRL+INSERT.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlJ">
      <summary>The shortcut keys CTRL+J.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlK">
      <summary>The shortcut keys CTRL+K.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlL">
      <summary>The shortcut keys CTRL+L.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlM">
      <summary>The shortcut keys CTRL+M.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlN">
      <summary>The shortcut keys CTRL+N.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlO">
      <summary>The shortcut keys CTRL+O.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlP">
      <summary>The shortcut keys CTRL+P.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlQ">
      <summary>The shortcut keys CTRL+Q.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlR">
      <summary>The shortcut keys CTRL+R.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlS">
      <summary>The shortcut keys CTRL+S.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift0">
      <summary>The shortcut keys CTRL+SHIFT+0.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift1">
      <summary>The shortcut keys CTRL+SHIFT+1.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift2">
      <summary>The shortcut keys CTRL+SHIFT+2.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift3">
      <summary>The shortcut keys CTRL+SHIFT+3.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift4">
      <summary>The shortcut keys CTRL+SHIFT+4.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift5">
      <summary>The shortcut keys CTRL+SHIFT+5.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift6">
      <summary>The shortcut keys CTRL+SHIFT+6.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift7">
      <summary>The shortcut keys CTRL+SHIFT+7.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift8">
      <summary>The shortcut keys CTRL+SHIFT+8.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShift9">
      <summary>The shortcut keys CTRL+SHIFT+9.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftA">
      <summary>The shortcut keys CTRL+SHIFT+A.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftB">
      <summary>The shortcut keys CTRL+SHIFT+B.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftC">
      <summary>The shortcut keys CTRL+SHIFT+C.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftD">
      <summary>The shortcut keys CTRL+SHIFT+D.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftE">
      <summary>The shortcut keys CTRL+SHIFT+E.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF">
      <summary>The shortcut keys CTRL+SHIFT+F.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF1">
      <summary>The shortcut keys CTRL+SHIFT+F1.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF10">
      <summary>The shortcut keys CTRL+SHIFT+F10.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF11">
      <summary>The shortcut keys CTRL+SHIFT+F11.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF12">
      <summary>The shortcut keys CTRL+SHIFT+F12.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF2">
      <summary>The shortcut keys CTRL+SHIFT+F2.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF3">
      <summary>The shortcut keys CTRL+SHIFT+F3.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF4">
      <summary>The shortcut keys CTRL+SHIFT+F4.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF5">
      <summary>The shortcut keys CTRL+SHIFT+F5.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF6">
      <summary>The shortcut keys CTRL+SHIFT+F6.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF7">
      <summary>The shortcut keys CTRL+SHIFT+F7.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF8">
      <summary>The shortcut keys CTRL+SHIFT+F8.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftF9">
      <summary>The shortcut keys CTRL+SHIFT+F9.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftG">
      <summary>The shortcut keys CTRL+SHIFT+G.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftH">
      <summary>The shortcut keys CTRL+SHIFT+H.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftI">
      <summary>The shortcut keys CTRL+SHIFT+I.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftJ">
      <summary>The shortcut keys CTRL+SHIFT+J.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftK">
      <summary>The shortcut keys CTRL+SHIFT+K.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftL">
      <summary>The shortcut keys CTRL+SHIFT+L.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftM">
      <summary>The shortcut keys CTRL+SHIFT+M.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftN">
      <summary>The shortcut keys CTRL+SHIFT+N.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftO">
      <summary>The shortcut keys CTRL+SHIFT+O.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftP">
      <summary>The shortcut keys CTRL+SHIFT+P.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftQ">
      <summary>The shortcut keys CTRL+SHIFT+Q.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftR">
      <summary>The shortcut keys CTRL+SHIFT+R.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftS">
      <summary>The shortcut keys CTRL+SHIFT+S.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftT">
      <summary>The shortcut keys CTRL+SHIFT+T.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftU">
      <summary>The shortcut keys CTRL+SHIFT+U.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftV">
      <summary>The shortcut keys CTRL+SHIFT+V.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftW">
      <summary>The shortcut keys CTRL+SHIFT+W.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftX">
      <summary>The shortcut keys CTRL+SHIFT+X.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftY">
      <summary>The shortcut keys CTRL+SHIFT+Y.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlShiftZ">
      <summary>The shortcut keys CTRL+SHIFT+Z.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlT">
      <summary>The shortcut keys CTRL+T.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlU">
      <summary>The shortcut keys CTRL+U.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlV">
      <summary>The shortcut keys CTRL+V.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlW">
      <summary>The shortcut keys CTRL+W.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlX">
      <summary>The shortcut keys CTRL+X.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlY">
      <summary>The shortcut keys CTRL+Y.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.CtrlZ">
      <summary>The shortcut keys CTRL+Z.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Del">
      <summary>The shortcut key DELETE.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F1">
      <summary>The shortcut key F1.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F10">
      <summary>The shortcut key F10.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F11">
      <summary>The shortcut key F11.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F12">
      <summary>The shortcut key F12.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F2">
      <summary>The shortcut key F2.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F3">
      <summary>The shortcut key F3.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F4">
      <summary>The shortcut key F4.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F5">
      <summary>The shortcut key F5.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F6">
      <summary>The shortcut key F6.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F7">
      <summary>The shortcut key F7.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F8">
      <summary>The shortcut key F8.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.F9">
      <summary>The shortcut key F9.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.Ins">
      <summary>The shortcut key INSERT.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.None">
      <summary>No shortcut key is associated with the menu item.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftDel">
      <summary>The shortcut keys SHIFT+DELETE.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF1">
      <summary>The shortcut keys SHIFT+F1.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF10">
      <summary>The shortcut keys SHIFT+F10.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF11">
      <summary>The shortcut keys SHIFT+F11.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF12">
      <summary>The shortcut keys SHIFT+F12.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF2">
      <summary>The shortcut keys SHIFT+F2.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF3">
      <summary>The shortcut keys SHIFT+F3.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF4">
      <summary>The shortcut keys SHIFT+F4.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF5">
      <summary>The shortcut keys SHIFT+F5.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF6">
      <summary>The shortcut keys SHIFT+F6.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF7">
      <summary>The shortcut keys SHIFT+F7.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF8">
      <summary>The shortcut keys SHIFT+F8.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftF9">
      <summary>The shortcut keys SHIFT+F9.</summary>
    </member>
    <member name="F:System.Windows.Forms.Shortcut.ShiftIns">
      <summary>The shortcut keys SHIFT+INSERT.</summary>
    </member>
    <member name="T:System.Windows.Forms.SizeGripStyle">
      <summary>Specifies the style of the sizing grip on a <see cref="T:System.Windows.Forms.Form" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.SizeGripStyle.Auto">
      <summary>The sizing grip is automatically displayed when needed.</summary>
    </member>
    <member name="F:System.Windows.Forms.SizeGripStyle.Hide">
      <summary>The sizing grip is hidden.</summary>
    </member>
    <member name="F:System.Windows.Forms.SizeGripStyle.Show">
      <summary>The sizing grip is always shown on the form.</summary>
    </member>
    <member name="T:System.Windows.Forms.SizeType">
      <summary>Specifies how rows or columns of user interface (UI) elements should be sized relative to their container.</summary>
    </member>
    <member name="F:System.Windows.Forms.SizeType.Absolute">
      <summary>The row or column should be sized to an exact number of pixels.</summary>
    </member>
    <member name="F:System.Windows.Forms.SizeType.AutoSize">
      <summary>The row or column should be automatically sized to share space with its peers.</summary>
    </member>
    <member name="F:System.Windows.Forms.SizeType.Percent">
      <summary>The row or column should be sized as a percentage of the parent container.</summary>
    </member>
    <member name="T:System.Windows.Forms.SortOrder">
      <summary>Specifies how items in a list are sorted.</summary>
    </member>
    <member name="F:System.Windows.Forms.SortOrder.Ascending">
      <summary>The items are sorted in ascending order.</summary>
    </member>
    <member name="F:System.Windows.Forms.SortOrder.Descending">
      <summary>The items are sorted in descending order.</summary>
    </member>
    <member name="F:System.Windows.Forms.SortOrder.None">
      <summary>The items are not sorted.</summary>
    </member>
    <member name="T:System.Windows.Forms.SplitContainer">
      <summary>Represents a control consisting of a movable bar that divides a container's display area into two resizable panels.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitContainer.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.SplitContainer.AutoSize" /> property changes. This property is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitContainer.BackgroundImageChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.SplitContainer.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitContainer.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.SplitContainer.BackgroundImageLayout" /> property changes. This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitContainer.ControlAdded">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitContainer.ControlRemoved">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitContainer.PaddingChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitContainer.SplitterMoved">
      <summary>Occurs when the splitter control is moved.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitContainer.SplitterMoving">
      <summary>Occurs when the splitter control is in the process of moving.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitContainer.TextChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.SplitContainer" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.BeginInit">
      <summary>Signals the object that initialization is started.</summary>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.SplitContainer.CreateControlsInstance">
      <summary>Creates a new instance of the control collection for the control.</summary>
      <returns>A new instance of <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.EndInit">
      <summary>Signals the object that initialization is complete.</summary>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnMouseCaptureChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseCaptureChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnMove(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Move" /> event.</summary>
      <param name="e">The data for the event.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.SplitContainer.SplitterMoved" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.SplitterEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.OnSplitterMoving(System.Windows.Forms.SplitterCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.SplitContainer.SplitterMoving" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.SplitterEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog box key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.ProcessTabKey(System.Boolean)">
      <summary>Selects the next available control and makes it the active control.</summary>
      <param name="forward">
        <see langword="true" /> to cycle forward through the controls in the <see cref="T:System.Windows.Forms.ContainerControl" />; otherwise, <see langword="false" />.</param>
      <returns>
        <see langword="true" /> if a control is selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Scales the location, size, padding and margin.</summary>
      <param name="factor">The factor by which the height and width of the control will be scaled.</param>
      <param name="specified">A <see cref="T:System.Windows.Forms.BoundsSpecified" /> value that specifies the bounds of the control to use when defining its size and position.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.Select(System.Boolean,System.Boolean)">
      <summary>Activates a child control. Optionally specifies the direction in the tab order to select the control from.</summary>
      <param name="directed">
        <see langword="true" /> to specify the direction of the control to select; otherwise, <see langword="false" />.</param>
      <param name="forward">
        <see langword="true" /> to move forward in the tab order; <see langword="false" /> to move backward in the tab order.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Performs the work of setting the specified bounds of this control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.SplitContainer.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="msg">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.AutoScroll">
      <summary>When overridden in a derived class, gets or sets a value indicating whether scroll bars automatically appear if controls are placed outside the <see cref="T:System.Windows.Forms.SplitContainer" /> client area. This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if scroll bars to automatically appear when controls are placed outside the <see cref="T:System.Windows.Forms.SplitContainer" /> client area; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.AutoScrollMargin">
      <summary>Gets or sets the size of the auto-scroll margin. This property is not relevant to this class. This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> value that represents the height and width, in pixels, of the auto-scroll margin.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.AutoScrollMinSize">
      <summary>Gets or sets the minimum size of the scroll bar. This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the minimum height and width of the scroll bar, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.AutoScrollOffset">
      <summary>This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.AutoScrollPosition">
      <summary>This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.AutoSize">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.SplitContainer" /> is automatically resized to display its entire contents. This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.SplitContainer" /> is automatically resized; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.BackgroundImage">
      <summary>Gets or sets the background image displayed in the control.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> that represents the image to display in the background of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.BackgroundImageLayout">
      <summary>This property is not relevant to this class.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageLayout" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.BindingContext">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.BindingContext" /> for the <see cref="T:System.Windows.Forms.SplitContainer" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.BindingContext" /> for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.BorderStyle">
      <summary>Gets or sets the style of border for the <see cref="T:System.Windows.Forms.SplitContainer" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value of the property is not one of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see cref="F:System.Windows.Forms.BorderStyle.Fixed3D" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Controls">
      <summary>Gets a collection of child controls. This property is not relevant to this class.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.Control.ControlCollection" /> that contains the child controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.DefaultSize">
      <summary>Gets the default size of the <see cref="T:System.Windows.Forms.SplitContainer" />.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the size of the <see cref="T:System.Windows.Forms.SplitContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Dock">
      <summary>Gets or sets which <see cref="T:System.Windows.Forms.SplitContainer" /> borders are attached to the edges of the container.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default value is <see langword="None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.FixedPanel">
      <summary>Gets or sets which <see cref="T:System.Windows.Forms.SplitContainer" /> panel remains the same size when the container is resized.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.FixedPanel" /> values.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.FixedPanel" />. The default value is <see langword="None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.IsSplitterFixed">
      <summary>Gets or sets a value indicating whether the splitter is fixed or movable.</summary>
      <returns>
        <see langword="true" /> if the splitter is fixed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Orientation">
      <summary>Gets or sets a value indicating the horizontal or vertical orientation of the <see cref="T:System.Windows.Forms.SplitContainer" /> panels.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.Orientation" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.Orientation" /> values. The default is <see langword="Vertical" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Padding">
      <summary>Gets or sets the interior spacing, in pixels, between the edges of a <see cref="T:System.Windows.Forms.SplitterPanel" /> and its contents. This property is not relevant to this class.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.Padding" /> representing the interior spacing.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Panel1">
      <summary>Gets the left or top panel of the <see cref="T:System.Windows.Forms.SplitContainer" />, depending on <see cref="P:System.Windows.Forms.SplitContainer.Orientation" />.</summary>
      <returns>If <see cref="P:System.Windows.Forms.SplitContainer.Orientation" /> is <see langword="Vertical" />, the left panel of the <see cref="T:System.Windows.Forms.SplitContainer" />. If <see cref="P:System.Windows.Forms.SplitContainer.Orientation" /> is <see langword="Horizontal" />, the top panel of the <see cref="T:System.Windows.Forms.SplitContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Panel1Collapsed">
      <summary>Gets or sets a value determining whether <see cref="P:System.Windows.Forms.SplitContainer.Panel1" /> is collapsed or expanded.</summary>
      <returns>
        <see langword="true" /> if <see cref="P:System.Windows.Forms.SplitContainer.Panel1" /> is collapsed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Panel1MinSize">
      <summary>Gets or sets the minimum distance in pixels of the splitter from the left or top edge of <see cref="P:System.Windows.Forms.SplitContainer.Panel1" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value is incompatible with the orientation.</exception>
      <returns>An <see cref="T:System.Int32" /> representing the minimum distance in pixels of the splitter from the left or top edge of <see cref="P:System.Windows.Forms.SplitContainer.Panel1" />. The default value is 25 pixels, regardless of <see cref="P:System.Windows.Forms.SplitContainer.Orientation" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Panel2">
      <summary>Gets the right or bottom panel of the <see cref="T:System.Windows.Forms.SplitContainer" />, depending on <see cref="P:System.Windows.Forms.SplitContainer.Orientation" />.</summary>
      <returns>If <see cref="P:System.Windows.Forms.SplitContainer.Orientation" /> is <see langword="Vertical" />, the right panel of the <see cref="T:System.Windows.Forms.SplitContainer" />. If <see cref="P:System.Windows.Forms.SplitContainer.Orientation" /> is <see langword="Horizontal" />, the bottom panel of the <see cref="T:System.Windows.Forms.SplitContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Panel2Collapsed">
      <summary>Gets or sets a value determining whether <see cref="P:System.Windows.Forms.SplitContainer.Panel2" /> is collapsed or expanded.</summary>
      <returns>
        <see langword="true" /> if <see cref="P:System.Windows.Forms.SplitContainer.Panel2" /> is collapsed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Panel2MinSize">
      <summary>Gets or sets the minimum distance in pixels of the splitter from the right or bottom edge of <see cref="P:System.Windows.Forms.SplitContainer.Panel2" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value is incompatible with the orientation.</exception>
      <returns>An <see cref="T:System.Int32" /> representing the minimum distance in pixels of the splitter from the right or bottom edge of <see cref="P:System.Windows.Forms.SplitContainer.Panel2" />. The default value is 25 pixels, regardless of <see cref="P:System.Windows.Forms.SplitContainer.Orientation" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.SplitterDistance">
      <summary>Gets or sets the location of the splitter, in pixels, from the left or top edge of the <see cref="T:System.Windows.Forms.SplitContainer" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than zero.</exception>
      <exception cref="T:System.InvalidOperationException">The value is incompatible with the orientation.</exception>
      <returns>An <see cref="T:System.Int32" /> representing the location of the splitter, in pixels, from the left or top edge of the <see cref="T:System.Windows.Forms.SplitContainer" />. The default value is 50 pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.SplitterIncrement">
      <summary>Gets or sets a value representing the increment of splitter movement in pixels.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than one.</exception>
      <returns>An <see cref="T:System.Int32" /> representing the increment of splitter movement in pixels. The default value is one pixel.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.SplitterRectangle">
      <summary>Gets the size and location of the splitter relative to the <see cref="T:System.Windows.Forms.SplitContainer" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that specifies the size and location of the splitter relative to the <see cref="T:System.Windows.Forms.SplitContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.SplitterWidth">
      <summary>Gets or sets the width of the splitter in pixels.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than one or is incompatible with the orientation.</exception>
      <returns>An <see cref="T:System.Int32" /> representing the width of the splitter, in pixels. The default is four pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.TabStop">
      <summary>Gets or sets a value indicating whether the user can give the focus to the splitter using the TAB key.</summary>
      <returns>
        <see langword="true" /> if the user can give the focus to the splitter using the TAB key; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitContainer.Text">
      <summary>This property is not relevant to this class.</summary>
      <returns>A string.</returns>
    </member>
    <member name="T:System.Windows.Forms.Splitter">
      <summary>Represents a splitter control that enables the user to resize docked controls. <see cref="T:System.Windows.Forms.Splitter" /> has been replaced by <see cref="T:System.Windows.Forms.SplitContainer" /> and is provided only for compatibility with previous versions.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.BackgroundImageChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.BackgroundImageLayoutChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.Enter">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.FontChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.ForeColorChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.ImeModeChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.KeyDown">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.KeyPress">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.KeyUp">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.Leave">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.SplitterMoved">
      <summary>Occurs when the splitter control is moved. <see cref="E:System.Windows.Forms.Splitter.SplitterMoved" /> has been replaced by <see cref="E:System.Windows.Forms.SplitContainer.SplitterMoved" /> and is provided only for compatibility with previous versions.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.SplitterMoving">
      <summary>Occurs when the splitter control is in the process of moving. <see cref="E:System.Windows.Forms.Splitter.SplitterMoving" /> has been replaced by <see cref="E:System.Windows.Forms.SplitContainer.SplitterMoving" /> and is provided only for compatibility with previous versions.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.TabStopChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.Splitter.TextChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Splitter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Splitter" /> class. <see cref="T:System.Windows.Forms.Splitter" /> has been replaced by <see cref="T:System.Windows.Forms.SplitContainer" />, and is provided only for compatibility with previous versions.</summary>
    </member>
    <member name="M:System.Windows.Forms.Splitter.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.Splitter.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>This method is not relevant to this class.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Splitter.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Splitter.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Splitter.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Splitter.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Splitter.SplitterMoved" /> event. <see cref="M:System.Windows.Forms.Splitter.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs)" /> has been replaced by <see cref="M:System.Windows.Forms.SplitContainer.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs)" /> and is provided only for compatibility with previous versions.</summary>
      <param name="sevent">A <see cref="T:System.Windows.Forms.SplitterEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Splitter.OnSplitterMoving(System.Windows.Forms.SplitterEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Splitter.SplitterMoving" /> event. <see cref="M:System.Windows.Forms.Splitter.OnSplitterMoving(System.Windows.Forms.SplitterEventArgs)" /> has been replaced by <see cref="M:System.Windows.Forms.SplitContainer.OnSplitterMoving(System.Windows.Forms.SplitterCancelEventArgs)" /> and is provided only for compatibility with previous versions.</summary>
      <param name="sevent">A <see cref="T:System.Windows.Forms.SplitterEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.Splitter.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Performs the work of setting the specified bounds of this control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.Splitter.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.Splitter" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.Splitter" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.AllowDrop">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.Anchor">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AnchorStyles" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.BackgroundImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>The background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.BackgroundImageLayout">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.BorderStyle">
      <summary>Gets or sets the style of border for the control. <see cref="P:System.Windows.Forms.Splitter.BorderStyle" /> has been replaced by <see cref="P:System.Windows.Forms.SplitContainer.BorderStyle" /> and is provided only for compatibility with previous versions.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value of the property is not one of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see langword="BorderStyle.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.CreateParams">
      <summary>Returns the parameters needed to create the handle.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.DefaultCursor">
      <summary>Gets or sets the default cursor for the control.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.Cursor" /> representing the current default cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.DefaultImeMode">
      <summary>Gets the default Input Method Editor (IME) mode supported by this control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the default size of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.Dock">
      <summary>Gets or sets which <see cref="T:System.Windows.Forms.Splitter" /> borders are docked to its parent control and determines how a <see cref="T:System.Windows.Forms.Splitter" /> is resized with its parent.</summary>
      <exception cref="T:System.ArgumentException">
        <see cref="P:System.Windows.Forms.Splitter.Dock" /> is not set to one of the valid <see cref="T:System.Windows.Forms.DockStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default is <see cref="F:System.Windows.Forms.DockStyle.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.Font">
      <summary>This property is not relevant to this class.</summary>
      <returns>The font of the text displayed by the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.ForeColor">
      <summary>This property is not relevant to this class.</summary>
      <returns>The foreground color of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.ImeMode">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.MinExtra">
      <summary>Gets or sets the minimum distance that must remain between the splitter control and the edge of the opposite side of the container (or the closest control docked to that side). <see cref="P:System.Windows.Forms.Splitter.MinExtra" /> has been replaced by similar properties in <see cref="T:System.Windows.Forms.SplitContainer" /> and is provided only for compatibility with previous versions.</summary>
      <returns>The minimum distance, in pixels, between the <see cref="T:System.Windows.Forms.Splitter" /> control and the edge of the opposite side of the container (or the closest control docked to that side). The default is 25.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.MinSize">
      <summary>Gets or sets the minimum distance that must remain between the splitter control and the container edge that the control is docked to. <see cref="P:System.Windows.Forms.Splitter.MinSize" /> has been replaced by <see cref="P:System.Windows.Forms.SplitContainer.Panel1MinSize" /> and <see cref="P:System.Windows.Forms.SplitContainer.Panel2MinSize" /> and is provided only for compatibility with previous versions.</summary>
      <returns>The minimum distance, in pixels, between the <see cref="T:System.Windows.Forms.Splitter" /> control and the container edge that the control is docked to. The default is 25.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.SplitPosition">
      <summary>Gets or sets the distance between the splitter control and the container edge that the control is docked to. <see cref="P:System.Windows.Forms.Splitter.SplitPosition" /> has been replaced by <see cref="P:System.Windows.Forms.SplitContainer.Panel1MinSize" /> and <see cref="P:System.Windows.Forms.SplitContainer.Panel2MinSize" /> and is provided only for compatibility with previous versions.</summary>
      <returns>The distance, in pixels, between the <see cref="T:System.Windows.Forms.Splitter" /> control and the container edge that the control is docked to. If the <see cref="T:System.Windows.Forms.Splitter" /> control is not bound to a control, the value is -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.TabStop">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Splitter.Text">
      <summary>This property is not relevant to this class.</summary>
      <returns>A string.</returns>
    </member>
    <member name="T:System.Windows.Forms.SplitterCancelEventArgs">
      <summary>Provides data for splitter events.</summary>
    </member>
    <member name="M:System.Windows.Forms.SplitterCancelEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.SplitterCancelEventArgs" /> class with the specified coordinates of the mouse pointer and the upper left corner of the <see cref="T:System.Windows.Forms.SplitContainer" />.</summary>
      <param name="mouseCursorX">The X coordinate of the mouse pointer in client coordinates.</param>
      <param name="mouseCursorY">The Y coordinate of the mouse pointer in client coordinates.</param>
      <param name="splitX">The X coordinate of the upper left corner of the <see cref="T:System.Windows.Forms.SplitContainer" /> in client coordinates.</param>
      <param name="splitY">The Y coordinate of the upper left corner of the <see cref="T:System.Windows.Forms.SplitContainer" /> in client coordinates.</param>
    </member>
    <member name="P:System.Windows.Forms.SplitterCancelEventArgs.MouseCursorX">
      <summary>Gets the X coordinate of the mouse pointer in client coordinates.</summary>
      <returns>An integer representing the X coordinate of the mouse pointer in client coordinates.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterCancelEventArgs.MouseCursorY">
      <summary>Gets the Y coordinate of the mouse pointer in client coordinates.</summary>
      <returns>An integer representing the Y coordinate of the mouse pointer in client coordinates.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterCancelEventArgs.SplitX">
      <summary>Gets or sets the X coordinate of the upper left corner of the <see cref="T:System.Windows.Forms.SplitContainer" /> in client coordinates.</summary>
      <returns>An integer representing the X coordinate of the upper left corner of the <see cref="T:System.Windows.Forms.SplitContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterCancelEventArgs.SplitY">
      <summary>Gets or sets the Y coordinate of the upper left corner of the <see cref="T:System.Windows.Forms.SplitContainer" /> in client coordinates.</summary>
      <returns>An integer representing the Y coordinate of the upper left corner of the <see cref="T:System.Windows.Forms.SplitContainer" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.SplitterCancelEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Splitter.SplitterMoving" /> event of a <see cref="T:System.Windows.Forms.Splitter" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.SplitterCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.SplitterEventArgs">
      <summary>Provides data for <see cref="E:System.Windows.Forms.Splitter.SplitterMoving" /> and the <see cref="E:System.Windows.Forms.Splitter.SplitterMoved" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.SplitterEventArgs.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Initializes an instance of the <see cref="T:System.Windows.Forms.SplitterEventArgs" /> class with the specified coordinates of the mouse pointer and the coordinates of the upper-left corner of the <see cref="T:System.Windows.Forms.Splitter" /> control.</summary>
      <param name="x">The x-coordinate of the mouse pointer (in client coordinates).</param>
      <param name="y">The y-coordinate of the mouse pointer (in client coordinates).</param>
      <param name="splitX">The x-coordinate of the upper-left corner of the <see cref="T:System.Windows.Forms.Splitter" /> (in client coordinates).</param>
      <param name="splitY">The y-coordinate of the upper-left corner of the <see cref="T:System.Windows.Forms.Splitter" /> (in client coordinates).</param>
    </member>
    <member name="P:System.Windows.Forms.SplitterEventArgs.SplitX">
      <summary>Gets or sets the x-coordinate of the upper-left corner of the <see cref="T:System.Windows.Forms.Splitter" /> (in client coordinates).</summary>
      <returns>The x-coordinate of the upper-left corner of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterEventArgs.SplitY">
      <summary>Gets or sets the y-coordinate of the upper-left corner of the <see cref="T:System.Windows.Forms.Splitter" /> (in client coordinates).</summary>
      <returns>The y-coordinate of the upper-left corner of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterEventArgs.X">
      <summary>Gets the x-coordinate of the mouse pointer (in client coordinates).</summary>
      <returns>The x-coordinate of the mouse pointer.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterEventArgs.Y">
      <summary>Gets the y-coordinate of the mouse pointer (in client coordinates).</summary>
      <returns>The y-coordinate of the mouse pointer.</returns>
    </member>
    <member name="T:System.Windows.Forms.SplitterEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.Splitter.SplitterMoving" /> and <see cref="E:System.Windows.Forms.Splitter.SplitterMoved" /> events of a <see cref="T:System.Windows.Forms.Splitter" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.SplitterEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.SplitterPanel">
      <summary>Creates a panel that is associated with a <see cref="T:System.Windows.Forms.SplitContainer" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitterPanel.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.SplitterPanel.AutoSize" /> property has changed. This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitterPanel.DockChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.SplitterPanel.Dock" /> property changes. This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitterPanel.LocationChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.SplitterPanel.Location" /> property changes. This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitterPanel.TabIndexChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.SplitterPanel.TabIndex" /> property changes. This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitterPanel.TabStopChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.SplitterPanel.TabStop" /> property changes. This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.SplitterPanel.VisibleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.SplitterPanel.Visible" /> property changes. This event is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.SplitterPanel.#ctor(System.Windows.Forms.SplitContainer)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.SplitterPanel" /> class with its specified <see cref="T:System.Windows.Forms.SplitContainer" />.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.SplitContainer" /> that contains the <see cref="T:System.Windows.Forms.SplitterPanel" />.</param>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.Anchor">
      <summary>Gets or sets how a <see cref="T:System.Windows.Forms.SplitterPanel" /> attaches to the edges of the <see cref="T:System.Windows.Forms.SplitContainer" />. This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AnchorStyles" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.AutoSize">
      <summary>Gets or sets a value that indicates whether the <see cref="T:System.Windows.Forms.SplitterPanel" /> is automatically resized to display its entire contents. This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.SplitterPanel" /> is automatically resized; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.AutoSizeMode">
      <summary>Enables the <see cref="T:System.Windows.Forms.SplitterPanel" /> to shrink when <see cref="P:System.Windows.Forms.SplitterPanel.AutoSize" /> is <see langword="true" />. This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AutoSizeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.BorderStyle">
      <summary>Gets or sets the border style for the <see cref="T:System.Windows.Forms.SplitterPanel" />. This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.Dock">
      <summary>Gets or sets which edge of the <see cref="T:System.Windows.Forms.SplitContainer" /> that the <see cref="T:System.Windows.Forms.SplitterPanel" /> is docked to. This property is not relevant to this class.</summary>
      <returns>One of the enumeration values that specifies which edge of the <see cref="T:System.Windows.Forms.SplitContainer" /> that the <see cref="T:System.Windows.Forms.SplitterPanel" /> is docked to.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.DockPadding">
      <summary>Gets the internal spacing between the <see cref="T:System.Windows.Forms.SplitterPanel" /> and its edges. This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ScrollableControl.DockPaddingEdges" /> that represents the padding for all the edges of a docked control.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.Height">
      <summary>Gets or sets the height of the <see cref="T:System.Windows.Forms.SplitterPanel" />.</summary>
      <exception cref="T:System.NotSupportedException">The height cannot be set.</exception>
      <returns>The height of the <see cref="T:System.Windows.Forms.SplitterPanel" />, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.Location">
      <summary>Gets or sets the coordinates of the upper-left corner of the <see cref="T:System.Windows.Forms.SplitterPanel" /> relative to the upper-left corner of its <see cref="T:System.Windows.Forms.SplitContainer" />. This property is not relevant to this class.</summary>
      <returns>The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the <see cref="T:System.Windows.Forms.SplitterPanel" /> relative to the upper-left corner of its <see cref="T:System.Windows.Forms.SplitContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.MaximumSize">
      <summary>Gets or sets the size that is the upper limit that <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> can specify. This property is not relevant to this class.</summary>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.MinimumSize">
      <summary>Gets or sets the size that is the lower limit that <see cref="M:System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size)" /> can specify. This property is not relevant to this class.</summary>
      <exception cref="T:System.NotSupportedException">The width cannot be set.</exception>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.Name">
      <summary>The name of this <see cref="T:System.Windows.Forms.SplitterPanel" />. This property is not relevant to this class.</summary>
      <returns>The name of this <see cref="T:System.Windows.Forms.SplitterPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.Parent">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.SplitContainer" /> that contains this <see cref="T:System.Windows.Forms.SplitterPanel" />. This property is not relevant to this class.</summary>
      <returns>A control representing the <see cref="T:System.Windows.Forms.SplitContainer" /> that contains this <see cref="T:System.Windows.Forms.SplitterPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.Size">
      <summary>Gets or sets the height and width of the <see cref="T:System.Windows.Forms.SplitterPanel" />. This property is not relevant to this class.</summary>
      <returns>The <see cref="T:System.Drawing.Size" /> that represents the height and width of the <see cref="T:System.Windows.Forms.SplitterPanel" /> in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.TabIndex">
      <summary>Gets or sets the tab order of the <see cref="T:System.Windows.Forms.SplitterPanel" /> within its <see cref="T:System.Windows.Forms.SplitContainer" />. This property is not relevant to this class.</summary>
      <returns>The index value of the <see cref="T:System.Windows.Forms.SplitterPanel" /> within the set of other <see cref="T:System.Windows.Forms.SplitterPanel" /> objects within its <see cref="T:System.Windows.Forms.SplitContainer" /> that are included in the tab order.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.TabStop">
      <summary>Gets or sets a value that indicates whether the user can give the focus to this <see cref="T:System.Windows.Forms.SplitterPanel" /> using the TAB key. This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if the user can give the focus to this <see cref="T:System.Windows.Forms.SplitterPanel" /> using the TAB key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.Visible">
      <summary>Gets or sets a value that indicates whether the <see cref="T:System.Windows.Forms.SplitterPanel" /> is displayed. This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.SplitterPanel" /> is displayed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SplitterPanel.Width">
      <summary>Gets or sets the width of the <see cref="T:System.Windows.Forms.SplitterPanel" />.</summary>
      <returns>The width of the <see cref="T:System.Windows.Forms.SplitterPanel" /> in pixels.</returns>
    </member>
    <member name="T:System.Windows.Forms.StatusStrip">
      <summary>Represents a Windows status bar control.</summary>
    </member>
    <member name="E:System.Windows.Forms.StatusStrip.PaddingChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.StatusStrip.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.StatusStrip" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.StatusStrip.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.StatusStrip.CreateDefaultItem(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Creates a default <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> with the specified text, image, and event handler on a new <see cref="T:System.Windows.Forms.StatusStrip" /> instance.</summary>
      <param name="text">The text to use for the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />. If the <paramref name="text" /> parameter is a hyphen (-), this method creates a <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
      <param name="onClick">An event handler that raises the <see cref="E:System.Windows.Forms.Control.Click" /> event when the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> is clicked.</param>
      <returns>A <see cref="M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.String,System.Drawing.Image,System.EventHandler)" />, or a <see cref="T:System.Windows.Forms.ToolStripSeparator" /> if the <paramref name="text" /> parameter is a hyphen (-).</returns>
    </member>
    <member name="M:System.Windows.Forms.StatusStrip.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.StatusStrip" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.StatusStrip.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="levent">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.StatusStrip.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Paints the background of the control.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains information about the <see cref="T:System.Windows.Forms.StatusStrip" /> to paint.</param>
    </member>
    <member name="M:System.Windows.Forms.StatusStrip.OnSpringTableLayoutCore">
      <summary>Provides custom table layout for a <see cref="T:System.Windows.Forms.StatusStrip" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.StatusStrip.SetDisplayedItems">
      <summary>Resets the collection of displayed and overflow items after a layout is done.</summary>
    </member>
    <member name="M:System.Windows.Forms.StatusStrip.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.CanOverflow">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.StatusStrip" /> supports overflow functionality.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.StatusStrip" /> supports overflow functionality; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.DefaultDock">
      <summary>Gets which borders of the <see cref="T:System.Windows.Forms.StatusStrip" /> are docked to the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default is <see cref="F:System.Windows.Forms.DockStyle.Bottom" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.DefaultPadding">
      <summary>Gets the spacing, in pixels, between the left, right, top, and bottom edges of the <see cref="T:System.Windows.Forms.StatusStrip" /> from the edges of the form.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that represents the spacing. The default is <c>{Left=6, Top=2, Right=0, Bottom=2}</c>.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.DefaultShowItemToolTips">
      <summary>Gets a value indicating whether ToolTips are shown for the <see cref="T:System.Windows.Forms.StatusStrip" /> by default.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.DefaultSize">
      <summary>Gets the size, in pixels, of the <see cref="T:System.Windows.Forms.StatusStrip" /> when it is first created.</summary>
      <returns>A <see cref="M:System.Drawing.Point.#ctor(System.Drawing.Size)" /> constructor representing the size of the <see cref="T:System.Windows.Forms.StatusStrip" />, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.Dock">
      <summary>Gets or sets which <see cref="T:System.Windows.Forms.StatusStrip" /> borders are docked to its parent control and determines how a <see cref="T:System.Windows.Forms.StatusStrip" /> is resized with its parent.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default is <see cref="F:System.Windows.Forms.DockStyle.Bottom" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.GripStyle">
      <summary>Gets or sets the visibility of the grip used to reposition the control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripGripStyle" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripGripStyle.Hidden" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.LayoutStyle">
      <summary>Gets or sets a value indicating how the <see cref="T:System.Windows.Forms.StatusStrip" /> lays out the items collection.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripLayoutStyle" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripLayoutStyle.Table" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.Padding">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.ShowItemToolTips">
      <summary>Gets or sets a value indicating whether ToolTips are shown for the <see cref="T:System.Windows.Forms.StatusStrip" />.</summary>
      <returns>
        <see langword="true" /> if ToolTips are shown for the <see cref="T:System.Windows.Forms.StatusStrip" />; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.SizeGripBounds">
      <summary>Gets the boundaries of the sizing handle (grip) for a <see cref="T:System.Windows.Forms.StatusStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> representing the grip boundaries.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.SizingGrip">
      <summary>Gets or sets a value indicating whether a sizing handle (grip) is displayed in the lower-right corner of the control.</summary>
      <returns>
        <see langword="true" /> if a grip is displayed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.StatusStrip.Stretch">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.StatusStrip" /> stretches from end to end in its container.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.StatusStrip" /> stretches from end to end in its <see cref="T:System.Windows.Forms.ToolStripContainer" />; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.StructFormat">
      <summary>This enumeration is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.StructFormat.Ansi">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.StructFormat.Auto">
      <summary>This value is not used.</summary>
    </member>
    <member name="F:System.Windows.Forms.StructFormat.Unicode">
      <summary>This value is not used.</summary>
    </member>
    <member name="T:System.Windows.Forms.SystemInformation">
      <summary>Provides information about the current system environment.</summary>
    </member>
    <member name="M:System.Windows.Forms.SystemInformation.GetBorderSizeForDpi(System.Int32)">
      <summary>Gets the thickness, in pixels, of a flat-style window or system control border for a given DPI value.</summary>
      <param name="dpi">The DPI value for the current display device.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the width, in pixels, of a vertical border, and the height, in pixels, of a horizontal border.</returns>
    </member>
    <member name="M:System.Windows.Forms.SystemInformation.GetHorizontalScrollBarArrowWidthForDpi(System.Int32)">
      <summary>Gets the width of the horizontal scroll bar arrow bitmap in pixels.</summary>
      <param name="dpi">The DPI value for the current display device.</param>
      <returns>The default width, in pixels, of the horizontal scroll bar arrow.</returns>
    </member>
    <member name="M:System.Windows.Forms.SystemInformation.GetHorizontalScrollBarHeightForDpi(System.Int32)">
      <summary>Gets the default height, in pixels, of the horizontal scroll bar for a given DPI value.</summary>
      <param name="dpi">The DPI value for the current display device.</param>
      <returns>The default height, in pixels, of the horizontal scroll bar.</returns>
    </member>
    <member name="M:System.Windows.Forms.SystemInformation.GetMenuFontForDpi(System.Int32)">
      <summary>Gets the font used to display text on menus for use in changing the DPI for a given display device.</summary>
      <param name="dpi">The DPI value for the current display device.</param>
      <returns>The <see cref="T:System.Drawing.Font" /> used to display text on menus.</returns>
    </member>
    <member name="M:System.Windows.Forms.SystemInformation.GetVerticalScrollBarWidthForDpi(System.Int32)">
      <summary>Gets the default height, in pixels, of the vertical scroll bar for a given DPI value.</summary>
      <param name="dpi">The DPI value for the current display device.</param>
      <returns>The default height, in pixels, of the vertical scroll bar.</returns>
    </member>
    <member name="M:System.Windows.Forms.SystemInformation.VerticalScrollBarArrowHeightForDpi(System.Int32)">
      <summary>Gets the height of the vertical scroll bar arrow bitmap in pixels.</summary>
      <param name="dpi">An arbitrary DPI value used to scale the vertical scroll bar arrow bitmap.</param>
      <returns>The height of the vertical scroll bar arrow bitmap in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.ActiveWindowTrackingDelay">
      <summary>Gets the active window tracking delay.</summary>
      <returns>The active window tracking delay, in milliseconds.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.ArrangeDirection">
      <summary>Gets a value that indicates the direction in which the operating system arranges minimized windows.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ArrangeDirection" /> values that indicates the direction in which the operating system arranges minimized windows.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.ArrangeStartingPosition">
      <summary>Gets an <see cref="T:System.Windows.Forms.ArrangeStartingPosition" /> value that indicates the starting position from which the operating system arranges minimized windows.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ArrangeStartingPosition" /> values that indicates the starting position from which the operating system arranges minimized windows.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.BootMode">
      <summary>Gets a <see cref="T:System.Windows.Forms.BootMode" /> value that indicates the boot mode the system was started in.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.BootMode" /> values that indicates the boot mode the system was started in.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.Border3DSize">
      <summary>Gets the thickness, in pixels, of a three-dimensional (3-D) style window or system control border.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the width, in pixels, of a 3-D style vertical border, and the height, in pixels, of a 3-D style horizontal border.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.BorderMultiplierFactor">
      <summary>Gets the border multiplier factor that is used when determining the thickness of a window's sizing border.</summary>
      <returns>The multiplier used to determine the thickness of a window's sizing border.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.BorderSize">
      <summary>Gets the thickness, in pixels, of a flat-style window or system control border.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the width, in pixels, of a vertical border, and the height, in pixels, of a horizontal border.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.CaptionButtonSize">
      <summary>Gets the standard size, in pixels, of a button in a window's title bar.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the standard dimensions, in pixels, of a button in a window's title bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.CaptionHeight">
      <summary>Gets the height, in pixels, of the standard title bar area of a window.</summary>
      <returns>The height, in pixels, of the standard title bar area of a window.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.CaretBlinkTime">
      <summary>Gets the caret blink time.</summary>
      <returns>The caret blink time.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.CaretWidth">
      <summary>Gets the width, in pixels, of the caret in edit controls.</summary>
      <exception cref="T:System.NotSupportedException">The operating system does not support this feature.</exception>
      <returns>The width, in pixels, of the caret in edit controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.ComputerName">
      <summary>Gets the NetBIOS computer name of the local computer.</summary>
      <returns>The name of this computer.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.CursorSize">
      <summary>Gets the maximum size, in pixels, that a cursor can occupy.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the maximum dimensions of a cursor in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.DbcsEnabled">
      <summary>Gets a value indicating whether the operating system is capable of handling double-byte character set (DBCS) characters.</summary>
      <returns>
        <see langword="true" /> if the operating system supports DBCS; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.DebugOS">
      <summary>Gets a value indicating whether the debug version of USER.EXE is installed.</summary>
      <returns>
        <see langword="true" /> if the debugging version of USER.EXE is installed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.DoubleClickSize">
      <summary>Gets the dimensions, in pixels, of the area within which the user must click twice for the operating system to consider the two clicks a double-click.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the dimensions, in pixels, of the area within which the user must click twice for the operating system to consider the two clicks a double-click.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.DoubleClickTime">
      <summary>Gets the maximum number of milliseconds that can elapse between a first click and a second click for the OS to consider the mouse action a double-click.</summary>
      <returns>The maximum amount of time, in milliseconds, that can elapse between a first click and a second click for the OS to consider the mouse action a double-click.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.DragFullWindows">
      <summary>Gets a value indicating whether the user has enabled full window drag.</summary>
      <returns>
        <see langword="true" /> if the user has enabled full window drag; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.DragSize">
      <summary>Gets the width and height of a rectangle centered on the point the mouse button was pressed, within which a drag operation will not begin.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the area of a rectangle, in pixels, centered on the point the mouse button was pressed, within which a drag operation will not begin.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.FixedFrameBorderSize">
      <summary>Gets the thickness, in pixels, of the frame border of a window that has a caption and is not resizable.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the thickness, in pixels, of a fixed sized window border.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.FontSmoothingContrast">
      <summary>Gets the font smoothing contrast value used in ClearType smoothing.</summary>
      <exception cref="T:System.NotSupportedException">The operating system does not support this feature.</exception>
      <returns>The ClearType font smoothing contrast value.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.FontSmoothingType">
      <summary>Gets the current type of font smoothing.</summary>
      <exception cref="T:System.NotSupportedException">The operating system does not support this feature.</exception>
      <returns>A value that indicates the current type of font smoothing.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.FrameBorderSize">
      <summary>Gets the thickness, in pixels, of the resizing border that is drawn around the perimeter of a window that is being drag resized.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the thickness, in pixels, of the width of a vertical resizing border and the height of a horizontal resizing border.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.HighContrast">
      <summary>Gets a value indicating whether the user has enabled the high-contrast mode accessibility feature.</summary>
      <returns>
        <see langword="true" /> if the user has enabled high-contrast mode; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.HorizontalFocusThickness">
      <summary>Gets the thickness of the left and right edges of the system focus rectangle, in pixels.</summary>
      <exception cref="T:System.NotSupportedException">The operating system does not support this feature.</exception>
      <returns>The thickness of the left and right edges of the system focus rectangle, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.HorizontalResizeBorderThickness">
      <summary>Gets the thickness of the left and right edges of the sizing border around the perimeter of a window being resized, in pixels.</summary>
      <returns>The width of the left and right edges of the sizing border around the perimeter of a window being resized, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.HorizontalScrollBarArrowWidth">
      <summary>Gets the width, in pixels, of the arrow bitmap on the horizontal scroll bar.</summary>
      <returns>The width, in pixels, of the arrow bitmap on the horizontal scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.HorizontalScrollBarHeight">
      <summary>Gets the default height, in pixels, of the horizontal scroll bar.</summary>
      <returns>The default height, in pixels, of the horizontal scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.HorizontalScrollBarThumbWidth">
      <summary>Gets the width, in pixels, of the scroll box in a horizontal scroll bar.</summary>
      <returns>The width, in pixels, of the scroll box in a horizontal scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IconHorizontalSpacing">
      <summary>Gets the width, in pixels, of an icon arrangement cell in large icon view.</summary>
      <returns>The width, in pixels, of an icon arrangement cell in large icon view.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IconSize">
      <summary>Gets the dimensions, in pixels, of the Windows default program icon size.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the default dimensions, in pixels, for a program icon.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IconSpacingSize">
      <summary>Gets the size, in pixels, of the grid square used to arrange icons in a large-icon view.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the dimensions, in pixels, of the grid square used to arrange icons in a large-icon view.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IconVerticalSpacing">
      <summary>Gets the height, in pixels, of an icon arrangement cell in large icon view.</summary>
      <returns>The height, in pixels, of an icon arrangement cell in large icon view.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsActiveWindowTrackingEnabled">
      <summary>Gets a value indicating whether active window tracking is enabled.</summary>
      <returns>
        <see langword="true" /> if active window tracking is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsComboBoxAnimationEnabled">
      <summary>Gets a value indicating whether the slide-open effect for combo boxes is enabled.</summary>
      <returns>
        <see langword="true" /> if the slide-open effect for combo boxes is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsDropShadowEnabled">
      <summary>Gets a value indicating whether the drop shadow effect is enabled.</summary>
      <returns>
        <see langword="true" /> if the drop shadow effect is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsFlatMenuEnabled">
      <summary>Gets a value indicating whether native user menus have a flat menu appearance.</summary>
      <returns>This property is not used and always returns <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsFontSmoothingEnabled">
      <summary>Gets a value indicating whether font smoothing is enabled.</summary>
      <returns>
        <see langword="true" /> if the font smoothing feature is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsHotTrackingEnabled">
      <summary>Gets a value indicating whether hot tracking of user-interface elements, such as menu names on menu bars, is enabled.</summary>
      <returns>
        <see langword="true" /> if hot tracking of user-interface elements is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsIconTitleWrappingEnabled">
      <summary>Gets a value indicating whether icon-title wrapping is enabled.</summary>
      <returns>
        <see langword="true" /> if the icon-title wrapping feature is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsKeyboardPreferred">
      <summary>Gets a value indicating whether the user relies on the keyboard instead of the mouse, and prefers applications to display keyboard interfaces that would otherwise be hidden.</summary>
      <returns>
        <see langword="true" /> if keyboard preferred mode is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsListBoxSmoothScrollingEnabled">
      <summary>Gets a value indicating whether the smooth-scrolling effect for list boxes is enabled.</summary>
      <returns>
        <see langword="true" /> if smooth-scrolling is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsMenuAnimationEnabled">
      <summary>Gets a value indicating whether menu fade or slide animation features are enabled.</summary>
      <returns>
        <see langword="true" /> if menu fade or slide animation is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsMenuFadeEnabled">
      <summary>Gets a value indicating whether menu fade animation is enabled.</summary>
      <returns>
        <see langword="true" /> if fade animation is enabled; <see langword="false" /> if it is disabled.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsMinimizeRestoreAnimationEnabled">
      <summary>Gets a value indicating whether window minimize and restore animation is enabled.</summary>
      <returns>
        <see langword="true" /> if window minimize and restore animation is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsSelectionFadeEnabled">
      <summary>Gets a value indicating whether the selection fade effect is enabled.</summary>
      <returns>
        <see langword="true" /> if the selection fade effect is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsSnapToDefaultEnabled">
      <summary>Gets a value indicating whether the snap-to-default-button feature is enabled.</summary>
      <returns>
        <see langword="true" /> if the snap-to-default-button feature is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsTitleBarGradientEnabled">
      <summary>Gets a value indicating whether the gradient effect for window title bars is enabled.</summary>
      <returns>
        <see langword="true" /> if the gradient effect for window title bars is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.IsToolTipAnimationEnabled">
      <summary>Gets a value indicating whether <see cref="T:System.Windows.Forms.ToolTip" /> animation is enabled.</summary>
      <returns>
        <see langword="true" /> if <see cref="T:System.Windows.Forms.ToolTip" /> animation is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.KanjiWindowHeight">
      <summary>Gets the height, in pixels, of the Kanji window at the bottom of the screen for double-byte character set (DBCS) versions of Windows.</summary>
      <returns>The height, in pixels, of the Kanji window.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.KeyboardDelay">
      <summary>Gets the keyboard repeat-delay setting.</summary>
      <returns>The keyboard repeat-delay setting, from 0 (approximately 250 millisecond delay) through 3 (approximately 1 second delay).</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.KeyboardSpeed">
      <summary>Gets the keyboard repeat-speed setting.</summary>
      <returns>The keyboard repeat-speed setting, from 0 (approximately 2.5 repetitions per second) through 31 (approximately 30 repetitions per second).</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MaxWindowTrackSize">
      <summary>Gets the default maximum dimensions, in pixels, of a window that has a caption and sizing borders.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the maximum dimensions, in pixels, to which a window can be sized.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MenuAccessKeysUnderlined">
      <summary>Gets a value indicating whether menu access keys are always underlined.</summary>
      <returns>
        <see langword="true" /> if menu access keys are always underlined; <see langword="false" /> if they are underlined only when the menu is activated or receives focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MenuBarButtonSize">
      <summary>Gets the default width, in pixels, for menu-bar buttons and the height, in pixels, of a menu bar.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the default width for menu-bar buttons, in pixels, and the height of a menu bar, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MenuButtonSize">
      <summary>Gets the default dimensions, in pixels, of menu-bar buttons.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the default dimensions, in pixels, of menu-bar buttons.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MenuCheckSize">
      <summary>Gets the dimensions, in pixels, of the default size of a menu check mark area.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the default size, in pixels, of a menu check mark area.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MenuFont">
      <summary>Gets the font used to display text on menus.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> used to display text on menus.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MenuHeight">
      <summary>Gets the height, in pixels, of one line of a menu.</summary>
      <returns>The height, in pixels, of one line of a menu.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MenuShowDelay">
      <summary>Gets the time, in milliseconds, that the system waits before displaying a cascaded shortcut menu when the mouse cursor is over a submenu item.</summary>
      <returns>The time, in milliseconds, that the system waits before displaying a cascaded shortcut menu when the mouse cursor is over a submenu item.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MidEastEnabled">
      <summary>Gets a value indicating whether the operating system is enabled for the Hebrew and Arabic languages.</summary>
      <returns>
        <see langword="true" /> if the operating system is enabled for Hebrew or Arabic; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MinimizedWindowSize">
      <summary>Gets the dimensions, in pixels, of a normal minimized window.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the dimensions, in pixels, of a normal minimized window.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MinimizedWindowSpacingSize">
      <summary>Gets the dimensions, in pixels, of the area each minimized window is allocated when arranged.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the area each minimized window is allocated when arranged.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MinimumWindowSize">
      <summary>Gets the minimum width and height for a window, in pixels.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the minimum allowable dimensions of a window, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MinWindowTrackSize">
      <summary>Gets the default minimum dimensions, in pixels, that a window may occupy during a drag resize.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the default minimum width and height of a window during resize, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MonitorCount">
      <summary>Gets the number of display monitors on the desktop.</summary>
      <returns>The number of monitors that make up the desktop.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MonitorsSameDisplayFormat">
      <summary>Gets a value indicating whether all the display monitors are using the same pixel color format.</summary>
      <returns>
        <see langword="true" /> if all monitors are using the same pixel color format; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MouseButtons">
      <summary>Gets the number of buttons on the mouse.</summary>
      <returns>The number of buttons on the mouse, or zero if no mouse is installed.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MouseButtonsSwapped">
      <summary>Gets a value indicating whether the functions of the left and right mouse buttons have been swapped.</summary>
      <returns>
        <see langword="true" /> if the functions of the left and right mouse buttons are swapped; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MouseHoverSize">
      <summary>Gets the dimensions, in pixels, of the rectangle within which the mouse pointer has to stay for the mouse hover time before a mouse hover message is generated.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the dimensions, in pixels, of the rectangle within which the mouse pointer has to stay for the mouse hover time before a mouse hover message is generated.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MouseHoverTime">
      <summary>Gets the time, in milliseconds, that the mouse pointer has to stay in the hover rectangle before a mouse hover message is generated.</summary>
      <returns>The time, in milliseconds, that the mouse pointer has to stay in the hover rectangle before a mouse hover message is generated.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MousePresent">
      <summary>Gets a value indicating whether a pointing device is installed.</summary>
      <returns>
        <see langword="true" /> if a mouse is installed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MouseSpeed">
      <summary>Gets the current mouse speed.</summary>
      <returns>A mouse speed value between 1 (slowest) and 20 (fastest).</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MouseWheelPresent">
      <summary>Gets a value indicating whether a mouse with a mouse wheel is installed.</summary>
      <returns>
        <see langword="true" /> if a mouse with a mouse wheel is installed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MouseWheelScrollDelta">
      <summary>Gets the amount of the delta value of a single mouse wheel rotation increment.</summary>
      <returns>The amount of the delta value of a single mouse wheel rotation increment.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.MouseWheelScrollLines">
      <summary>Gets the number of lines to scroll when the mouse wheel is rotated.</summary>
      <returns>The number of lines to scroll on a mouse wheel rotation, or -1 if the "One screen at a time" mouse option is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.NativeMouseWheelSupport">
      <summary>Gets a value indicating whether a mouse with a mouse wheel is installed.</summary>
      <returns>
        <see langword="true" /> if a mouse with a mouse wheel is installed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.Network">
      <summary>Gets a value indicating whether a network connection is present.</summary>
      <returns>
        <see langword="true" /> if a network connection is present; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.PenWindows">
      <summary>Gets a value indicating whether the Microsoft Windows for Pen Computing extensions are installed.</summary>
      <returns>
        <see langword="true" /> if the Windows for Pen Computing extensions are installed; <see langword="false" /> if Windows for Pen Computing extensions are not installed.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.PopupMenuAlignment">
      <summary>Gets the side of pop-up menus that are aligned to the corresponding menu-bar item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.LeftRightAlignment" /> that indicates whether pop-up menus are left-aligned or right-aligned, relative to the corresponding menu-bar item.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.PowerStatus">
      <summary>Gets the current system power status.</summary>
      <returns>A <see cref="T:System.Windows.Forms.PowerStatus" /> that indicates the current system power status.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.PrimaryMonitorMaximizedWindowSize">
      <summary>Gets the default dimensions, in pixels, of a maximized window on the primary display.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the dimensions, in pixels, of a maximized window on the primary display.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.PrimaryMonitorSize">
      <summary>Gets the dimensions, in pixels, of the current video mode of the primary display.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the dimensions, in pixels, of the current video mode of the primary display.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.RightAlignedMenus">
      <summary>Gets a value indicating whether drop-down menus are right-aligned with the corresponding menu-bar item.</summary>
      <returns>
        <see langword="true" /> if drop-down menus are right-aligned with the corresponding menu-bar item; <see langword="false" /> if the menus are left-aligned.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.ScreenOrientation">
      <summary>Gets the orientation of the screen.</summary>
      <returns>The orientation of the screen, in degrees.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.Secure">
      <summary>Gets a value indicating whether a Security Manager is present on this operating system.</summary>
      <returns>
        <see langword="true" /> if a Security Manager is present; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.ShowSounds">
      <summary>Gets a value indicating whether the user prefers that an application present information in visual form in situations when it would present the information in audible form.</summary>
      <returns>
        <see langword="true" /> if the application should visually show information about audible output; <see langword="false" /> if the application does not need to provide extra visual cues for audio events.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.SizingBorderWidth">
      <summary>Gets the width, in pixels, of the sizing border drawn around the perimeter of a window being resized.</summary>
      <returns>The width, in pixels, of the window sizing border drawn around the perimeter of a window being resized.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.SmallCaptionButtonSize">
      <summary>Gets the width, in pixels, of small caption buttons, and the height, in pixels, of small captions.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the width, in pixels, of small caption buttons, and the height, in pixels, of small captions.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.SmallIconSize">
      <summary>Gets the dimensions, in pixels, of a small icon.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the dimensions, in pixels, of a small icon.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.TerminalServerSession">
      <summary>Gets a value indicating whether the calling process is associated with a Terminal Services client session.</summary>
      <returns>
        <see langword="true" /> if the calling process is associated with a Terminal Services client session; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.ToolWindowCaptionButtonSize">
      <summary>Gets the dimensions, in pixels, of small caption buttons.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that indicates the dimensions, in pixels, of small caption buttons.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.ToolWindowCaptionHeight">
      <summary>Gets the height, in pixels, of a tool window caption.</summary>
      <returns>The height, in pixels, of a tool window caption in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.UIEffectsEnabled">
      <summary>Gets a value indicating whether user interface (UI) effects are enabled or disabled.</summary>
      <returns>
        <see langword="true" /> if UI effects are enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.UserDomainName">
      <summary>Gets the name of the domain the user belongs to.</summary>
      <exception cref="T:System.ComponentModel.Win32Exception">The operating system does not support this feature.</exception>
      <returns>The name of the user domain. If a local user account exists with the same name as the user name, this property gets the computer name.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.UserInteractive">
      <summary>Gets a value indicating whether the current process is running in user-interactive mode.</summary>
      <returns>
        <see langword="true" /> if the current process is running in user-interactive mode; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.UserName">
      <summary>Gets the user name associated with the current thread.</summary>
      <returns>The user name of the user associated with the current thread.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.VerticalFocusThickness">
      <summary>Gets the thickness, in pixels, of the top and bottom edges of the system focus rectangle.</summary>
      <exception cref="T:System.NotSupportedException">The operating system does not support this feature.</exception>
      <returns>The thickness, in pixels, of the top and bottom edges of the system focus rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.VerticalResizeBorderThickness">
      <summary>Gets the thickness, in pixels, of the top and bottom edges of the sizing border around the perimeter of a window being resized.</summary>
      <returns>The height, in pixels, of the top and bottom edges of the sizing border around the perimeter of a window being resized, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.VerticalScrollBarArrowHeight">
      <summary>Gets the height, in pixels, of the arrow bitmap on the vertical scroll bar.</summary>
      <returns>The height, in pixels, of the arrow bitmap on the vertical scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.VerticalScrollBarThumbHeight">
      <summary>Gets the height, in pixels, of the scroll box in a vertical scroll bar.</summary>
      <returns>The height, in pixels, of the scroll box in a vertical scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.VerticalScrollBarWidth">
      <summary>Gets the default width, in pixels, of the vertical scroll bar.</summary>
      <returns>The default width, in pixels, of the vertical scroll bar.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.VirtualScreen">
      <summary>Gets the bounds of the virtual screen.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that specifies the bounding rectangle of the entire virtual screen.</returns>
    </member>
    <member name="P:System.Windows.Forms.SystemInformation.WorkingArea">
      <summary>Gets the size, in pixels, of the working area of the screen.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the size, in pixels, of the working area of the screen.</returns>
    </member>
    <member name="T:System.Windows.Forms.SystemParameter">
      <summary>Specifies the system parameter type.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.CaretWidthMetric">
      <summary>Identifies the caret width, in pixels, for edit controls. Use the <see cref="P:System.Windows.Forms.SystemInformation.CaretWidth" /> property to access this system-wide parameter. The corresponding Platform SDK system-wide parameters are SPI_GETCARETWIDTH and SPI_SETCARETWIDTH.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.DropShadow">
      <summary>Identifies the drop shadow effect. Use the <see cref="P:System.Windows.Forms.SystemInformation.IsDropShadowEnabled" /> property to determine if this effect is enabled. The corresponding Platform SDK system-wide parameters are SPI_GETDROPSHADOW and SPI_SETDROPSHADOW.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.FlatMenu">
      <summary>Identifies the flat menu appearance feature. Use the <see cref="P:System.Windows.Forms.SystemInformation.IsFlatMenuEnabled" /> property to determine if this feature is enabled. The corresponding Platform SDK system-wide parameters are SPI_GETFLATMENU and SPI_SETFLATMENU.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.FontSmoothingContrastMetric">
      <summary>Identifies the contrast value used in ClearType font smoothing. Use the <see cref="P:System.Windows.Forms.SystemInformation.FontSmoothingContrast" /> property to access this system-wide parameter. The corresponding Platform SDK system-wide parameters are SPI_GETFONTSMOOTHINGCONTRAST and SPI_SETFONTSMOOTHINGCONTRAST.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.FontSmoothingTypeMetric">
      <summary>Identifies the type of font smoothing. Use the <see cref="P:System.Windows.Forms.SystemInformation.FontSmoothingType" /> property to access this system-wide parameter. The corresponding Platform SDK system-wide parameters are SPI_GETFONTSMOOTHINGTYPE and SPI_SETFONTSMOOTHINGTYPE.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.HorizontalFocusThicknessMetric">
      <summary>Identifies the thickness of the left and right edges of the system focus rectangle. Use the <see cref="P:System.Windows.Forms.SystemInformation.HorizontalFocusThickness" /> property to access this system-wide parameter. The corresponding Platform SDK system-wide parameter is SM_CXFOCUSBORDER.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.MenuFadeEnabled">
      <summary>Identifies the menu fade animation feature. Use the <see cref="P:System.Windows.Forms.SystemInformation.IsMenuFadeEnabled" /> property to determine if this feature is enabled. The corresponding Platform SDK system-wide parameters are SPI_GETMENUFADE and SPI_SETMENUFADE.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.SelectionFade">
      <summary>Identifies the selection fade effect. Use the <see cref="P:System.Windows.Forms.SystemInformation.IsSelectionFadeEnabled" /> property to determine if this feature is enabled. The corresponding Platform SDK system-wide parameters are SPI_GETSELECTIONFADE and SPI_SETSELECTIONFADE.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.ToolTipAnimationMetric">
      <summary>Identifies the ToolTip animation feature. Use the <see cref="P:System.Windows.Forms.SystemInformation.IsToolTipAnimationEnabled" /> property to determine if this feature is enabled. The corresponding Platform SDK system-wide parameters are SPI_GETTOOLTIPANIMATION and SPI_SETTOOLTIPANIMATION.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.UIEffects">
      <summary>Identifies the user interface (UI) effects feature. Use the <see cref="P:System.Windows.Forms.SystemInformation.UIEffectsEnabled" /> property to determine if this feature is enabled. The corresponding Platform SDK system-wide parameters are SPI_GETUIEFFECTS and SPI_SETUIEFFECTS.</summary>
    </member>
    <member name="F:System.Windows.Forms.SystemParameter.VerticalFocusThicknessMetric">
      <summary>Identifies the thickness of the top and bottom edges of the system focus rectangle. Use the <see cref="P:System.Windows.Forms.SystemInformation.VerticalFocusThickness" /> property to access this system-wide parameter. The corresponding Platform SDK system-wide parameter is SM_CYFOCUSBORDER.</summary>
    </member>
    <member name="T:System.Windows.Forms.TabAlignment">
      <summary>Specifies the locations of the tabs in a tab control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabAlignment.Bottom">
      <summary>The tabs are located across the bottom of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabAlignment.Left">
      <summary>The tabs are located along the left edge of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabAlignment.Right">
      <summary>The tabs are located along the right edge of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabAlignment.Top">
      <summary>The tabs are located across the top of the control.</summary>
    </member>
    <member name="T:System.Windows.Forms.TabAppearance">
      <summary>Specifies the appearance of the tabs in a tab control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabAppearance.Buttons">
      <summary>The tabs have the appearance of three-dimensional buttons.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabAppearance.FlatButtons">
      <summary>The tabs have the appearance of flat buttons.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabAppearance.Normal">
      <summary>The tabs have the standard appearance of tabs.</summary>
    </member>
    <member name="T:System.Windows.Forms.TabControl">
      <summary>Manages a related set of tab pages.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.BackColorChanged">
      <summary>This event is not meaningful for this control.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabControl.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabControl.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.Deselected">
      <summary>Occurs when a tab is deselected.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.Deselecting">
      <summary>Occurs before a tab is deselected, enabling a handler to cancel the tab change.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.DrawItem">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.TabControl" /> needs to paint each of its tabs if the <see cref="P:System.Windows.Forms.TabControl.DrawMode" /> property is set to <see cref="F:System.Windows.Forms.TabDrawMode.OwnerDrawFixed" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.ForeColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabControl.ForeColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.Paint">
      <summary>This event is not meaningful for this control.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.RightToLeftLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabControl.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.Selected">
      <summary>Occurs when a tab is selected.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.SelectedIndexChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TabControl.SelectedIndex" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.Selecting">
      <summary>Occurs before a tab is selected, enabling a handler to cancel the tab change.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabControl.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabControl.Text" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabControl.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TabControl" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabControl.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.TabControl.CreateControlsInstance">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.CreateControlsInstance" />.</summary>
      <returns>A new instance of <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.CreateHandle">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.CreateHandle" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabControl.DeselectTab(System.Int32)">
      <summary>Makes the tab following the tab with the specified index the current tab.</summary>
      <param name="index">The index in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection of the tab to deselect.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than the number of <see cref="T:System.Windows.Forms.TabPage" /> controls in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.DeselectTab(System.String)">
      <summary>Makes the tab following the tab with the specified name the current tab.</summary>
      <param name="tabPageName">The <see cref="P:System.Windows.Forms.Control.Name" /> of the tab to deselect.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="tabPageName" /> argument is <see langword="null" />.  
  
 -or-  
  
 The <paramref name="tabPageName" /> argument does not match the <see cref="P:System.Windows.Forms.Control.Name" /> property of any <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.DeselectTab(System.Windows.Forms.TabPage)">
      <summary>Makes the tab following the specified <see cref="T:System.Windows.Forms.TabPage" /> the current tab.</summary>
      <param name="tabPage">The <see cref="T:System.Windows.Forms.TabPage" /> to deselect.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than the number of <see cref="T:System.Windows.Forms.TabPage" /> controls in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection minus 1.  
  
 -or-  
  
 <paramref name="tabPage" /> is not in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</exception>
      <exception cref="T:System.ArgumentNullException">The <paramref name="tabPage" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control" /> and its child controls and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.GetControl(System.Int32)">
      <summary>Gets the <see cref="T:System.Windows.Forms.TabPage" /> control at the specified location.</summary>
      <param name="index">The index of the <see cref="T:System.Windows.Forms.TabPage" /> to get.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than the <see cref="P:System.Windows.Forms.TabControl.TabCount" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TabPage" /> at the specified location.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.GetItems">
      <summary>Gets an array of <see cref="T:System.Windows.Forms.TabPage" /> controls that belong to the <see cref="T:System.Windows.Forms.TabControl" /> control.</summary>
      <returns>An array of <see cref="T:System.Windows.Forms.TabPage" /> controls that belong to the <see cref="T:System.Windows.Forms.TabControl" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.GetItems(System.Type)">
      <summary>Copies the <see cref="T:System.Windows.Forms.TabPage" /> controls in the <see cref="T:System.Windows.Forms.TabControl" /> to an array of the specified type.</summary>
      <param name="baseType">The <see cref="T:System.Type" /> of the array to create.</param>
      <exception cref="T:System.ArrayTypeMismatchException">The type <see cref="T:System.Windows.Forms.TabPage" /> cannot be converted to <paramref name="baseType" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TabPage" /> controls that belong to the <see cref="T:System.Windows.Forms.TabControl" /> as an array of the specified type.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.GetTabRect(System.Int32)">
      <summary>Returns the bounding rectangle for a specified tab in this tab control.</summary>
      <param name="index">The zero-based index of the tab you want.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The index is less than zero.  
  
 -or-  
  
 The index is greater than or equal to <see cref="P:System.Windows.Forms.TabControl.TabPageCollection.Count" />.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the specified tab.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.GetToolTipText(System.Object)">
      <summary>Gets the ToolTip for the specified <see cref="T:System.Windows.Forms.TabPage" />.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.TabPage" /> that owns the desired ToolTip.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: The <paramref name="item" /> argument is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">.NET 5 and later: The <paramref name="item" /> argument is not of type <see cref="T:System.Windows.Forms.TabPage" />.</exception>
      <returns>The ToolTip text.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnDeselected(System.Windows.Forms.TabControlEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TabControl.Deselected" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TabControlEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnDeselecting(System.Windows.Forms.TabControlCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TabControl.Deselecting" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TabControlCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnDrawItem(System.Windows.Forms.DrawItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TabControl.DrawItem" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Enter" /> event of the <see cref="T:System.Windows.Forms.TabControl" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnGotFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnHandleCreated(System.EventArgs)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.OnHandleCreated(System.EventArgs)" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</summary>
      <param name="ke">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Leave" /> event of the <see cref="T:System.Windows.Forms.TabControl" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnLostFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnResize(System.EventArgs)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.OnResize(System.EventArgs)" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnRightToLeftLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TabControl.RightToLeftLayoutChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnSelected(System.Windows.Forms.TabControlEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TabControl.Selected" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TabControlEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnSelectedIndexChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TabControl.SelectedIndexChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnSelecting(System.Windows.Forms.TabControlCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TabControl.Selecting" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TabControlCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.OnStyleChanged(System.EventArgs)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.OnStyleChanged(System.EventArgs)" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.ProcessKeyPreview(System.Windows.Forms.Message@)">
      <summary>Previews a keyboard message.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.RemoveAll">
      <summary>Removes all the tab pages and additional controls from this tab control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabControl.ScaleCore(System.Single,System.Single)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.ScaleCore(System.Single,System.Single)" />.</summary>
      <param name="dx">The horizontal scaling factor.</param>
      <param name="dy">The vertical scaling factor.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.SelectTab(System.Int32)">
      <summary>Makes the tab with the specified index the current tab.</summary>
      <param name="index">The index in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection of the tab to select.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than the number of <see cref="T:System.Windows.Forms.TabPage" /> controls in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection minus 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.SelectTab(System.String)">
      <summary>Makes the tab with the specified name the current tab.</summary>
      <param name="tabPageName">The <see cref="P:System.Windows.Forms.Control.Name" /> of the tab to select.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="tabPageName" /> argument is <see langword="null" />.  
  
 -or-  
  
 The <paramref name="tabPageName" /> argument does not match the <see cref="P:System.Windows.Forms.Control.Name" /> property of any <see cref="T:System.Windows.Forms.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.SelectTab(System.Windows.Forms.TabPage)">
      <summary>Makes the specified <see cref="T:System.Windows.Forms.TabPage" /> the current tab.</summary>
      <param name="tabPage">The <see cref="T:System.Windows.Forms.TabPage" /> to select.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0 or greater than the number of <see cref="T:System.Windows.Forms.TabPage" /> controls in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection minus 1.  
  
 -or-  
  
 <paramref name="tabPage" /> is not in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</exception>
      <exception cref="T:System.ArgumentNullException">The <paramref name="tabPage" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.TabControl" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.TabControl" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.UpdateTabSelection(System.Boolean)">
      <summary>Sets the <see cref="P:System.Windows.Forms.TabPage.Visible" /> property to <see langword="true" /> for the appropriate <see cref="T:System.Windows.Forms.TabPage" /> control in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</summary>
      <param name="updateFocus">
        <see langword="true" /> to change focus to the next <see cref="T:System.Windows.Forms.TabPage" />; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.WndProc(System.Windows.Forms.Message@)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" />.</summary>
      <param name="m">A Windows Message Object.</param>
    </member>
    <member name="P:System.Windows.Forms.TabControl.Alignment">
      <summary>Gets or sets the area of the control (for example, along the top) where the tabs are aligned.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The property value is not a valid <see cref="T:System.Windows.Forms.TabAlignment" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.TabAlignment" /> values. The default is <see langword="Top" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.Appearance">
      <summary>Gets or sets the visual appearance of the control's tabs.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The property value is not a valid <see cref="T:System.Windows.Forms.TabAppearance" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.TabAppearance" /> values. The default is <see langword="Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.BackColor">
      <summary>This member is not meaningful for this control.</summary>
      <returns>The background color for the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.BackgroundImage">
      <summary>This member is not meaningful for this control.</summary>
      <returns>The background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.BackgroundImageLayout">
      <summary>This member is not meaningful for this control.</summary>
      <returns>One of the values of <see cref="T:System.Windows.Forms.ImageLayout" />. The default value is Tile.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.CreateParams">
      <summary>This member overrides <see cref="P:System.Windows.Forms.Control.CreateParams" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.DisplayRectangle">
      <summary>Gets the display area of the control's tab pages.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the display area of the tab pages.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.DoubleBuffered">
      <summary>This member is not meaningful for this control.</summary>
      <returns>A <see cref="T:System.Boolean" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.DrawMode">
      <summary>Gets or sets the way that the control's tabs are drawn.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The property value is not a valid <see cref="T:System.Windows.Forms.TabDrawMode" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.TabDrawMode" /> values. The default is <see langword="Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.ForeColor">
      <summary>This member is not meaningful for this control.</summary>
      <returns>The foreground color of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.HotTrack">
      <summary>Gets or sets a value indicating whether the control's tabs change in appearance when the mouse passes over them.</summary>
      <returns>
        <see langword="true" /> if the tabs change in appearance when the mouse passes over them; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.ImageList">
      <summary>Gets or sets the images to display on the control's tabs.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageList" /> that specifies the images to display on the tabs.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.ItemSize">
      <summary>Gets or sets the size of the control's tabs.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The width or height of the <see cref="T:System.Drawing.Size" /> is less than 0.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the size of the tabs. The default automatically sizes the tabs to fit the icons and labels on the tabs.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.Multiline">
      <summary>Gets or sets a value indicating whether more than one row of tabs can be displayed.</summary>
      <returns>
        <see langword="true" /> if more than one row of tabs can be displayed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.Padding">
      <summary>Gets or sets the amount of space around each item on the control's tab pages.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The width or height of the <see cref="T:System.Drawing.Point" /> is less than 0.</exception>
      <returns>A <see cref="T:System.Drawing.Point" /> that specifies the amount of space around each item. The default is (6,3).</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.RightToLeftLayout">
      <summary>Gets or sets a value indicating whether right-to-left mirror placement is turned on.</summary>
      <returns>
        <see langword="true" /> if right-to-left mirror placement is turned on; <see langword="false" /> for standard child control placement. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.RowCount">
      <summary>Gets the number of rows that are currently being displayed in the control's tab strip.</summary>
      <returns>The number of rows that are currently being displayed in the tab strip.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.SelectedIndex">
      <summary>Gets or sets the index of the currently selected tab page.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than -1.</exception>
      <returns>The zero-based index of the currently selected tab page. The default is -1, which is also the value if no tab page is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.SelectedTab">
      <summary>Gets or sets the currently selected tab page.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TabPage" /> that represents the selected tab page. If no tab page is selected, the value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.ShowToolTips">
      <summary>Gets or sets a value indicating whether a tab's ToolTip is shown when the mouse passes over the tab.</summary>
      <returns>
        <see langword="true" /> if ToolTips are shown for the tabs that have them; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.SizeMode">
      <summary>Gets or sets the way that the control's tabs are sized.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The property value is not a valid <see cref="T:System.Windows.Forms.TabSizeMode" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.TabSizeMode" /> values. The default is <see langword="Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabCount">
      <summary>Gets the number of tabs in the tab strip.</summary>
      <returns>The number of tabs in the tab strip.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabPages">
      <summary>Gets the collection of tab pages in this tab control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" /> that contains the <see cref="T:System.Windows.Forms.TabPage" /> objects in this <see cref="T:System.Windows.Forms.TabControl" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.Text">
      <summary>This member is not meaningful for this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="T:System.Windows.Forms.TabControl.ControlCollection">
      <summary>Contains a collection of <see cref="T:System.Windows.Forms.Control" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabControl.ControlCollection.#ctor(System.Windows.Forms.TabControl)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TabControl.ControlCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.TabControl" /> that this collection belongs to.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.ControlCollection.Add(System.Windows.Forms.Control)">
      <summary>Adds a <see cref="T:System.Windows.Forms.Control" /> to the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.Control" /> to add.</param>
      <exception cref="T:System.Exception">The specified <see cref="T:System.Windows.Forms.Control" /> is a <see cref="T:System.Windows.Forms.TabPage" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.ControlCollection.Remove(System.Windows.Forms.Control)">
      <summary>Removes a <see cref="T:System.Windows.Forms.Control" /> from the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.Control" /> to remove.</param>
    </member>
    <member name="T:System.Windows.Forms.TabControl.TabPageCollection">
      <summary>Contains a collection of <see cref="T:System.Windows.Forms.TabPage" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.#ctor(System.Windows.Forms.TabControl)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.TabControl" /> that this collection belongs to.</param>
      <exception cref="T:System.ArgumentNullException">The specified <see cref="T:System.Windows.Forms.TabControl" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.String)">
      <summary>Creates a tab page with the specified text, and adds it to the collection.</summary>
      <param name="text">The text to display on the tab page.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.String,System.String)">
      <summary>Creates a tab page with the specified text and key, and adds it to the collection.</summary>
      <param name="key">The name of the tab page.</param>
      <param name="text">The text to display on the tab page.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.String,System.String,System.Int32)">
      <summary>Creates a tab page with the specified key, text, and image, and adds it to the collection.</summary>
      <param name="key">The name of the tab page.</param>
      <param name="text">The text to display on the tab page.</param>
      <param name="imageIndex">The index of the image to display on the tab page.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.String,System.String,System.String)">
      <summary>Creates a tab page with the specified key, text, and image, and adds it to the collection.</summary>
      <param name="key">The name of the tab page.</param>
      <param name="text">The text to display on the tab page.</param>
      <param name="imageKey">The key of the image to display on the tab page.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Add(System.Windows.Forms.TabPage)">
      <summary>Adds a <see cref="T:System.Windows.Forms.TabPage" /> to the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.TabPage" /> to add.</param>
      <exception cref="T:System.ArgumentNullException">The specified <paramref name="value" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.AddRange(System.Windows.Forms.TabPage[])">
      <summary>Adds a set of tab pages to the collection.</summary>
      <param name="pages">An array of type <see cref="T:System.Windows.Forms.TabPage" /> that contains the tab pages to add.</param>
      <exception cref="T:System.ArgumentNullException">The value of pages equals <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Clear">
      <summary>Removes all the tab pages from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Contains(System.Windows.Forms.TabPage)">
      <summary>Determines whether a specified tab page is in the collection.</summary>
      <param name="page">The <see cref="T:System.Windows.Forms.TabPage" /> to locate in the collection.</param>
      <exception cref="T:System.ArgumentNullException">The value of <paramref name="page" /> is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the specified <see cref="T:System.Windows.Forms.TabPage" /> is in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.ContainsKey(System.String)">
      <summary>Determines whether the collection contains a tab page with the specified key.</summary>
      <param name="key">The name of the tab page to search for.</param>
      <returns>
        <see langword="true" /> to indicate a tab page with the specified key was found in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.GetEnumerator">
      <summary>Returns an enumeration of all the tab pages in the collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.IndexOf(System.Windows.Forms.TabPage)">
      <summary>Returns the index of the specified tab page in the collection.</summary>
      <param name="page">The <see cref="T:System.Windows.Forms.TabPage" /> to locate in the collection.</param>
      <exception cref="T:System.ArgumentNullException">The value of <paramref name="page" /> is <see langword="null" />.</exception>
      <returns>The zero-based index of the tab page; -1 if it cannot be found.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.IndexOfKey(System.String)">
      <summary>Returns the index of the first occurrence of the <see cref="T:System.Windows.Forms.TabPage" /> with the specified key.</summary>
      <param name="key">The name of the tab page to find in the collection.</param>
      <returns>The zero-based index of the first occurrence of a tab page with the specified key, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.String)">
      <summary>Creates a new tab page with the specified text and inserts it into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the tab page is inserted.</param>
      <param name="text">The text to display in the tab page.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.String,System.String)">
      <summary>Creates a new tab page with the specified key and text, and inserts it into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the tab page is inserted.</param>
      <param name="key">The name of the tab page.</param>
      <param name="text">The text to display on the tab page.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.String,System.String,System.Int32)">
      <summary>Creates a new tab page with the specified key, text, and image, and inserts it into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the tab page is inserted.</param>
      <param name="key">The name of the tab page.</param>
      <param name="text">The text to display on the tab page.</param>
      <param name="imageIndex">The zero-based index of the image to display on the tab page.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.String,System.String,System.String)">
      <summary>Creates a tab page with the specified key, text, and image, and inserts it into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the tab page is inserted.</param>
      <param name="key">The name of the tab page.</param>
      <param name="text">The text to display on the tab page.</param>
      <param name="imageKey">The key of the image to display on the tab page.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Insert(System.Int32,System.Windows.Forms.TabPage)">
      <summary>Inserts an existing tab page into the collection at the specified index.</summary>
      <param name="index">The zero-based index location where the tab page is inserted.</param>
      <param name="tabPage">The <see cref="T:System.Windows.Forms.TabPage" /> to insert in the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.Remove(System.Windows.Forms.TabPage)">
      <summary>Removes a <see cref="T:System.Windows.Forms.TabPage" /> from the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.TabPage" /> to remove.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.RemoveAt(System.Int32)">
      <summary>Removes the tab page at the specified index from the collection.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.TabPage" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.RemoveByKey(System.String)">
      <summary>Removes the tab page with the specified key from the collection.</summary>
      <param name="key">The name of the tab page to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>Copies the elements of the collection to the specified array, starting at the specified index.</summary>
      <param name="dest">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
      <param name="index">The zero-based index in the array at which copying begins.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dest" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="dest" /> is multidimensional.  
  
 -or-  
  
 The number of elements in the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" /> is greater than the available space from index to the end of <paramref name="dest" />.</exception>
      <exception cref="T:System.InvalidCastException">The items in the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" /> cannot be cast automatically to the type of <paramref name="dest" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds a <see cref="T:System.Windows.Forms.TabPage" /> control to the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.TabPage" /> to add to the collection.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="value" /> is not a <see cref="T:System.Windows.Forms.TabPage" />.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <returns>The position into which the <see cref="T:System.Windows.Forms.TabPage" /> was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified <see cref="T:System.Windows.Forms.TabPage" /> control is in the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" />.</summary>
      <param name="page">The object to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the specified object is a <see cref="T:System.Windows.Forms.TabPage" /> in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index of the specified <see cref="T:System.Windows.Forms.TabPage" /> control in the collection.</summary>
      <param name="page">The <see cref="T:System.Windows.Forms.TabPage" /> to locate in the collection.</param>
      <returns>The zero-based index if page is a <see cref="T:System.Windows.Forms.TabPage" /> in the collection; otherwise -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts a <see cref="T:System.Windows.Forms.TabPage" /> control into the collection.</summary>
      <param name="index">The zero-based index at which the <see cref="T:System.Windows.Forms.TabPage" /> should be inserted.</param>
      <param name="tabPage">The <see cref="T:System.Windows.Forms.TabPage" /> to insert into the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" />.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="tabPage" /> is not a <see cref="T:System.Windows.Forms.TabPage" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than 0, or index is greater than or equal to <see cref="P:System.Windows.Forms.TabControl.TabPageCollection.Count" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes a <see cref="T:System.Windows.Forms.TabPage" /> from the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.TabPage" /> to remove.</param>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabPageCollection.Count">
      <summary>Gets the number of tab pages in the collection.</summary>
      <returns>The number of tab pages in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabPageCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>This property always returns <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabPageCollection.Item(System.Int32)">
      <summary>Gets or sets a <see cref="T:System.Windows.Forms.TabPage" /> in the collection.</summary>
      <param name="index">The zero-based index of the tab page to get or set.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="index" /> is less than zero or greater than the highest available index.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TabPage" /> at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabPageCollection.Item(System.String)">
      <summary>Gets a tab page with the specified key from the collection.</summary>
      <param name="key">The name of the tab page to retrieve.</param>
      <returns>The <see cref="T:System.Windows.Forms.TabPage" /> with the specified key.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" /> is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" />.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.TabControl.TabPageCollection" /> has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControl.TabPageCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets a <see cref="T:System.Windows.Forms.TabPage" /> in the collection.</summary>
      <param name="index">The zero-based index of the element to get.</param>
      <exception cref="T:System.ArgumentException">The value is not a <see cref="T:System.Windows.Forms.TabPage" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TabPage" /> at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.TabControlAction">
      <summary>Defines values representing <see cref="T:System.Windows.Forms.TabControl" /> events.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabControlAction.Deselected">
      <summary>Represents the <see cref="E:System.Windows.Forms.TabControl.Deselected" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabControlAction.Deselecting">
      <summary>Represents the <see cref="E:System.Windows.Forms.TabControl.Deselecting" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabControlAction.Selected">
      <summary>Represents the <see cref="E:System.Windows.Forms.TabControl.Selected" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabControlAction.Selecting">
      <summary>Represents the <see cref="E:System.Windows.Forms.TabControl.Selecting" /> event.</summary>
    </member>
    <member name="T:System.Windows.Forms.TabControlCancelEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TabControl.Selecting" /> and <see cref="E:System.Windows.Forms.TabControl.Deselecting" /> events of a <see cref="T:System.Windows.Forms.TabControl" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabControlCancelEventArgs.#ctor(System.Windows.Forms.TabPage,System.Int32,System.Boolean,System.Windows.Forms.TabControlAction)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TabControlCancelEventArgs" /> class.</summary>
      <param name="tabPage">The <see cref="T:System.Windows.Forms.TabPage" /> the event is occurring for.</param>
      <param name="tabPageIndex">The zero-based index of <paramref name="tabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</param>
      <param name="cancel">
        <see langword="true" /> to cancel the tab change by default; otherwise, <see langword="false" />.</param>
      <param name="action">One of the <see cref="T:System.Windows.Forms.TabControlAction" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.TabControlCancelEventArgs.Action">
      <summary>Gets a value indicating which event is occurring.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.TabControlAction" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControlCancelEventArgs.TabPage">
      <summary>Gets the <see cref="T:System.Windows.Forms.TabPage" /> the event is occurring for.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TabPage" /> the event is occurring for.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControlCancelEventArgs.TabPageIndex">
      <summary>Gets the zero-based index of the <see cref="P:System.Windows.Forms.TabControlCancelEventArgs.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</summary>
      <returns>The zero-based index of the <see cref="P:System.Windows.Forms.TabControlCancelEventArgs.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.TabControlCancelEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.TabControl.Selecting" /> or <see cref="E:System.Windows.Forms.TabControl.Deselecting" /> event of a <see cref="T:System.Windows.Forms.TabControl" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.TabControlCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.TabControlEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TabControl.Selected" /> and <see cref="E:System.Windows.Forms.TabControl.Deselected" /> events of a <see cref="T:System.Windows.Forms.TabControl" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabControlEventArgs.#ctor(System.Windows.Forms.TabPage,System.Int32,System.Windows.Forms.TabControlAction)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TabControlEventArgs" /> class.</summary>
      <param name="tabPage">The <see cref="T:System.Windows.Forms.TabPage" /> the event is occurring for.</param>
      <param name="tabPageIndex">The zero-based index of <paramref name="tabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</param>
      <param name="action">One of the <see cref="T:System.Windows.Forms.TabControlAction" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.TabControlEventArgs.Action">
      <summary>Gets a value indicating which event is occurring.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.TabControlAction" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControlEventArgs.TabPage">
      <summary>Gets the <see cref="T:System.Windows.Forms.TabPage" /> the event is occurring for.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TabPage" /> the event is occurring for.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabControlEventArgs.TabPageIndex">
      <summary>Gets the zero-based index of the <see cref="P:System.Windows.Forms.TabControlEventArgs.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</summary>
      <returns>The zero-based index of the <see cref="P:System.Windows.Forms.TabControlEventArgs.TabPage" /> in the <see cref="P:System.Windows.Forms.TabControl.TabPages" /> collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.TabControlEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.TabControl.Selected" /> or <see cref="E:System.Windows.Forms.TabControl.Deselected" /> event of a <see cref="T:System.Windows.Forms.TabControl" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.TabControlEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.TabDrawMode">
      <summary>Specifies whether the tabs in a tab control are owner-drawn (drawn by the parent window), or drawn by the operating system.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabDrawMode.Normal">
      <summary>The tabs are drawn by the operating system, and are of the same size.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabDrawMode.OwnerDrawFixed">
      <summary>The tabs are drawn by the parent window, and are of the same size.</summary>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutCellPaintEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TableLayoutPanel.CellPaint" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutCellPaintEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TableLayoutCellPaintEventArgs" /> class.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to paint the item.</param>
      <param name="clipRectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the rectangle in which to paint.</param>
      <param name="cellBounds">The bounds of the cell.</param>
      <param name="column">The column of the cell.</param>
      <param name="row">The row of the cell.</param>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutCellPaintEventArgs.CellBounds">
      <summary>Gets the size and location of the cell.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> representing the size and location of the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutCellPaintEventArgs.Column">
      <summary>Gets the column of the cell.</summary>
      <returns>The column position of the cell.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutCellPaintEventArgs.Row">
      <summary>Gets the row of the cell.</summary>
      <returns>The row position of the cell.</returns>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutCellPaintEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.TableLayoutPanel.CellPaint" /> event.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.TableLayoutCellPaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutColumnStyleCollection">
      <summary>A collection that stores <see cref="T:System.Windows.Forms.ColumnStyle" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutColumnStyleCollection.Add(System.Windows.Forms.ColumnStyle)">
      <summary>Adds an item to the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />.</summary>
      <param name="columnStyle">The <see cref="T:System.Windows.Forms.ColumnStyle" /> to add to the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />.</param>
      <returns>The position into which the new element was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutColumnStyleCollection.Contains(System.Windows.Forms.ColumnStyle)">
      <summary>Determines whether the specified <see cref="T:System.Windows.Forms.ColumnStyle" /> is in the collection.</summary>
      <param name="columnStyle">The <see cref="T:System.Windows.Forms.ColumnStyle" /> to locate in the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />. The value can be <see langword="null" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ColumnStyle" /> is found in the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutColumnStyleCollection.IndexOf(System.Windows.Forms.ColumnStyle)">
      <summary>Determines the index of a specific item in the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />.</summary>
      <param name="columnStyle">The <see cref="T:System.Windows.Forms.ColumnStyle" /> to locate in the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />.</param>
      <returns>The index of <paramref name="columnStyle" /> if found in the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutColumnStyleCollection.Insert(System.Int32,System.Windows.Forms.ColumnStyle)">
      <summary>Inserts a <see cref="T:System.Windows.Forms.ColumnStyle" /> into the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" /> at the specified position.</summary>
      <param name="index">The zero-based index at which <see cref="T:System.Windows.Forms.ColumnStyle" /> should be inserted.</param>
      <param name="columnStyle">The <see cref="T:System.Windows.Forms.ColumnStyle" /> to insert into the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutColumnStyleCollection.Remove(System.Windows.Forms.ColumnStyle)">
      <summary>Removes the first occurrence of a specific <see cref="T:System.Windows.Forms.ColumnStyle" /> from the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />.</summary>
      <param name="columnStyle">The <see cref="T:System.Windows.Forms.ColumnStyle" /> to remove from the <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" />. The value can be <see langword="null" />.</param>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutColumnStyleCollection.Item(System.Int32)">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ColumnStyle" /> at the specified index.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.ColumnStyle" /> to get or set.</param>
      <returns>A <see cref="T:System.Windows.Forms.ColumnStyle" /> at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutControlCollection">
      <summary>Represents a collection of child controls in a table layout container.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutControlCollection.#ctor(System.Windows.Forms.TableLayoutPanel)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TableLayoutControlCollection" /> class.</summary>
      <param name="container">The <see cref="T:System.Windows.Forms.TableLayoutPanel" /> control that contains the control collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: The <paramref name="container" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutControlCollection.Add(System.Windows.Forms.Control,System.Int32,System.Int32)">
      <summary>Adds the specified control to the collection and positions it at the specified cell.</summary>
      <param name="control">The control to add.</param>
      <param name="column">The column in which <paramref name="control" /> will be placed.</param>
      <param name="row">The row in which <paramref name="control" /> will be placed.</param>
      <exception cref="T:System.ArgumentException">Either <paramref name="column" /> or <paramref name="row" /> is less than -1.</exception>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutControlCollection.Container">
      <summary>Gets the parent <see cref="T:System.Windows.Forms.TableLayoutPanel" /> that contains the controls in the collection.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TableLayoutPanel" /> that contains the controls in the current collection.</returns>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutPanel">
      <summary>Represents a panel that dynamically lays out its contents in a grid composed of rows and columns.</summary>
    </member>
    <member name="E:System.Windows.Forms.TableLayoutPanel.CellPaint">
      <summary>Occurs when the cell is redrawn.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TableLayoutPanel" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.CreateControlsInstance">
      <summary>Creates a new instance of the control collection for the control.</summary>
      <returns>A new instance of <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.GetCellPosition(System.Windows.Forms.Control)">
      <summary>Gets the <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the row and the column of the cell.</summary>
      <param name="control">A control contained within a cell.</param>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the cell position.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.GetColumn(System.Windows.Forms.Control)">
      <summary>Returns the column position of the specified child control.</summary>
      <param name="control">A child control of the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="control" /> is not a type that can be arranged by this <see cref="T:System.Windows.Forms.Layout.LayoutEngine" />.</exception>
      <returns>The column position of the specified child control, or -1 if the position of <paramref name="control" /> is determined by <see cref="P:System.Windows.Forms.TableLayoutPanel.LayoutEngine" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.GetColumnSpan(System.Windows.Forms.Control)">
      <summary>Returns the number of columns spanned by the specified child control.</summary>
      <param name="control">A child control of the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</param>
      <returns>The number of columns spanned by the child control. The default is 1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.GetColumnWidths">
      <summary>Returns an array representing the widths, in pixels, of the columns in the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</summary>
      <returns>An array of type <see cref="T:System.Int32" /> that contains the widths, in pixels, of the columns in the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.GetControlFromPosition(System.Int32,System.Int32)">
      <summary>Returns the child control occupying the specified position.</summary>
      <param name="column">The column position of the control to retrieve.</param>
      <param name="row">The row position of the control to retrieve.</param>
      <exception cref="T:System.ArgumentException">Either <paramref name="column" /> or <paramref name="row" /> (or both) is less than 0.</exception>
      <returns>The child control occupying the specified cell; otherwise, <see langword="null" /> if no control exists at the specified column and row, or if the control has its <see cref="P:System.Windows.Forms.Control.Visible" /> property set to <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.GetPositionFromControl(System.Windows.Forms.Control)">
      <summary>Gets the <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the row and the column of the cell that contains the control.</summary>
      <param name="control">A control contained within a cell.</param>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the cell position.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.GetRow(System.Windows.Forms.Control)">
      <summary>Returns the row position of the specified child control.</summary>
      <param name="control">A child control of the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="control" /> is not a type that can be arranged by this <see cref="T:System.Windows.Forms.Layout.LayoutEngine" />.</exception>
      <returns>The row position of <paramref name="control" />, or -1 if the position of <paramref name="control" /> is determined by <see cref="P:System.Windows.Forms.TableLayoutPanel.LayoutEngine" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.GetRowHeights">
      <summary>Returns an array representing the heights, in pixels, of the rows in the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</summary>
      <returns>An array of type <see cref="T:System.Int32" /> that contains the heights, in pixels, of the rows in the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.GetRowSpan(System.Windows.Forms.Control)">
      <summary>Returns the number of rows spanned by the specified child control.</summary>
      <param name="control">A child control of the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</param>
      <returns>The number of rows spanned by the child control. The default is 1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.OnCellPaint(System.Windows.Forms.TableLayoutCellPaintEventArgs)">
      <summary>Receives a call when the cell should be refreshed.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TableLayoutCellPaintEventArgs" /> that provides data for the event.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="levent">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Paints the background of the panel.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains information about the panel to paint.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Scales a control's location, size, padding and margin.</summary>
      <param name="factor">The height and width of the control's bounds.</param>
      <param name="specified">One of the values of <see cref="T:System.Windows.Forms.BoundsSpecified" /> that specifies the bounds of the control to use when defining its size and position.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.ScaleCore(System.Single,System.Single)">
      <summary>Performs the work of scaling the entire panel and any child controls.</summary>
      <param name="dx">The ratio by which to scale the control horizontally.</param>
      <param name="dy">The ratio by which to scale the control vertically.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.SetCellPosition(System.Windows.Forms.Control,System.Windows.Forms.TableLayoutPanelCellPosition)">
      <summary>Sets the <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the row and the column of the cell.</summary>
      <param name="control">A control contained within a cell.</param>
      <param name="position">A <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the row and the column of the cell.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.SetColumn(System.Windows.Forms.Control,System.Int32)">
      <summary>Sets the column position of the specified child control.</summary>
      <param name="control">The control to move to another column.</param>
      <param name="column">The column to which <paramref name="control" /> will be moved.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.SetColumnSpan(System.Windows.Forms.Control,System.Int32)">
      <summary>Sets the number of columns spanned by the child control.</summary>
      <param name="control">A child control of the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</param>
      <param name="value">The number of columns to span.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.SetRow(System.Windows.Forms.Control,System.Int32)">
      <summary>Sets the row position of the specified child control.</summary>
      <param name="control">The control to move to another row.</param>
      <param name="row">The row to which <paramref name="control" /> will be moved.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.SetRowSpan(System.Windows.Forms.Control,System.Int32)">
      <summary>Sets the number of rows spanned by the child control.</summary>
      <param name="control">A child control of the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</param>
      <param name="value">The number of rows to span.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanel.System#ComponentModel#IExtenderProvider#CanExtend(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.ComponentModel.IExtenderProvider.CanExtend(System.Object)" />.</summary>
      <param name="obj">The <see cref="T:System.Object" /> to receive the extender properties.</param>
      <returns>
        <see langword="true" /> if this object can provide extender properties to the specified object; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.BorderStyle">
      <summary>Gets or sets the border style for the panel.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values describing the style of the border of the panel. The default is <see cref="F:System.Windows.Forms.BorderStyle.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.CellBorderStyle">
      <summary>Gets or sets the style of the cell borders.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">.NET 6 and later versions only: The property value is not valid for the enumeration type.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.TableLayoutPanelCellBorderStyle" /> values describing the style of all the cell borders in the table. The default is <see cref="F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.ColumnCount">
      <summary>Gets or sets the maximum number of columns allowed in the table.</summary>
      <returns>The maximum number of columns in the <see cref="T:System.Windows.Forms.TableLayoutPanel" /> control. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.ColumnStyles">
      <summary>Gets a collection of column styles for the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" /> containing a <see cref="T:System.Windows.Forms.ColumnStyle" /> for each column in the <see cref="T:System.Windows.Forms.TableLayoutPanel" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.Controls">
      <summary>Gets the collection of controls contained within the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutControlCollection" /> containing the controls associated with the current <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.GrowStyle">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.TableLayoutPanel" /> control should expand to accommodate new cells when all existing cells are occupied.</summary>
      <exception cref="T:System.ArgumentException">The property value is invalid for the <see cref="T:System.Windows.Forms.TableLayoutPanelGrowStyle" /> enumeration.</exception>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutPanelGrowStyle" /> indicating the growth scheme. The default is <see cref="F:System.Windows.Forms.TableLayoutPanelGrowStyle.AddRows" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.LayoutEngine">
      <summary>Gets a cached instance of the panel's layout engine.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> for the panel's contents.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.LayoutSettings">
      <summary>Gets or sets a value representing the table layout settings.</summary>
      <exception cref="T:System.NotSupportedException">The property value is <see langword="null" />, or an attempt was made to set <see cref="T:System.Windows.Forms.TableLayoutSettings" /> directly, which is not supported; instead, set individual properties.</exception>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutSettings" /> containing the table layout settings.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.RowCount">
      <summary>Gets or sets the maximum number of rows allowed in the table.</summary>
      <returns>The maximum number of rows in the <see cref="T:System.Windows.Forms.TableLayoutPanel" /> control. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanel.RowStyles">
      <summary>Gets a collection of row styles for the <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" /> containing a <see cref="T:System.Windows.Forms.RowStyle" /> for each row in the <see cref="T:System.Windows.Forms.TableLayoutPanel" /> control.</returns>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutPanelCellBorderStyle">
      <summary>Specifies the border style of a cell in a table layout control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.Inset">
      <summary>A single-line sunken border.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.InsetDouble">
      <summary>A double-line sunken border.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.None">
      <summary>No borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.Outset">
      <summary>A single-line raised border.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetDouble">
      <summary>A double-line raised border.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetPartial">
      <summary>A single-line border containing a raised portion.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single">
      <summary>A single-line border.</summary>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutPanelCellPosition">
      <summary>Represents a cell in a <see cref="T:System.Windows.Forms.TableLayoutPanel" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanelCellPosition.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> class.</summary>
      <param name="column">The column position of the cell.</param>
      <param name="row">The row position of the cell.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanelCellPosition.Equals(System.Object)">
      <summary>Specifies whether this <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> contains the same row and column as the specified <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" />.</summary>
      <param name="other">The <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> to test.</param>
      <returns>
        <see langword="true" /> if <paramref name="other" /> is a <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> and has the same row and column as the specified <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanelCellPosition.Equals(System.Windows.Forms.TableLayoutPanelCellPosition)">
      <summary>Indicates whether the current object is equal to another object of the same type.</summary>
      <param name="other">An object to compare with this object.</param>
      <returns>
        <see langword="true" /> if the current object is equal to the <paramref name="other" /> parameter; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanelCellPosition.GetHashCode">
      <summary>Returns a hash code for this <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" />.</summary>
      <returns>An integer value that specifies a hash value for this <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanelCellPosition.op_Equality(System.Windows.Forms.TableLayoutPanelCellPosition,System.Windows.Forms.TableLayoutPanelCellPosition)">
      <summary>Compares two <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> objects. The result specifies whether the values of the <see cref="P:System.Windows.Forms.TableLayoutPanelCellPosition.Row" /> and <see cref="P:System.Windows.Forms.TableLayoutPanelCellPosition.Column" /> properties of the two <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> objects are equal.</summary>
      <param name="p1">A <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> to compare.</param>
      <param name="p2">A <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> to compare.</param>
      <returns>
        <see langword="true" /> if <paramref name="p1" /> and <paramref name="p2" /> are equal; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanelCellPosition.op_Inequality(System.Windows.Forms.TableLayoutPanelCellPosition,System.Windows.Forms.TableLayoutPanelCellPosition)">
      <summary>Compares two <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> objects. The result specifies whether the values of the <see cref="P:System.Windows.Forms.TableLayoutPanelCellPosition.Row" /> and <see cref="P:System.Windows.Forms.TableLayoutPanelCellPosition.Column" /> properties of the two <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> objects are unequal.</summary>
      <param name="p1">A <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> to compare.</param>
      <param name="p2">A <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> to compare.</param>
      <returns>
        <see langword="true" /> if <paramref name="p1" /> and <paramref name="p2" /> differ; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutPanelCellPosition.ToString">
      <summary>Converts this <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> to a human readable string.</summary>
      <returns>A string that represents this <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanelCellPosition.Column">
      <summary>Gets or sets the column number of the current <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" />.</summary>
      <returns>The column number of the current <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutPanelCellPosition.Row">
      <summary>Gets or sets the row number of the current <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" />.</summary>
      <returns>The row number of the current <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutPanelGrowStyle">
      <summary>Specifies how a <see cref="T:System.Windows.Forms.TableLayoutPanel" /> will gain additional rows or columns after its existing cells are full.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelGrowStyle.AddColumns">
      <summary>The <see cref="T:System.Windows.Forms.TableLayoutPanel" /> gains additional columns after it is full.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelGrowStyle.AddRows">
      <summary>The <see cref="T:System.Windows.Forms.TableLayoutPanel" /> gains additional rows after it is full.</summary>
    </member>
    <member name="F:System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize">
      <summary>The <see cref="T:System.Windows.Forms.TableLayoutPanel" /> does not allow additional rows or columns after it is full.</summary>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutRowStyleCollection">
      <summary>A collection that stores <see cref="T:System.Windows.Forms.RowStyle" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutRowStyleCollection.Add(System.Windows.Forms.RowStyle)">
      <summary>Adds a new <see cref="T:System.Windows.Forms.RowStyle" /> to the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />.</summary>
      <param name="rowStyle">The <see cref="T:System.Windows.Forms.RowStyle" /> to add to the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />.</param>
      <returns>The position into which the new element was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutRowStyleCollection.Contains(System.Windows.Forms.RowStyle)">
      <summary>Determines whether the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" /> contains a specific style.</summary>
      <param name="rowStyle">The <see cref="T:System.Windows.Forms.RowStyle" /> to locate in the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.RowStyle" /> is found in the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutRowStyleCollection.IndexOf(System.Windows.Forms.RowStyle)">
      <summary>Determines the index of a specific item in the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />.</summary>
      <param name="rowStyle">The <see cref="T:System.Windows.Forms.RowStyle" /> to locate in the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />.</param>
      <returns>The index of <paramref name="rowStyle" /> if found in the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutRowStyleCollection.Insert(System.Int32,System.Windows.Forms.RowStyle)">
      <summary>Inserts a <see cref="T:System.Windows.Forms.RowStyle" /> into the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" /> at the specified position.</summary>
      <param name="index">The zero-based index at which the <see cref="T:System.Windows.Forms.RowStyle" /> should be inserted.</param>
      <param name="rowStyle">The <see cref="T:System.Windows.Forms.RowStyle" /> to insert into the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />. The value can be <see langword="null" />.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutRowStyleCollection.Remove(System.Windows.Forms.RowStyle)">
      <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />.</summary>
      <param name="rowStyle">The <see cref="T:System.Windows.Forms.RowStyle" /> to remove from the <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" />. The value can be <see langword="null" />.</param>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutRowStyleCollection.Item(System.Int32)">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.RowStyle" /> at the specified index.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.RowStyle" /> to get or set.</param>
      <returns>A <see cref="T:System.Windows.Forms.RowStyle" /> at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutSettings">
      <summary>Collects the characteristics associated with table layouts.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.GetCellPosition(System.Object)">
      <summary>Gets the <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the row and the column of the cell.</summary>
      <param name="control">A control contained within a cell.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the cell position.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.GetColumn(System.Object)">
      <summary>Gets the column position of the specified child control.</summary>
      <param name="control">A control contained within a cell.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <returns>The column position of the specified child control.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.GetColumnSpan(System.Object)">
      <summary>Gets the number of columns that the cell containing the child control spans.</summary>
      <param name="control">A control contained within a cell.</param>
      <returns>The number of columns that the cell containing the child control spans.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.GetRow(System.Object)">
      <summary>Gets the row position of the specified child control.</summary>
      <param name="control">A control contained within a cell.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <returns>The row position of the specified child control.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.GetRowSpan(System.Object)">
      <summary>Gets the number of rows that the cell containing the child control spans.</summary>
      <param name="control">A control contained within a cell.</param>
      <returns>The number of rows that the cell containing the child control spans.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.SetCellPosition(System.Object,System.Windows.Forms.TableLayoutPanelCellPosition)">
      <summary>Sets the <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the row and the column of the cell.</summary>
      <param name="control">A control contained within a cell.</param>
      <param name="cellPosition">A <see cref="T:System.Windows.Forms.TableLayoutPanelCellPosition" /> that represents the cell position.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.SetColumn(System.Object,System.Int32)">
      <summary>Sets the column position for the specified child control.</summary>
      <param name="control">A control contained within a cell.</param>
      <param name="column">The column position for the specified child control.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="column" /> is less than -1.</exception>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.SetColumnSpan(System.Object,System.Int32)">
      <summary>Sets the number of columns that the cell containing the child control spans.</summary>
      <param name="control">A control contained within a cell.</param>
      <param name="value">The number of columns that the cell containing the child control spans.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.SetRow(System.Object,System.Int32)">
      <summary>Sets the row position of the specified child control.</summary>
      <param name="control">A control contained within a cell.</param>
      <param name="row">The row position of the specified child control.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="row" /> is less than -1.</exception>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.SetRowSpan(System.Object,System.Int32)">
      <summary>Sets the number of rows that the cell containing the child control spans.</summary>
      <param name="control">A control contained within a cell.</param>
      <param name="value">The number of rows that the cell containing the child control spans.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="control" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than 1.</exception>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutSettings.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>For a description of this member, see <see cref="M:System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" />.</summary>
      <param name="si">The object to be populated with serialization information.</param>
      <param name="context">The destination context of the serialization.</param>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutSettings.ColumnCount">
      <summary>Gets or sets the maximum number of columns allowed in the table layout.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The property value is less than 0.</exception>
      <returns>The maximum number of columns allowed in the table layout. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutSettings.ColumnStyles">
      <summary>Gets the collection of styles used to determine the look and feel of the table layout columns.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutColumnStyleCollection" /> that contains the column styles for the layout table.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutSettings.GrowStyle">
      <summary>Gets or sets a value indicating how the table layout should expand to accommodate new cells when all existing cells are occupied.</summary>
      <exception cref="T:System.ArgumentException">.NET Framework only: The property value is not valid for the enumeration type.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">.NET 5 and earlier versions only: The property value is not valid for the enumeration type.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">.NET 6 and later versions only: The property value is not valid for the enumeration type.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.TableLayoutPanelGrowStyle" /> values. The default is <see cref="F:System.Windows.Forms.TableLayoutPanelGrowStyle.AddRows" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutSettings.LayoutEngine">
      <summary>Gets the current table layout engine.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> currently being used.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutSettings.RowCount">
      <summary>Gets or sets the maximum number of rows allowed in the table layout.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The property value is less than 0.</exception>
      <returns>The maximum number of rows allowed in the table layout. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutSettings.RowStyles">
      <summary>Gets the collection of styles used to determine the look and feel of the table layout rows.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutRowStyleCollection" /> that contains the row styles for the layout table.</returns>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutStyle">
      <summary>Implements the basic functionality that represents the appearance and behavior of a table layout.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyle.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TableLayoutStyle" /> class.</summary>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutStyle.SizeType">
      <summary>Gets or sets a flag indicating how a row or column should be sized relative to its containing table.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.SizeType" /> values that specifies how rows or columns of user interface (UI) elements should be sized relative to their container. The default is <see cref="F:System.Windows.Forms.SizeType.AutoSize" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TableLayoutStyleCollection">
      <summary>Implements the basic functionality for a collection of table layout styles.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.Add(System.Windows.Forms.TableLayoutStyle)">
      <summary>Adds a new <see cref="T:System.Windows.Forms.TableLayoutStyle" /> to the end of the current collection.</summary>
      <param name="style">The <see cref="T:System.Windows.Forms.TableLayoutStyle" /> to add to the <see cref="T:System.Windows.Forms.TableLayoutStyleCollection" />.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="style" /> is already assigned to another owner. You must first remove it from its current location or clone it.</exception>
      <returns>The position into which the new element was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.Clear">
      <summary>Disassociates the collection from its associated <see cref="T:System.Windows.Forms.TableLayoutPanel" /> and empties the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.RemoveAt(System.Int32)">
      <summary>Removes the style at the specified index of the collection.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.TableLayoutStyle" /> to be removed.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
      <summary>For a description of this method, see the <see cref="M:System.Collections.ICollection.CopyTo(System.Array,System.Int32)" /> method.</summary>
      <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
      <param name="startIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IEnumerable#GetEnumerator">
      <summary>For a description of this method, see the <see cref="M:System.Collections.IEnumerable.GetEnumerator" /> method.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Add(System.Object)">
      <summary>For a description of this method, see the <see cref="M:System.Collections.IList.Add(System.Object)" /> method.</summary>
      <param name="style">The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />.</param>
      <returns>The position into which <paramref name="style" /> was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Contains(System.Object)">
      <summary>For a description of this method, see the <see cref="M:System.Collections.IList.Contains(System.Object)" /> method.</summary>
      <param name="style">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />.</param>
      <returns>
        <see langword="true" /> if <paramref name="style" /> is found in the <see cref="T:System.Collections.IList" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>For a description of this method, see the <see cref="M:System.Collections.IList.IndexOf(System.Object)" /> method.</summary>
      <param name="style">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.IList" />.</param>
      <returns>The index of <paramref name="style" /> if found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>For a description of this method, see the <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" /> method.</summary>
      <param name="index">The zero-based index at which <paramref name="style" /> should be inserted.</param>
      <param name="style">The <see cref="T:System.Object" /> to insert into the <see cref="T:System.Collections.IList" />.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="style" /> is already assigned to another owner. You must first remove it from its current location or clone it.

-or-

.NET 8 and later only: <paramref name="style" /> can't be converted to type <see cref="T:System.Windows.Forms.TableLayoutStyle" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Remove(System.Object)">
      <summary>For a description of this method, see the <see cref="M:System.Collections.IList.Remove(System.Object)" /> method.</summary>
      <param name="style">The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.IList" />.</param>
      <exception cref="T:System.ArgumentException">.NET 8 and later only: <paramref name="style" /> can't be converted to type <see cref="T:System.Windows.Forms.TableLayoutStyle" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutStyleCollection.Count">
      <summary>Gets the number of styles actually contained in the <see cref="T:System.Windows.Forms.TableLayoutStyleCollection" />.</summary>
      <returns>The number of styles actually contained in the <see cref="T:System.Windows.Forms.TableLayoutStyleCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutStyleCollection.Item(System.Int32)">
      <summary>Gets or sets <see cref="T:System.Windows.Forms.TableLayoutStyle" /> at the specified index.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.TableLayoutStyle" /> to get or set.</param>
      <exception cref="T:System.ArgumentException">The property value is already assigned to another owner. You must first remove it from its current location or clone it.</exception>
      <returns>A <see cref="T:System.Windows.Forms.TableLayoutStyle" /> at the specified index.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#ICollection#IsSynchronized">
      <summary>For a description of this method, see the <see cref="P:System.Collections.ICollection.IsSynchronized" /> property.</summary>
      <returns>
        <see langword="true" /> if access to the <see cref="T:System.Collections.ICollection" /> is synchronized (thread safe); otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#ICollection#SyncRoot">
      <summary>For a description of this method, see the <see cref="P:System.Collections.ICollection.SyncRoot" /> property.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this method, see the <see cref="P:System.Collections.IList.IsFixedSize" /> property.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Collections.IList" /> has a fixed size; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#IsReadOnly">
      <summary>For a description of this method, see the <see cref="P:System.Collections.IList.IsReadOnly" /> property.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Collections.IList" /> is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TableLayoutStyleCollection.System#Collections#IList#Item(System.Int32)">
      <summary>For a description of this method, see the <see cref="P:System.Collections.IList.Item(System.Int32)" /> property.</summary>
      <param name="index">The zero-based index of the element to get or set.</param>
      <exception cref="T:System.ArgumentException">.NET 8 and later only: The value to set can't be converted to type <see cref="T:System.Windows.Forms.TableLayoutStyle" />.</exception>
      <returns>The element at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.TabPage">
      <summary>Represents a single tab page in a <see cref="T:System.Windows.Forms.TabControl" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabPage.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabPage.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabPage.DockChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabPage.Dock" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabPage.EnabledChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabPage.Enabled" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabPage.LocationChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabPage.Location" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabPage.TabIndexChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabPage.TabIndex" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabPage.TabStopChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabPage.TabStop" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabPage.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabControl.Text" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TabPage.VisibleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TabPage.Visible" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabPage.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TabPage" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabPage.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TabPage" /> class and specifies the text for the tab.</summary>
      <param name="text">The text for the tab.</param>
    </member>
    <member name="M:System.Windows.Forms.TabPage.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.TabPage.CreateControlsInstance">
      <summary>Creates a new instance of the control collection for the control.</summary>
      <returns>A new instance of <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabPage.GetTabPageOfComponent(System.Object)">
      <summary>Retrieves the tab page that contains the specified object.</summary>
      <param name="comp">The object to look for.</param>
      <returns>The <see cref="T:System.Windows.Forms.TabPage" /> that contains the specified object, or <see langword="null" /> if the object cannot be found.</returns>
    </member>
    <member name="M:System.Windows.Forms.TabPage.OnEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Enter" /> event of the <see cref="T:System.Windows.Forms.TabPage" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabPage.OnLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Leave" /> event of the <see cref="T:System.Windows.Forms.TabPage" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TabPage.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Paints the background of the <see cref="T:System.Windows.Forms.TabPage" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains data useful for painting the background.</param>
    </member>
    <member name="M:System.Windows.Forms.TabPage.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)" />.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.TabPage.ToString">
      <summary>Returns a string containing the value of the <see cref="P:System.Windows.Forms.TabPage.Text" /> property.</summary>
      <returns>A string containing the value of the <see cref="P:System.Windows.Forms.TabPage.Text" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.Anchor">
      <summary>This member is not meaningful for this control.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AnchorStyles" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.AutoSize">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.AutoSizeMode">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The control grows as much as necessary to fit its contents but does not shrink smaller than the value of its size property.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.BackColor">
      <summary>Gets or sets the background color for the <see cref="T:System.Windows.Forms.TabPage" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the <see cref="T:System.Windows.Forms.TabPage" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.Dock">
      <summary>This member is not meaningful for this control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.DockStyle" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.Enabled">
      <summary>This member is not meaningful for this control.</summary>
      <returns>The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.ImageIndex">
      <summary>Gets or sets the index to the image displayed on this tab.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than -1.</exception>
      <returns>The zero-based index to the image in the <see cref="P:System.Windows.Forms.TabControl.ImageList" /> that appears on the tab. The default is -1, which signifies no image.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.ImageKey">
      <summary>Gets or sets the key accessor for the image in the <see cref="P:System.Windows.Forms.TabControl.ImageList" /> of the associated <see cref="T:System.Windows.Forms.TabControl" />.</summary>
      <returns>A string representing the key of the image.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.Location">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The x and y coordinates which specifies the location of the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.MaximumSize">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The upper limit of the size of the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.MinimumSize">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The lower limit of the size of the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.PreferredSize">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The size of a rectangular area into which the control can fit.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.TabIndex">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The tab order of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.TabStop">
      <summary>This member is not meaningful for this control.</summary>
      <returns>The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.Text">
      <summary>Gets or sets the text to display on the tab.</summary>
      <returns>The text to display on the tab.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.ToolTipText">
      <summary>Gets or sets the ToolTip text for this tab.</summary>
      <returns>The ToolTip text for this tab.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.UseVisualStyleBackColor">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.TabPage" /> background renders using the current visual style when visual styles are enabled.</summary>
      <returns>
        <see langword="true" /> to render the background using the current visual style; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TabPage.Visible">
      <summary>This member is not meaningful for this control.</summary>
      <returns>The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TabPage.TabPageControlCollection">
      <summary>Contains the collection of controls that the <see cref="T:System.Windows.Forms.TabPage" /> uses.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabPage.TabPageControlCollection.#ctor(System.Windows.Forms.TabPage)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TabPage.TabPageControlCollection" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.TabPage" /> that contains this collection of controls.</param>
    </member>
    <member name="M:System.Windows.Forms.TabPage.TabPageControlCollection.Add(System.Windows.Forms.Control)">
      <summary>Adds a control to the collection.</summary>
      <param name="value">The control to add.</param>
      <exception cref="T:System.ArgumentException">The specified control is a <see cref="T:System.Windows.Forms.TabPage" />.</exception>
    </member>
    <member name="T:System.Windows.Forms.TabRenderer">
      <summary>Provides methods used to render a tab control with visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)">
      <summary>Draws a tab in the specified state and bounds, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the tab.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the tab.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TabItemState" /> values that specifies the visual state of the tab.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)">
      <summary>Draws a tab in the specified state and bounds, with the specified image, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the tab.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the tab.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw in the tab.</param>
      <param name="imageRectangle">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of <paramref name="image" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TabItemState" /> values that specifies the visual state of the tab.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)">
      <summary>Draws a tab in the specified state and bounds, with the specified text, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the tab.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the tab.</param>
      <param name="tabItemText">The <see cref="T:System.String" /> to draw in the tab.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="tabItemText" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TabItemState" /> values that specifies the visual state of the tab.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)">
      <summary>Draws a tab in the specified state and bounds, with the specified text and image, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the tab.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the tab.</param>
      <param name="tabItemText">The <see cref="T:System.String" /> to draw in the tab.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="tabItemText" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw in the tab.</param>
      <param name="imageRectangle">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of <paramref name="image" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TabItemState" /> values that specifies the visual state of the tab.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)">
      <summary>Draws a tab in the specified state and bounds, with the specified text and text formatting, and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the tab.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the tab.</param>
      <param name="tabItemText">The <see cref="T:System.String" /> to draw in the tab.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="tabItemText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TabItemState" /> values that specifies the visual state of the tab.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Drawing.Image,System.Drawing.Rectangle,System.Boolean,System.Windows.Forms.VisualStyles.TabItemState)">
      <summary>Draws a tab in the specified state and bounds; with the specified text, text formatting, and image; and with an optional focus rectangle.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the tab.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the tab.</param>
      <param name="tabItemText">The <see cref="T:System.String" /> to draw in the tab.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="tabItemText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw in the tab.</param>
      <param name="imageRectangle">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of <paramref name="image" />.</param>
      <param name="focused">
        <see langword="true" /> to draw a focus rectangle; otherwise, <see langword="false" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TabItemState" /> values that specifies the visual state of the tab.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.VisualStyles.TabItemState)">
      <summary>Draws a tab in the specified state and bounds, and with the specified text.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the tab.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the tab.</param>
      <param name="tabItemText">The <see cref="T:System.String" /> to draw in the tab.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="tabItemText" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TabItemState" /> values that specifies the visual state of the tab.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TabItemState)">
      <summary>Draws a tab in the specified state and bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the tab.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the tab.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TabItemState" /> values that specifies the visual state of the tab.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TabRenderer.DrawTabPage(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws a tab page in the specified bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the tab page.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the tab page.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="P:System.Windows.Forms.TabRenderer.IsSupported">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.TabRenderer" /> class can be used to draw a tab control with visual styles.</summary>
      <returns>
        <see langword="true" /> if the user has enabled visual styles in the operating system and visual styles are applied to the client area of application windows; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TabSizeMode">
      <summary>Specifies how tabs in a tab control are sized.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabSizeMode.FillToRight">
      <summary>The width of each tab is sized so that each row of tabs fills the entire width of the container control. This is only applicable to tab controls with more than one row.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabSizeMode.Fixed">
      <summary>All tabs in a control are the same width.</summary>
    </member>
    <member name="F:System.Windows.Forms.TabSizeMode.Normal">
      <summary>The width of each tab is sized to accommodate what is displayed on the tab, and the size of tabs in a row are not adjusted to fill the entire width of the container control.</summary>
    </member>
    <member name="T:System.Windows.Forms.TaskDialog">
      <summary>A task dialog allows to display information and get simple input from the user. It is similar to a <see cref="T:System.Windows.Forms.MessageBox" /> (in that it is formatted by the operating system) but provides a lot more features.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialog.Close">
      <summary>Closes the shown task dialog with <see cref="P:System.Windows.Forms.TaskDialogButton.Cancel" /> as resulting button.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialog.ShowDialog(System.IntPtr,System.Windows.Forms.TaskDialogPage,System.Windows.Forms.TaskDialogStartupLocation)">
      <summary>Shows the task dialog with the specified owner.</summary>
      <param name="hwndOwner">The handle of the owner window, or <see cref="F:System.IntPtr.Zero" /> to show a modeless dialog.</param>
      <param name="page">The page instance that contains the contents which this task dialog will display.</param>
      <param name="startupLocation">Gets or sets the position of the task dialog when it is shown.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="page" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The specified <paramref name="page" /> contains an invalid configuration.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TaskDialogButton" /> which was clicked by the user to close the dialog.</returns>
    </member>
    <member name="M:System.Windows.Forms.TaskDialog.ShowDialog(System.Windows.Forms.IWin32Window,System.Windows.Forms.TaskDialogPage,System.Windows.Forms.TaskDialogStartupLocation)">
      <summary>Shows the task dialog with the specified owner.</summary>
      <param name="owner">The owner window, or <see langword="null" /> to show a modeless dialog.</param>
      <param name="page">The page instance that contains the contents which this task dialog will display.</param>
      <param name="startupLocation">Gets or sets the position of the task dialog when it is shown.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="owner" /> is <see langword="null" /> - or - <paramref name="page" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The specified <paramref name="page" /> contains an invalid configuration.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TaskDialogButton" /> which was clicked by the user to close the dialog.</returns>
    </member>
    <member name="M:System.Windows.Forms.TaskDialog.ShowDialog(System.Windows.Forms.TaskDialogPage,System.Windows.Forms.TaskDialogStartupLocation)">
      <summary>Shows the task dialog.</summary>
      <param name="page">The page instance that contains the contents which this task dialog will display.</param>
      <param name="startupLocation">Gets or sets the position of the task dialog when it is shown.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="page" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The specified <paramref name="page" /> contains an invalid configuration.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TaskDialogButton" /> which was clicked by the user to close the dialog.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialog.Handle">
      <summary>Gets the window handle of the task dialog window, or <see cref="F:System.IntPtr.Zero" /> if the dialog is currently not being shown.</summary>
      <returns>A handle to the window represented by the implementer.</returns>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogButton">
      <summary>Represents a button control of a task dialog.</summary>
    </member>
    <member name="E:System.Windows.Forms.TaskDialogButton.Click">
      <summary>Occurs when the button is clicked.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButton.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogButton" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButton.#ctor(System.String,System.Boolean,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogButton" /> class using the given text and, optionally, a description text.</summary>
      <param name="text">The text of the control.</param>
      <param name="enabled">A value that indicates if the button should be enabled.</param>
      <param name="allowCloseDialog">A value that indicates whether the task dialog should close when this button is clicked.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButton.Equals(System.Object)">
      <summary>Determines whether the specified object is equal to the current object.</summary>
      <param name="obj">The object to compare with the current object.</param>
      <returns>
        <code data-dev-comment-type="langword">true</code> if the specified object  is equal to the current object; otherwise, <code data-dev-comment-type="langword">false</code>.</returns>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButton.GetHashCode">
      <summary>Serves as the default hash function.</summary>
      <returns>A hash code for the current object.</returns>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButton.op_Equality(System.Windows.Forms.TaskDialogButton,System.Windows.Forms.TaskDialogButton)">
      <param name="b1" />
      <param name="b2" />
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButton.op_Inequality(System.Windows.Forms.TaskDialogButton,System.Windows.Forms.TaskDialogButton)">
      <param name="b1" />
      <param name="b2" />
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButton.PerformClick">
      <summary>Simulates a click on this button.</summary>
      <exception cref="T:System.InvalidOperationException">This button instance is not currently bound to a task dialog.
              - or - The task dialog has started navigating to a new page containing this button instance, but the <see cref="E:System.Windows.Forms.TaskDialogPage.Created" /> event has not been raised yet.
              - or - This button is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButton.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.TaskDialogButton" /> control.</summary>
      <returns>A string that contains the control text.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Abort">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>Abort</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.AllowCloseDialog">
      <summary>Gets or sets a value that indicates whether the task dialog should close when this button is clicked. Or, if this button is the <see cref="P:System.Windows.Forms.TaskDialogButton.Help" /> button, indicates whether the <see cref="E:System.Windows.Forms.TaskDialogPage.HelpRequest" /> should be raised.</summary>
      <returns>
        <see langword="true" /> if the task dialog should close when this button is clicked; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Cancel">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>Cancel</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Close">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>Close</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Continue">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>Continue</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Enabled">
      <summary>Gets or sets a value indicating whether the button can respond to user interaction.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a button that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>
        <see langword="true" /> if the button can respond to user interaction; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Help">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>Help</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Ignore">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>Ignore</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.No">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>No</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.OK">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>OK</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Retry">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>Retry</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.ShowShieldIcon">
      <summary>Gets or sets a value that indicates if the User Account Control (UAC) shield icon should be shown near the button; that is, whether the action invoked by the button requires elevation.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a button that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>
        <see langword="true" /> to show the UAC shield icon; otherwise, <see langword="false" />.
              The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this button instance is a standard button, for which the text is provided by the OS.
              - or - The property is set and this button instance is currently bound to a task dialog.</exception>
      <returns>The text associated with this control. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.TryAgain">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>Try Again</c> button.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Visible">
      <summary>Gets or sets a value that indicates if this <see cref="T:System.Windows.Forms.TaskDialogButton" /> should be shown when displaying the task dialog.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this button instance is currently bound to a task dialog.</exception>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogButton.Yes">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogButton" /> instance representing the <c>Yes</c> button.</summary>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogButtonCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.TaskDialogButton" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButtonCollection.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogButtonCollection" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButtonCollection.Add(System.String,System.Boolean,System.Boolean)">
      <summary>Creates and adds a <see cref="T:System.Windows.Forms.TaskDialogButton" /> to the collection.</summary>
      <param name="text">The text of the custom button.</param>
      <param name="enabled">A value indicating whether the button can respond to user interaction.</param>
      <param name="allowCloseDialog">A value that indicates whether the task dialog should close when this button is clicked.</param>
      <exception cref="T:System.InvalidOperationException">This collection is currently bound to a task dialog.</exception>
      <returns>The created <see cref="T:System.Windows.Forms.TaskDialogButton" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButtonCollection.ClearItems">
      <summary>Removes all elements from the <xref data-throw-if-not-resolved="true" uid="System.Collections.ObjectModel.Collection`1"></xref>.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButtonCollection.InsertItem(System.Int32,System.Windows.Forms.TaskDialogButton)">
      <param name="index" />
      <param name="item" />
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButtonCollection.RemoveItem(System.Int32)">
      <summary>Removes the element at the specified index of the <xref data-throw-if-not-resolved="true" uid="System.Collections.ObjectModel.Collection`1"></xref>.</summary>
      <param name="index">The zero-based index of the element to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogButtonCollection.SetItem(System.Int32,System.Windows.Forms.TaskDialogButton)">
      <param name="index" />
      <param name="item" />
    </member>
    <member name="T:System.Windows.Forms.TaskDialogCommandLinkButton">
      <summary>Represents a command link button control of a task dialog.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogCommandLinkButton.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogButton" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogCommandLinkButton.#ctor(System.String,System.String,System.Boolean,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogButton" /> class using the given text and, optionally, a description text.</summary>
      <param name="text">The text of the control.</param>
      <param name="descriptionText">An additional description text that will be displayed in a separate line when the <see cref="T:System.Windows.Forms.TaskDialogButton" />s of the task dialog are shown as command links (see <see cref="P:System.Windows.Forms.TaskDialogCommandLinkButton.DescriptionText" />).</param>
      <param name="enabled">A value that indicates if the button should be enabled.</param>
      <param name="allowCloseDialog">A value that indicates whether the task dialog should close when this button is clicked.</param>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogCommandLinkButton.DescriptionText">
      <summary>Gets or sets an additional description text that will be displayed in a separate line.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this button instance is currently bound to a task dialog.</exception>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogControl">
      <summary>Represents a control of a task dialog.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogControl.BoundPage">
      <summary>Gets the <see cref="T:System.Windows.Forms.TaskDialogPage" /> instance which this control is currently bound to.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TaskDialogPage" /> instance which this control is bound to, or <see langword="null" /> if this control is not currently bound.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogControl.Tag">
      <summary>Gets or sets the object that contains data about the control.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the control.
              The default is <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogExpander">
      <summary>Represents an expander button and the associated expanded area of a task dialog.</summary>
    </member>
    <member name="E:System.Windows.Forms.TaskDialogExpander.ExpandedChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TaskDialogExpander.Expanded" /> property changes while this control is shown in a task dialog.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogExpander.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogExpander" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogExpander.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogExpander" /> class using the given text.</summary>
      <param name="text">The text to be displayed in the dialog's expanded area.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogExpander.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.TaskDialogExpander" /> control.</summary>
      <returns>A string that contains the control text.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogExpander.CollapsedButtonText">
      <summary>Gets or sets the text to be displayed in the expander button when it is in the collapsed state.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this expander instance is currently bound to a task dialog.</exception>
      <returns>The text that is to be displayed in the expander button when it is in the collapsed state, or <see langword="null" /> or an empty string to use a text provided by the operating system. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogExpander.Expanded">
      <summary>Gets or sets a value that indicates whether the expander button is in the expanded state (so that the dialog's expanded area is visible).</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this expander instance is currently bound to a task dialog.</exception>
      <returns>
        <see langword="true" /> if the expander button is in the expanded state; <see langword="false" /> if it's in the collapsed state. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogExpander.ExpandedButtonText">
      <summary>Gets or sets the text to be displayed in the expander button when it is in the expanded state.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this expander instance is currently bound to a task dialog.</exception>
      <returns>The text that is to be displayed in the expander button when it is in the expanded state, or <see langword="null" /> or an empty string to use a text provided by the operating system. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogExpander.Position">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.TaskDialogExpanderPosition" /> that specifies where the expanded area of the task dialog is to be displayed.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this expander instance is currently bound to a task dialog.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TaskDialogExpanderPosition" /> that specifies where the expanded area of the task dialog is to be displayed. The default is <see cref="F:System.Windows.Forms.TaskDialogExpanderPosition.AfterText" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogExpander.Text">
      <summary>Gets or sets the text to be displayed in the dialog's expanded area.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on an expander instance that is currently bound to a task dialog, but it's not visible as its initial <see cref="P:System.Windows.Forms.TaskDialogExpander.Text" /> property value was <see langword="null" /> or an empty string.
              - or - The property is set on an expander instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>The text to be displayed in the dialog's expanded area. The default value is <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogExpanderPosition">
      <summary>Specifies where the expanded area of the task dialog is to be displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogExpanderPosition.AfterFootnote">
      <summary>The expanded area is to be displayed at the bottom of the dialog's footnote area.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogExpanderPosition.AfterText">
      <summary>The expanded area is to be displayed immediately after the dialog's text.</summary>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogFootnote">
      <summary>Represents the footnote area of a task dialog.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogFootnote.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogFootnote" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogFootnote.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogFootnote" /> class using the given <paramref name="text" />.</summary>
      <param name="text">The text to be displayed in the dialog's footnote area.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogFootnote.op_Implicit(System.String)~System.Windows.Forms.TaskDialogFootnote">
      <param name="footnoteText" />
    </member>
    <member name="M:System.Windows.Forms.TaskDialogFootnote.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.TaskDialogFootnote" /> control.</summary>
      <returns>A string that contains the control text.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogFootnote.Icon">
      <summary>Gets or sets the footnote icon.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a footnote instance that is currently bound to a task dialog, but it's not visible as its initial <see cref="P:System.Windows.Forms.TaskDialogFootnote.Text" /> property value was <see langword="null" /> or an empty string.
              - or - The property is set and the task dialog has started navigating to a new page containing this footnote instance, but the <see cref="E:System.Windows.Forms.TaskDialogPage.Created" /> event has not been raised yet.
              - or - The property is set on a footnote instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogFootnote.Text">
      <summary>Gets or sets the text to be displayed in the dialog's footnote area.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a footnote instance that is currently bound to a task dialog, but it's not visible as its initial <see cref="P:System.Windows.Forms.TaskDialogFootnote.Text" /> property value was <see langword="null" /> or an empty string.
              - or - The property is set on a footnote instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>The text to be displayed in the dialog's footnote area. The default value is <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogIcon">
      <summary>Represents an icon that can be shown in the main area of a task dialog (by setting the <see cref="P:System.Windows.Forms.TaskDialogPage.Icon" /> property) or in the footnote of a task dialog (by setting the <see cref="P:System.Windows.Forms.TaskDialogFootnote.Icon" /> property).</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.Error">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog contains an icon consisting of white X in a circle with a red background.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.Information">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog contains a symbol consisting of a lowercase letter i in a circle.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.None">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog does not display an icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.Shield">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog contains an icon consisting of an user account control (UAC) shield.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.ShieldBlueBar">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog contains an icon consisting of an user account control (UAC) shield and shows a blue bar around the icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.ShieldErrorRedBar">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog contains an icon consisting of white X in a red shield and shows a red bar around the icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.ShieldGrayBar">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog contains an icon consisting of an user account control (UAC) shield and shows a gray bar around the icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.ShieldSuccessGreenBar">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog contains an icon consisting of white tick in a green shield and shows a green bar around the icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.ShieldWarningYellowBar">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog contains an icon consisting of an exclamation point in a yellow shield and shows a yellow bar around the icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogIcon.Warning">
      <summary>Gets a standard <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance where the task dialog contains an icon consisting of an exclamation point in a triangle with a yellow background.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogIcon.#ctor(System.Drawing.Bitmap)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogIcon" /> class from an <see cref="T:System.Drawing.Bitmap" /> instance.</summary>
      <param name="image">The <see cref="T:System.Drawing.Bitmap" /> instance.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="image" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogIcon.#ctor(System.Drawing.Icon)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogIcon" /> class from an <see cref="T:System.Drawing.Icon" /> instance.</summary>
      <param name="icon">The <see cref="T:System.Drawing.Icon" /> instance.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="icon" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogIcon.#ctor(System.IntPtr)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogIcon" /> class from an icon handle.</summary>
      <param name="iconHandle">A handle to an instance of an icon, or <see cref="F:System.IntPtr.Zero" /> to not show an icon.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogIcon.Dispose">
      <summary>Releases all resources used by this <see cref="T:System.Windows.Forms.TaskDialogIcon" />.</summary>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogIcon.IconHandle">
      <summary>The icon handle (<c>HICON</c>) that is represented by this <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance.</summary>
      <exception cref="T:System.InvalidOperationException">This <see cref="T:System.Windows.Forms.TaskDialogIcon" /> instance was not created using a constructor that takes an icon or icon handle.</exception>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogLinkClickedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TaskDialogPage.LinkClicked" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogLinkClickedEventArgs.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogLinkClickedEventArgs" /> class.</summary>
      <param name="linkHref" />
    </member>
    <member name="P:System.Windows.Forms.TaskDialogLinkClickedEventArgs.LinkHref">
      <summary>Gets the value of the <c>href</c> attribute of the link that the user clicked.</summary>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogPage">
      <summary>Represents a page of content of a task dialog.</summary>
    </member>
    <member name="E:System.Windows.Forms.TaskDialogPage.Created">
      <summary>Occurs after this instance is bound to a task dialog and the task dialog has created the GUI elements represented by this <see cref="T:System.Windows.Forms.TaskDialogPage" /> instance.</summary>
    </member>
    <member name="E:System.Windows.Forms.TaskDialogPage.Destroyed">
      <summary>Occurs when the task dialog is about to destroy the GUI elements represented by this <see cref="T:System.Windows.Forms.TaskDialogPage" /> instance and it is about to be unbound from the task dialog.</summary>
    </member>
    <member name="E:System.Windows.Forms.TaskDialogPage.HelpRequest">
      <summary>Occurs when the user presses F1 while the task dialog has focus, or when the user clicks the <see cref="P:System.Windows.Forms.TaskDialogButton.Help" /> button.</summary>
    </member>
    <member name="E:System.Windows.Forms.TaskDialogPage.LinkClicked">
      <summary>Occurs when the user has clicked on a link.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogPage.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogPage" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogPage.Navigate(System.Windows.Forms.TaskDialogPage)">
      <summary>Shows the new content in the current task dialog.
            <paramref name="page" />.</summary>
      <param name="page">The page instance that contains the contents which this task dialog will display.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="page" /> is <see langword="null" />.</exception>
      <exception cref="T:System.InvalidOperationException">The page instance is not currently bound to a dialog, <see cref="P:System.Windows.Forms.TaskDialogPage.BoundDialog" /> is <see langword="null" />.
              - or - This page instance contains an invalid configuration.
              - or - This method is called from within the <see cref="E:System.Windows.Forms.TaskDialogRadioButton.CheckedChanged" /> event of one of the radio buttons of the current task dialog.
              - or - The task dialog has already been closed.</exception>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogPage.OnCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TaskDialogPage.Created" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogPage.OnDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TaskDialogPage.Destroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogPage.OnHelpRequest(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TaskDialogPage.HelpRequest" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogPage.OnLinkClicked(System.Windows.Forms.TaskDialogLinkClickedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TaskDialogPage.LinkClicked" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TaskDialogLinkClickedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.AllowCancel">
      <summary>Gets or sets a value that indicates whether the task dialog can be closed with <see cref="P:System.Windows.Forms.TaskDialogButton.Cancel" /> as resulting button by pressing ESC or Alt+F4 or by clicking the title bar's close button, even if a <see cref="P:System.Windows.Forms.TaskDialogButton.Cancel" /> button isn't added to the <see cref="P:System.Windows.Forms.TaskDialogPage.Buttons" /> collection.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
      <returns>
        <see langword="true" /> to allow to close the dialog by pressing ESC or Alt+F4 or by clicking the title bar's close button; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.AllowMinimize">
      <summary>Gets or sets a value that indicates whether the task dialog can be minimized when it is shown modeless.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
      <returns>
        <see langword="true" /> to specify that the task dialog can be minimized; otherwise, <see langword="false" />.
              The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.BoundDialog">
      <summary>Gets the <see cref="T:System.Windows.Forms.TaskDialog" /> instance which this page is currently bound to.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TaskDialog" /> instance which this page is bound to, or <see langword="null" /> if this page is not currently bound.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.Buttons">
      <summary>Gets or sets the collection of push buttons to be shown in this page.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
      <returns>The collection of custom buttons to be shown in this page.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.Caption">
      <summary>Gets or sets the text to display in the title bar of the task dialog.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and the task dialog has started navigating to this page instance, but the <see cref="E:System.Windows.Forms.TaskDialogPage.Created" /> event has not been raised yet.
              - or - The property is set on a page instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.DefaultButton">
      <summary>Gets or sets the default button in the task dialog.</summary>
      <returns>The default button in the task dialog.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.EnableLinks">
      <summary>
        <para> Gets or sets a value that specifies whether the task dialog should interpret strings in the form <c>&lt;a href="target"&gt;link Text&lt;/a&gt;</c> as hyperlink when specified in the <see cref="P:System.Windows.Forms.TaskDialogPage.Text" />, <see cref="P:System.Windows.Forms.TaskDialogExpander.Text" />, or <see cref="P:System.Windows.Forms.TaskDialogFootnote.Text" /> properties.
              When the user clicks on such a link, the <see cref="E:System.Windows.Forms.TaskDialogPage.LinkClicked" /> event is raised, containing the value of the <c>target</c> attribute.</para>
      </summary>
      <returns>
        <see langword="true" /> to enable links; otherwise, <see langword="false" />.
              The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.Expander">
      <summary>Gets or sets the dialog expander to be shown in this page.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.Footnote">
      <summary>Gets or sets the footnote to be shown in this page.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.Heading">
      <summary>Gets or sets the heading (main instruction).</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a page instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.Icon">
      <summary>Gets or sets the main icon.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and the task dialog has started navigating to this page instance, but the <see cref="E:System.Windows.Forms.TaskDialogPage.Created" /> event has not been raised yet.
              - or - The property is set on a page instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.ProgressBar">
      <summary>Gets or sets the progress bar to be shown in this page.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.RadioButtons">
      <summary>Gets or sets the collection of radio buttons to be shown in this page.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
      <returns>The collection of radio buttons to be shown in this page.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.RightToLeftLayout">
      <summary>Gets or sets a value that indicates whether text and controls are displayed reading right to left.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
      <returns>
        <see langword="true" /> to display text and controls reading right to left; <see langword="false" /> to display controls reading left to right. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.SizeToContent">
      <summary>Indicates that the width of the task dialog is determined by the width of its content area (similar to Message Box sizing behavior).</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
      <returns>
        <see langword="true" /> to determine the width of the task dialog by the width of its content area; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.Text">
      <summary>Gets or sets the dialog's primary text content.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a page instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogPage.Verification">
      <summary>Gets or sets the verification checkbox to be shown in this page.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this page instance is currently bound to a task dialog.</exception>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogProgressBar">
      <summary>Represents a progress bar control of a task dialog.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogProgressBar.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogProgressBar" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogProgressBar.#ctor(System.Windows.Forms.TaskDialogProgressBarState)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogProgressBar" /> class using the given <paramref name="state" />.</summary>
      <param name="state">The state of the progress bar.</param>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogProgressBar.MarqueeSpeed">
      <summary>Gets or sets the speed of the marquee display of a progress bar.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a progress bar instance that is currently bound to a task dialog, but it's not visible as its initial <see cref="P:System.Windows.Forms.TaskDialogProgressBar.State" /> property value was <see cref="F:System.Windows.Forms.TaskDialogProgressBarState.None" />.
              - or - The property is set on a progress bar instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>The speed of the marquee display which is the time, in milliseconds, between marquee animation updates. If this value is <c>0</c>, the marquee animation is updated every 30 milliseconds. The default value is <c>0</c>.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogProgressBar.Maximum">
      <summary>Gets or sets the maximum value of the range of the control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 0 or greater than <see cref="F:System.UInt16.MaxValue">UInt16.MaxValue</see>.</exception>
      <exception cref="T:System.InvalidOperationException">The property is set on a progress bar instance that is currently bound to a task dialog, but it's not visible as its initial <see cref="P:System.Windows.Forms.TaskDialogProgressBar.State" /> property value was <see cref="F:System.Windows.Forms.TaskDialogProgressBarState.None" />.
              - or - The property is set on a progress bar instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>The maximum value of the range. The default is <c>100</c>.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogProgressBar.Minimum">
      <summary>Gets or sets the minimum value of the range of the control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 0 or greater than <see cref="F:System.UInt16.MaxValue">UInt16.MaxValue</see>.</exception>
      <exception cref="T:System.InvalidOperationException">The property is set on a progress bar instance that is currently bound to a task dialog, but it's not visible as its initial <see cref="P:System.Windows.Forms.TaskDialogProgressBar.State" /> property value was <see cref="F:System.Windows.Forms.TaskDialogProgressBarState.None" />.
              - or - The property is set on a progress bar instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>The minimum value of the range. The default is <c>0</c>.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogProgressBar.State">
      <summary>Gets or sets the state of the progress bar.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a progress bar instance that is currently bound to a task dialog, but the value to be set is <see cref="F:System.Windows.Forms.TaskDialogProgressBarState.None" />.
              - or - The property is set on a progress bar instance that is currently bound to a task dialog, but it's not visible as its initial <see cref="P:System.Windows.Forms.TaskDialogProgressBar.State" /> property value was <see cref="F:System.Windows.Forms.TaskDialogProgressBarState.None" />.
              - or - The property is set on a progress bar instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>The state of the progress bar. The default is <see cref="F:System.Windows.Forms.TaskDialogProgressBarState.Normal" />, except if this instance is the default instance created by a <see cref="T:System.Windows.Forms.TaskDialogPage" />, where the default value is <see cref="F:System.Windows.Forms.TaskDialogProgressBarState.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogProgressBar.Value">
      <summary>Gets or sets the current position of the progress bar.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 0 or greater than <see cref="F:System.UInt16.MaxValue">UInt16.MaxValue</see>.</exception>
      <exception cref="T:System.InvalidOperationException">The property is set on a progress bar instance that is currently bound to a task dialog, but it's not visible as its initial <see cref="P:System.Windows.Forms.TaskDialogProgressBar.State" /> property value was <see cref="F:System.Windows.Forms.TaskDialogProgressBarState.None" />.
              - or - The property is set on a progress bar instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>The position within the range of the progress bar. The default is <c>0</c>.</returns>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogProgressBarState">
      <summary>Contains constants that specify the state of a task dialog progress bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogProgressBarState.Error">
      <summary>Shows an error (red) progress bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogProgressBarState.Marquee">
      <summary>Shows a marquee progress bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogProgressBarState.MarqueePaused">
      <summary>
        <para>Shows a marquee progress bar where the marquee animation is paused.</para>
        <para>If you switch from <see cref="T:System.Windows.Forms.TaskDialogProgressBarState.Marquee" /> to <see cref="T:System.Windows.Forms.TaskDialogProgressBarState.MarqueePaused" /> while the dialog is shown, the marquee animation will stop.</para>
      </summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogProgressBarState.None">
      <summary>
        <para>The progress bar will not be displayed.</para>
        <para>While the dialog is showing, you cannot switch from <see cref="F:System.Windows.Forms.TaskDialogProgressBarState.None" /> to any other state, and vice versa.</para>
      </summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogProgressBarState.Normal">
      <summary>Shows a regular progress bar.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogProgressBarState.Paused">
      <summary>Shows a paused (yellow) progress bar.</summary>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogRadioButton">
      <summary>Represents a radio button control of a task dialog.</summary>
    </member>
    <member name="E:System.Windows.Forms.TaskDialogRadioButton.CheckedChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TaskDialogRadioButton.Checked" /> property changes while this control is shown in a task dialog.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogRadioButton.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogRadioButton" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogRadioButton.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogRadioButton" /> class using the given <paramref name="text" />.</summary>
      <param name="text" />
    </member>
    <member name="M:System.Windows.Forms.TaskDialogRadioButton.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.TaskDialogRadioButton" /> control.</summary>
      <returns>A string that contains the control text.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogRadioButton.Checked">
      <summary>Gets or set a value indicating whether the <see cref="T:System.Windows.Forms.TaskDialogRadioButton" /> is in the checked state.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and the task dialog has started navigating to a new page containing this radio button instance, but the <see cref="E:System.Windows.Forms.TaskDialogPage.Created" /> event has not been raised yet.
              - or - The property is set on a radio button instance that is currently bound to a task dialog, but the value to be set is <see langword="false" />.
              - or - The property is set within the <see cref="E:System.Windows.Forms.TaskDialogRadioButton.CheckedChanged" /> event of one of the radio buttons of the currently bound task dialog.
              - or - The property is set on a radio button instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.TaskDialogRadioButton" /> is in the checked state; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogRadioButton.Enabled">
      <summary>Gets or sets a value indicating whether the button can respond to user interaction.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a radio button that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>
        <see langword="true" /> if the button can respond to user interaction; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogRadioButton.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this radio button instance is currently bound to a task dialog.</exception>
      <returns>The text associated with this control. The default value is <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogRadioButtonCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.TaskDialogRadioButton" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogRadioButtonCollection.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogRadioButtonCollection" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogRadioButtonCollection.Add(System.String)">
      <summary>Creates and adds a <see cref="T:System.Windows.Forms.TaskDialogRadioButton" /> to the collection.</summary>
      <param name="text">The text of the radio button.</param>
      <exception cref="T:System.InvalidOperationException">This collection is currently bound to a task dialog.</exception>
      <returns>The created <see cref="T:System.Windows.Forms.TaskDialogRadioButton" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogRadioButtonCollection.ClearItems">
      <summary>Removes all elements from the <xref data-throw-if-not-resolved="true" uid="System.Collections.ObjectModel.Collection`1"></xref>.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogRadioButtonCollection.InsertItem(System.Int32,System.Windows.Forms.TaskDialogRadioButton)">
      <param name="index" />
      <param name="item" />
    </member>
    <member name="M:System.Windows.Forms.TaskDialogRadioButtonCollection.RemoveItem(System.Int32)">
      <summary>Removes the element at the specified index of the <xref data-throw-if-not-resolved="true" uid="System.Collections.ObjectModel.Collection`1"></xref>.</summary>
      <param name="index">The zero-based index of the element to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogRadioButtonCollection.SetItem(System.Int32,System.Windows.Forms.TaskDialogRadioButton)">
      <param name="index" />
      <param name="item" />
    </member>
    <member name="T:System.Windows.Forms.TaskDialogStartupLocation">
      <summary>Specifies the position that a task dialog will be shown in when it is first opened.</summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogStartupLocation.CenterOwner">
      <summary>
        <para>The startup location of the task dialog is the center of the window that owns it, as specified by the <c>owner</c> parameter.</para>
        <para>This value will only have an effect when showing a modal dialog.</para>
      </summary>
    </member>
    <member name="F:System.Windows.Forms.TaskDialogStartupLocation.CenterScreen">
      <summary>The startup location of the task dialog is the center of the screen.</summary>
    </member>
    <member name="T:System.Windows.Forms.TaskDialogVerificationCheckBox">
      <summary>Represents a verification checkbox control of a task dialog.</summary>
    </member>
    <member name="E:System.Windows.Forms.TaskDialogVerificationCheckBox.CheckedChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TaskDialogVerificationCheckBox.Checked" /> property changes while this control is shown in a task dialog.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogVerificationCheckBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogVerificationCheckBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogVerificationCheckBox.#ctor(System.String,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TaskDialogVerificationCheckBox" /> class with the given text.</summary>
      <param name="text">A text associated with this control.</param>
      <param name="isChecked">A value indicating whether the <see cref="T:System.Windows.Forms.TaskDialogVerificationCheckBox" /> is in the checked state.</param>
    </member>
    <member name="M:System.Windows.Forms.TaskDialogVerificationCheckBox.op_Implicit(System.String)~System.Windows.Forms.TaskDialogVerificationCheckBox">
      <param name="verificationText" />
    </member>
    <member name="M:System.Windows.Forms.TaskDialogVerificationCheckBox.ToString">
      <summary>Returns a string that represents the current <see cref="T:System.Windows.Forms.TaskDialogVerificationCheckBox" /> control.</summary>
      <returns>The control text.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogVerificationCheckBox.Checked">
      <summary>Gets or set a value indicating whether the <see cref="T:System.Windows.Forms.TaskDialogVerificationCheckBox" /> is in the checked state.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set on a verification checkbox instance that is currently bound to a task dialog, but it's not visible as its initial <see cref="P:System.Windows.Forms.TaskDialogVerificationCheckBox.Text" /> property value was <see langword="null" /> or an empty string.
              - or - The property is set and the task dialog has started navigating to a new page containing this verification checkbox instance, but the <see cref="E:System.Windows.Forms.TaskDialogPage.Created" /> event has not been raised yet.
              - or - The property is set on a verification checkbox instance that is currently bound to a task dialog, but the dialog has just started navigating to a different page.</exception>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.TaskDialogVerificationCheckBox" /> is in the checked state; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TaskDialogVerificationCheckBox.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <exception cref="T:System.InvalidOperationException">The property is set and this verification checkbox instance is currently bound to a task dialog.</exception>
      <returns>The text associated with this control. The default value is <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TextBox">
      <summary>Represents a Windows text box control.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBox.TextAlignChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TextBox.TextAlign" /> property has changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TextBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBox.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.TextBox.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.TextBox" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBox.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is an input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the key's values.</param>
      <returns>
        <see langword="true" /> if the specified key is an input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBox.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBox.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBox.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBox.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBox.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnHandleDestroyed(System.EventArgs)" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBox.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.TextBox.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.TextBox.OnTextAlignChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TextBox.TextAlignChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBox.Paste(System.String)">
      <summary>Sets the selected text to the specified text without clearing the undo buffer.</summary>
      <param name="text">The text to replace.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBox.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the shortcut key to process.</param>
      <returns>
        <see langword="true" /> if the command key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBox.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">A Windows Message object.</param>
    </member>
    <member name="P:System.Windows.Forms.TextBox.AcceptsReturn">
      <summary>Gets or sets a value indicating whether pressing ENTER in a multiline <see cref="T:System.Windows.Forms.TextBox" /> control creates a new line of text in the control or activates the default button for the form.</summary>
      <returns>
        <see langword="true" /> if the ENTER key creates a new line of text in a multiline version of the control; <see langword="false" /> if the ENTER key activates the default button for the form. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.AutoCompleteCustomSource">
      <summary>Gets or sets a custom <see cref="T:System.Collections.Specialized.StringCollection" /> to use when the <see cref="P:System.Windows.Forms.TextBox.AutoCompleteSource" /> property is set to <see langword="CustomSource" />.</summary>
      <returns>A <see cref="T:System.Collections.Specialized.StringCollection" /> to use with <see cref="P:System.Windows.Forms.TextBox.AutoCompleteSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.AutoCompleteMode">
      <summary>Gets or sets an option that controls how automatic completion works for the <see cref="T:System.Windows.Forms.TextBox" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the values of <see cref="T:System.Windows.Forms.AutoCompleteMode" />.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.AutoCompleteMode" />. The following are the values.  
  
 <see cref="F:System.Windows.Forms.AutoCompleteMode.Append" />  
 Appends the remainder of the most likely candidate string to the existing characters, highlighting the appended characters.  
  
 <see cref="F:System.Windows.Forms.AutoCompleteMode.Suggest" />  
 Displays the auxiliary drop-down list associated with the edit control. This drop-down is populated with one or more suggested completion strings.  
  
 <see cref="F:System.Windows.Forms.AutoCompleteMode.SuggestAppend" />  
 Appends both <see langword="Suggest" /> and <see langword="Append" /> options.  
  
 <see cref="F:System.Windows.Forms.AutoCompleteMode.None" />  
 Disables automatic completion. This is the default.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.AutoCompleteSource">
      <summary>Gets or sets a value specifying the source of complete strings used for automatic completion.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the values of <see cref="T:System.Windows.Forms.AutoCompleteSource" />.</exception>
      <returns>One of the values of <see cref="T:System.Windows.Forms.AutoCompleteSource" />. The options are <see langword="AllSystemSources" />, <see langword="AllUrl" />, <see langword="FileSystem" />, <see langword="HistoryList" />, <see langword="RecentlyUsedList" />, <see langword="CustomSource" />, and <see langword="None" />. The default is <see langword="None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.CharacterCasing">
      <summary>Gets or sets whether the <see cref="T:System.Windows.Forms.TextBox" /> control modifies the case of characters as they are typed.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">A value that is not within the range of valid values for the enumeration was assigned to the property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.CharacterCasing" /> enumeration values that specifies whether the <see cref="T:System.Windows.Forms.TextBox" /> control modifies the case of characters. The default is <see langword="CharacterCasing.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.Multiline">
      <summary>Gets or sets a value indicating whether this is a multiline <see cref="T:System.Windows.Forms.TextBox" /> control.</summary>
      <returns>
        <see langword="true" /> if the control is a multiline <see cref="T:System.Windows.Forms.TextBox" /> control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.PasswordChar">
      <summary>Gets or sets the character used to mask characters of a password in a single-line <see cref="T:System.Windows.Forms.TextBox" /> control.</summary>
      <returns>The character used to mask characters entered in a single-line <see cref="T:System.Windows.Forms.TextBox" /> control. Set the value of this property to '0' (U+0000) if you do not want the control to mask characters as they are typed. The default value is '0' (U+0000).</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.PlaceholderText">
      <summary>Gets or sets the text that is displayed when the control has no text and does not have the focus.</summary>
      <returns>The text that is displayed when the control has no text and does not have the focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.ScrollBars">
      <summary>Gets or sets which scroll bars should appear in a multiline <see cref="T:System.Windows.Forms.TextBox" /> control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">A value that is not within the range of valid values for the enumeration was assigned to the property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ScrollBars" /> enumeration values that indicates whether a multiline <see cref="T:System.Windows.Forms.TextBox" /> control appears with no scroll bars, a horizontal scroll bar, a vertical scroll bar, or both. The default is <see langword="ScrollBars.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.TextAlign">
      <summary>Gets or sets how text is aligned in a <see cref="T:System.Windows.Forms.TextBox" /> control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">A value that is not within the range of valid values for the enumeration was assigned to the property.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> enumeration values that specifies how text is aligned in the control. The default is <see langword="HorizontalAlignment.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBox.UseSystemPasswordChar">
      <summary>Gets or sets a value indicating whether the text in the <see cref="T:System.Windows.Forms.TextBox" /> control should appear as the default password character.</summary>
      <returns>
        <see langword="true" /> if the text in the <see cref="T:System.Windows.Forms.TextBox" /> control should appear as the default password character; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TextBoxBase">
      <summary>Implements the basic functionality required by text controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.AcceptsTabChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TextBoxBase.AcceptsTab" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.AutoSizeChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TextBoxBase.BackgroundImage" /> property changes. This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TextBoxBase.BackgroundImageLayout" /> property changes. This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.BorderStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TextBoxBase.BorderStyle" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.Click">
      <summary>Occurs when the text box is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.HideSelectionChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TextBoxBase.HideSelection" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.ModifiedChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TextBoxBase.Modified" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.MouseClick">
      <summary>Occurs when the control is clicked by the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.MultilineChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TextBoxBase.Multiline" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.PaddingChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.Paint">
      <summary>Occurs when the control is redrawn. This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.TextBoxBase.ReadOnlyChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TextBoxBase.ReadOnly" /> property has changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.AppendText(System.String)">
      <summary>Appends text to the current text of a text box.</summary>
      <param name="text">The text to append to the current contents of the text box.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.Clear">
      <summary>Clears all text from the text box control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.ClearUndo">
      <summary>Clears information about the most recent operation from the undo buffer of the text box.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.ContainsNavigationKeyCode(System.Windows.Forms.Keys)">
      <param name="keyCode" />
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.Copy">
      <summary>Copies the current selection in the text box to the Clipboard.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.TextBoxBase.CreateHandle">
      <summary>Creates a handle for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.Cut">
      <summary>Moves the current selection in the text box to the Clipboard.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.DeselectAll">
      <summary>Specifies that the value of the <see cref="P:System.Windows.Forms.TextBoxBase.SelectionLength" /> property is zero so that no characters are selected in the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.GetCharFromPosition(System.Drawing.Point)">
      <summary>Retrieves the character that is closest to the specified location within the control.</summary>
      <param name="pt">The location from which to seek the nearest character.</param>
      <returns>The character at the specified location.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.GetCharIndexFromPosition(System.Drawing.Point)">
      <summary>Retrieves the index of the character nearest to the specified location.</summary>
      <param name="pt">The location to search.</param>
      <returns>The zero-based character index at the specified location.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.GetFirstCharIndexFromLine(System.Int32)">
      <summary>Retrieves the index of the first character of a given line.</summary>
      <param name="lineNumber">The line for which to get the index of its first character.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="lineNumber" /> parameter is less than zero.</exception>
      <returns>The zero-based index of the first character in the specified line.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.GetFirstCharIndexOfCurrentLine">
      <summary>Retrieves the index of the first character of the current line.</summary>
      <returns>The zero-based character index in the current line.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.GetLineFromCharIndex(System.Int32)">
      <summary>Retrieves the line number from the specified character position within the text of the control.</summary>
      <param name="index">The character index position to search.</param>
      <returns>The zero-based line number in which the character index is located.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.GetPositionFromCharIndex(System.Int32)">
      <summary>Retrieves the location within the control at the specified character index.</summary>
      <param name="index">The index of the character for which to retrieve the location.</param>
      <returns>The location of the specified character within the client rectangle of the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is an input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the Keys value.</param>
      <returns>
        <see langword="true" /> if the specified key is an input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnAcceptsTabChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TextBoxBase.AcceptsTabChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnBorderStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TextBoxBase.BorderStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnHideSelectionChanged(System.EventArgs)">
      <summary>Raise the <see cref="E:System.Windows.Forms.TextBoxBase.HideSelectionChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnModifiedChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TextBoxBase.ModifiedChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="mevent">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnMultilineChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TextBoxBase.MultilineChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnPaddingChanged(System.EventArgs)">
      <summary>This method is not relevant for this class.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnReadOnlyChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TextBoxBase.ReadOnlyChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.Paste">
      <summary>Replaces the current selection in the text box with the contents of the Clipboard.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" />, passed by reference that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the shortcut key to process.</param>
      <returns>
        <see langword="true" /> if the command key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.ScrollToCaret">
      <summary>Scrolls the contents of the control to the current caret position.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.Select(System.Int32,System.Int32)">
      <summary>Selects a range of text in the text box.</summary>
      <param name="start">The position of the first character in the current text selection within the text box.</param>
      <param name="length">The number of characters to select.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="start" /> parameter is less than zero.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.SelectAll">
      <summary>Selects all text in the text box.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Sets the specified bounds of the <see cref="T:System.Windows.Forms.TextBoxBase" /> control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">Not used.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.TextBoxBase" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.TextBoxBase" />. The string includes the type and the <see cref="T:System.Windows.Forms.TextBoxBase" /> property of the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.Undo">
      <summary>Undoes the last edit operation in the text box.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxBase.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.AcceptsTab">
      <summary>Gets or sets a value indicating whether pressing the TAB key in a multiline text box control types a TAB character in the control instead of moving the focus to the next control in the tab order.</summary>
      <returns>
        <see langword="true" /> if users can enter tabs in a multiline text box using the TAB key; <see langword="false" /> if pressing the TAB key moves the focus. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.AutoSize">
      <summary>Gets or sets a value indicating whether the height of the control automatically adjusts when the font assigned to the control is changed.</summary>
      <returns>
        <see langword="true" /> if the height of the control automatically adjusts when the font is changed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.BackColor">
      <summary>Gets or sets the background color of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.BackgroundImage">
      <summary>This property is not relevant for this class.</summary>
      <returns>The background image for the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.BackgroundImageLayout">
      <summary>This property is not relevant for this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.BorderStyle">
      <summary>Gets or sets the border type of the text box control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">A value that is not within the range of valid values for the enumeration was assigned to the property.</exception>
      <returns>A <see cref="T:System.Windows.Forms.BorderStyle" /> that represents the border type of the text box control. The default is <see langword="Fixed3D" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.CanEnableIme">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property can be set to an active value, to enable IME support.</summary>
      <returns>
        <see langword="false" /> if the <see cref="P:System.Windows.Forms.TextBoxBase.ReadOnly" /> property is <see langword="true" /> or if this <see cref="T:System.Windows.Forms.TextBoxBase" /> class is set to use a password mask character; otherwise, <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.CanUndo">
      <summary>Gets a value indicating whether the user can undo the previous operation in a text box control.</summary>
      <returns>
        <see langword="true" /> if the user can undo the previous operation performed in a text box control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.DefaultCursor">
      <summary>Gets or sets the default cursor for the control.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.Cursor" /> representing the current default cursor.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.DoubleBuffered">
      <summary>Gets or sets a value indicating whether control drawing is done in a buffer before the control is displayed. This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> to implement double buffering on the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.ForeColor">
      <summary>Gets or sets the foreground color of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the control's foreground color.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.HideSelection">
      <summary>Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the control loses focus.</summary>
      <returns>
        <see langword="true" /> if the selected text does not appear highlighted when the text box control loses focus; <see langword="false" />, if the selected text remains highlighted when the text box control loses focus. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.ImeModeBase">
      <summary>Gets or sets the Input Method Editor (IME) mode of a control.</summary>
      <returns>The IME mode of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.Lines">
      <summary>Gets or sets the lines of text in a text box control.</summary>
      <returns>An array of strings that contains the text in a text box control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.MaxLength">
      <summary>Gets or sets the maximum number of characters the user can type or paste into the text box control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The value assigned to the property is less than 0.</exception>
      <returns>The number of characters that can be entered into the control. The default is 32767.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.Modified">
      <summary>Gets or sets a value that indicates that the text box control has been modified by the user since the control was created or its contents were last set.</summary>
      <returns>
        <see langword="true" /> if the control's contents have been modified; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.Multiline">
      <summary>Gets or sets a value indicating whether this is a multiline text box control.</summary>
      <returns>
        <see langword="true" /> if the control is a multiline text box control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.Padding">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.PreferredHeight">
      <summary>Gets the preferred height for a text box.</summary>
      <returns>The preferred height of a text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.ReadOnly">
      <summary>Gets or sets a value indicating whether text in the text box is read-only.</summary>
      <returns>
        <see langword="true" /> if the text box is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.SelectedText">
      <summary>Gets or sets a value indicating the currently selected text in the control.</summary>
      <returns>A string that represents the currently selected text in the text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.SelectionLength">
      <summary>Gets or sets the number of characters selected in the text box.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than zero.</exception>
      <returns>The number of characters selected in the text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.SelectionStart">
      <summary>Gets or sets the starting point of text selected in the text box.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than zero.</exception>
      <returns>The starting position of text selected in the text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.ShortcutsEnabled">
      <summary>Gets or sets a value indicating whether the defined shortcuts are enabled.</summary>
      <returns>
        <see langword="true" /> to enable the shortcuts; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.Text">
      <summary>Gets or sets the current text in the text box.</summary>
      <returns>The text displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.TextLength">
      <summary>Gets the length of text in the control.</summary>
      <returns>The number of characters contained in the text of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TextBoxBase.WordWrap">
      <summary>Indicates whether a multiline text box control automatically wraps words to the beginning of the next line when necessary.</summary>
      <returns>
        <see langword="true" /> if the multiline text box control wraps words; <see langword="false" /> if the text box control automatically scrolls horizontally when the user types past the right edge of the control. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TextBoxRenderer">
      <summary>Provides methods used to render a text box control with visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.TextBoxState)">
      <summary>Draws a text box control in the specified state and bounds, and with the specified text, text bounds, and text formatting.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="textBoxText">The <see cref="T:System.String" /> to draw in the text box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="textBoxText" />.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of <paramref name="textBoxText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TextBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TextBoxState)">
      <summary>Draws a text box control in the specified state and bounds, and with the specified text and text bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="textBoxText">The <see cref="T:System.String" /> to draw in the text box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="textBoxText" />.</param>
      <param name="textBounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of <paramref name="textBoxText" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TextBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.TextFormatFlags,System.Windows.Forms.VisualStyles.TextBoxState)">
      <summary>Draws a text box control in the specified state and bounds, and with the specified text and text formatting.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="textBoxText">The <see cref="T:System.String" /> to draw in the text box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="textBoxText" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TextBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.String,System.Drawing.Font,System.Windows.Forms.VisualStyles.TextBoxState)">
      <summary>Draws a text box control in the specified state and bounds, and with the specified text.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="textBoxText">The <see cref="T:System.String" /> to draw in the text box.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="textBoxText" />.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TextBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TextBoxState)">
      <summary>Draws a text box control in the specified state and bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text box.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the text box.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TextBoxState" /> values that specifies the visual state of the text box.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="P:System.Windows.Forms.TextBoxRenderer.IsSupported">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.TextBoxRenderer" /> class can be used to draw a text box with visual styles.</summary>
      <returns>
        <see langword="true" /> if the user has enabled visual styles in the operating system and visual styles are applied to the client area of application windows; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TextDataFormat">
      <summary>Specifies the formats used with text-related methods of the <see cref="T:System.Windows.Forms.Clipboard" /> and <see cref="T:System.Windows.Forms.DataObject" /> classes.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextDataFormat.CommaSeparatedValue">
      <summary>Specifies a comma-separated value (CSV) format, which is a common interchange format used by spreadsheets.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextDataFormat.Html">
      <summary>Specifies text consisting of HTML data.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextDataFormat.Rtf">
      <summary>Specifies text consisting of rich text format (RTF) data.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextDataFormat.Text">
      <summary>Specifies the standard ANSI text format.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextDataFormat.UnicodeText">
      <summary>Specifies the standard Windows Unicode text format.</summary>
    </member>
    <member name="T:System.Windows.Forms.TextFormatFlags">
      <summary>Specifies the display and layout information for text strings.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.Bottom">
      <summary>Aligns the text on the bottom of the bounding rectangle. Applied only when the text is a single line.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.Default">
      <summary>Applies the default formatting, which is left-aligned.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.EndEllipsis">
      <summary>Removes the end of trimmed lines, and replaces them with an ellipsis. When used to draw text by <c>TextRenderer</c>, the string is not modified unless the <see cref="F:System.Windows.Forms.TextFormatFlags.ModifyString" /> flag is specified. Compare with <see cref="F:System.Windows.Forms.TextFormatFlags.PathEllipsis" /> and <see cref="F:System.Windows.Forms.TextFormatFlags.WordEllipsis" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.ExpandTabs">
      <summary>Expands tab characters. The default number of characters per tab is eight. The <see cref="F:System.Windows.Forms.TextFormatFlags.WordEllipsis" />, <see cref="F:System.Windows.Forms.TextFormatFlags.PathEllipsis" />, and <see cref="F:System.Windows.Forms.TextFormatFlags.EndEllipsis" /> values cannot be used with <see cref="F:System.Windows.Forms.TextFormatFlags.ExpandTabs" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.ExternalLeading">
      <summary>Includes the font external leading in line height. Typically, external leading is not included in the height of a line of text.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.GlyphOverhangPadding">
      <summary>Adds padding to the bounding rectangle to accommodate overhanging glyphs. This is the default.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.HidePrefix">
      <summary>Ignores the ampersand (&amp;) prefix character in the text, so that the letter that follows won't be underlined, but other mnemonic-prefix characters are still processed.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.HorizontalCenter">
      <summary>Centers the text horizontally within the bounding rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.Internal">
      <summary>Uses the system font to calculate text metrics.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.Left">
      <summary>Aligns the text on the left side of the clipping area. This is the default.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.LeftAndRightPadding">
      <summary>Adds padding to both sides of the bounding rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.ModifyString">
      <summary>Has no effect on the drawn text or text measurements. When used to draw text by <c>TextRenderer</c>, modifies the specified string parameter to match the displayed text if ellipsis are shown. This value has no effect unless <see cref="F:System.Windows.Forms.TextFormatFlags.EndEllipsis" /> or <see cref="F:System.Windows.Forms.TextFormatFlags.PathEllipsis" /> is specified.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.NoClipping">
      <summary>Allows the overhanging parts of glyphs and unwrapped text reaching outside the formatting rectangle to show.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.NoFullWidthCharacterBreak">
      <summary>A legacy value that has no effect. It prevents a line break at a double-wide character string, so that the line-breaking rule is equivalent to that for single-wide character strings.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.NoPadding">
      <summary>Does not add padding to the bounding rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.NoPrefix">
      <summary>Turns off processing of prefix characters. Typically, the ampersand (&amp;) mnemonic-prefix character is interpreted as a directive to underscore the character that follows, and the double-ampersand (&amp;&amp;) mnemonic-prefix characters as a directive to print a single ampersand. By specifying <see cref="F:System.Windows.Forms.TextFormatFlags.NoPrefix" />, this processing is turned off. For example, an input string of "A&amp;bc&amp;&amp;d" with <see cref="F:System.Windows.Forms.TextFormatFlags.NoPrefix" /> applied would result in output of "A&amp;bc&amp;&amp;d". Compare with <c>PrefixOnly</c>.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.PathEllipsis">
      <summary>Removes the center of trimmed lines and replaces it with an ellipsis. When used to draw text by <c>TextRenderer</c>, the string is not modified unless the <see cref="F:System.Windows.Forms.TextFormatFlags.ModifyString" /> flag is specified. Compare with <see cref="F:System.Windows.Forms.TextFormatFlags.EndEllipsis" /> and <see cref="F:System.Windows.Forms.TextFormatFlags.WordEllipsis" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.PrefixOnly">
      <summary>Draws only an underline at the position of the character following the ampersand (&amp;) prefix character and doesn't draw any other characters in the string.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.PreserveGraphicsClipping">
      <summary>Preserves the clipping specified by a <see cref="T:System.Drawing.Graphics" /> object. Applies only to methods receiving an <see cref="T:System.Drawing.IDeviceContext" /> that is a <see cref="T:System.Drawing.Graphics" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.PreserveGraphicsTranslateTransform">
      <summary>Preserves the transformation specified by a <see cref="T:System.Drawing.Graphics" />. Applies only to methods receiving an <see cref="T:System.Drawing.IDeviceContext" /> that is a <see cref="T:System.Drawing.Graphics" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.Right">
      <summary>Aligns the text on the right side of the clipping area.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.RightToLeft">
      <summary>Displays the text from right to left.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.SingleLine">
      <summary>Displays the text in a single line.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.TextBoxControl">
      <summary>Specifies the text should be formatted for display on a <see cref="T:System.Windows.Forms.TextBox" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.Top">
      <summary>Aligns the text on the top of the bounding rectangle. This is the default.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.VerticalCenter">
      <summary>Centers the text vertically, within the bounding rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.WordBreak">
      <summary>Breaks the text at the end of a word.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextFormatFlags.WordEllipsis">
      <summary>Trims the line to the nearest word and an ellipsis is placed at the end of a trimmed line. Compare with <see cref="F:System.Windows.Forms.TextFormatFlags.EndEllipsis" /> and <see cref="F:System.Windows.Forms.TextFormatFlags.PathEllipsis" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.TextImageRelation">
      <summary>Specifies the position of the text and image relative to each other on a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextImageRelation.ImageAboveText">
      <summary>Specifies that the image is displayed vertically above the text of a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextImageRelation.ImageBeforeText">
      <summary>Specifies that the image is displayed horizontally before the text of a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextImageRelation.Overlay">
      <summary>Specifies that the image and text share the same space on a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextImageRelation.TextAboveImage">
      <summary>Specifies that the text is displayed vertically above the image of a control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TextImageRelation.TextBeforeImage">
      <summary>Specifies that the text is displayed horizontally before the image of a control.</summary>
    </member>
    <member name="T:System.Windows.Forms.TextRenderer">
      <summary>Provides methods used to measure and render text. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Point,System.Drawing.Color)">
      <summary>Draws the specified text at the specified location using the specified device context, font, and color.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the drawn text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color)">
      <summary>Draws the specified text at the specified location, using the specified device context, font, color, and back color.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the drawn text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> to apply to the background area of the drawn text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the specified text at the specified location using the specified device context, font, color, back color, and formatting instructions.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the drawn text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> to apply to the background area of the drawn text.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="F:System.Windows.Forms.TextFormatFlags.ModifyString" /> is set.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the specified text at the specified location using the specified device context, font, color, and formatting instructions.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the drawn text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="F:System.Windows.Forms.TextFormatFlags.ModifyString" /> is set.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color)">
      <summary>Draws the specified text within the specified bounds, using the specified device context, font, and color.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color)">
      <summary>Draws the specified text within the specified bounds using the specified device context, font, color, and back color.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> to apply to the background area of the drawn text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the specified text within the specified bounds using the specified device context, font, color, back color, and formatting instructions.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> to apply to the background area of the drawn text.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="F:System.Windows.Forms.TextFormatFlags.ModifyString" /> is set.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the specified text within the specified bounds using the specified device context, font, color, and formatting instructions.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="F:System.Windows.Forms.TextFormatFlags.ModifyString" /> is set.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Point,System.Drawing.Color)">
      <summary>Draws the specified text at the specified location using the specified device context, font, and color.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the drawn text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color)">
      <summary>Draws the specified text at the specified location, using the specified device context, font, color, and back color.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the drawn text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> to apply to the background area of the drawn text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the specified text at the specified location using the specified device context, font, color, back color, and formatting instructions.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the drawn text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the text.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> to apply to the background area of the drawn text.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Point,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the specified text at the specified location using the specified device context, font, color, and formatting instructions.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the drawn text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color)">
      <summary>Draws the specified text within the specified bounds, using the specified device context, font, and color.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color)">
      <summary>Draws the specified text within the specified bounds using the specified device context, font, color, and back color.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> to apply to the area represented by <paramref name="bounds" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the specified text within the specified bounds using the specified device context, font, color, back color, and formatting instructions.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the text.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> to apply to the area represented by <paramref name="bounds" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws the specified text within the specified bounds using the specified device context, font, color, and formatting instructions.</summary>
      <param name="dc">The device context in which to draw the text.</param>
      <param name="text">The text to draw.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the drawn text.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the text.</param>
      <param name="foreColor">The <see cref="T:System.Drawing.Color" /> to apply to the drawn text.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font)">
      <summary>Provides the size, in pixels, of the specified text drawn with the specified font in the specified device context.</summary>
      <param name="dc">The device context in which to measure the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn with the specified <paramref name="font" /> in the specified device context.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Size)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified font in the specified device context, using the specified size to create an initial bounding rectangle for the text.</summary>
      <param name="dc">The device context in which to measure the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <param name="proposedSize">The <see cref="T:System.Drawing.Size" /> of the initial bounding rectangle.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn with the specified <paramref name="font" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified device context, font, and formatting instructions, using the specified size to create the initial bounding rectangle for the text.</summary>
      <param name="dc">The device context in which to measure the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <param name="proposedSize">The <see cref="T:System.Drawing.Size" /> of the initial bounding rectangle.</param>
      <param name="flags">The formatting instructions to apply to the measured text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="F:System.Windows.Forms.TextFormatFlags.ModifyString" /> is set.</exception>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn with the specified <paramref name="font" /> and format.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font)">
      <summary>Provides the size, in pixels, of the specified text drawn with the specified font in the specified device context.</summary>
      <param name="dc">The device context in which to measure the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn in a single line with the specified <paramref name="font" /> in the specified device context.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Size)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified font in the specified device context, using the specified size to create an initial bounding rectangle for the text.</summary>
      <param name="dc">The device context in which to measure the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <param name="proposedSize">The <see cref="T:System.Drawing.Size" /> of the initial bounding rectangle.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn with the specified <paramref name="font" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified device context, font, and formatting instructions, using the specified size to create the initial bounding rectangle for the text.</summary>
      <param name="dc">The device context in which to measure the text.</param>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <param name="proposedSize">The <see cref="T:System.Drawing.Size" /> of the initial bounding rectangle.</param>
      <param name="flags">The formatting instructions to apply to the measured text.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn with the specified <paramref name="font" /> and format.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan{System.Char},System.Drawing.Font)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified font.</summary>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of text drawn on a single line with the specified font. You can manipulate how the text is drawn by using one of the <see cref="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)" /> overloads that takes a <see cref="T:System.Windows.Forms.TextFormatFlags" /> parameter. For example, the default behavior of the <see cref="T:System.Windows.Forms.TextRenderer" /> is to add padding to the bounding rectangle of the drawn text to accommodate overhanging glyphs. If you need to draw a line of text without these extra spaces you should use the versions of <see cref="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Point,System.Drawing.Color)" /> and <see cref="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.ReadOnlySpan{System.Char},System.Drawing.Font)" /> that take a Size and <see cref="T:System.Windows.Forms.TextFormatFlags" /> parameter. For an example, see <see cref="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Size)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified font, using the specified size to create an initial bounding rectangle.</summary>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <param name="proposedSize">The <see cref="T:System.Drawing.Size" /> of the initial bounding rectangle.</param>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn with the specified <paramref name="font" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan{System.Char},System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified font and formatting instructions, using the specified size to create the initial bounding rectangle for the text.</summary>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <param name="proposedSize">The <see cref="T:System.Drawing.Size" /> of the initial bounding rectangle.</param>
      <param name="flags">The formatting instructions to apply to the measured text.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <see cref="F:System.Windows.Forms.TextFormatFlags.ModifyString" /> is set.</exception>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn with the specified <paramref name="font" /> and format.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.String,System.Drawing.Font)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified font.</summary>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn on a single line with the specified <paramref name="font" />. You can manipulate how the text is drawn by using one of the <see cref="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.TextFormatFlags)" /> overloads that takes a <see cref="T:System.Windows.Forms.TextFormatFlags" /> parameter. For example, the default behavior of the <see cref="T:System.Windows.Forms.TextRenderer" /> is to add padding to the bounding rectangle of the drawn text to accommodate overhanging glyphs. If you need to draw a line of text without these extra spaces you should use the versions of <see cref="M:System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Point,System.Drawing.Color)" /> and <see cref="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font)" /> that take a <see cref="T:System.Drawing.Size" /> and <see cref="T:System.Windows.Forms.TextFormatFlags" /> parameter. For an example, see <see cref="M:System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext,System.String,System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.String,System.Drawing.Font,System.Drawing.Size)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified font, using the specified size to create an initial bounding rectangle.</summary>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <param name="proposedSize">The <see cref="T:System.Drawing.Size" /> of the initial bounding rectangle.</param>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn with the specified <paramref name="font" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TextRenderer.MeasureText(System.String,System.Drawing.Font,System.Drawing.Size,System.Windows.Forms.TextFormatFlags)">
      <summary>Provides the size, in pixels, of the specified text when drawn with the specified font and formatting instructions, using the specified size to create the initial bounding rectangle for the text.</summary>
      <param name="text">The text to measure.</param>
      <param name="font">The <see cref="T:System.Drawing.Font" /> to apply to the measured text.</param>
      <param name="proposedSize">The <see cref="T:System.Drawing.Size" /> of the initial bounding rectangle.</param>
      <param name="flags">The formatting instructions to apply to the measured text.</param>
      <returns>The <see cref="T:System.Drawing.Size" />, in pixels, of <paramref name="text" /> drawn with the specified <paramref name="font" /> and format.</returns>
    </member>
    <member name="T:System.Windows.Forms.ThreadExceptionDialog">
      <summary>Implements a dialog box that is displayed when an unhandled exception occurs in a thread.</summary>
    </member>
    <member name="E:System.Windows.Forms.ThreadExceptionDialog.AutoSizeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ThreadExceptionDialog.AutoSize" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ThreadExceptionDialog.#ctor(System.Exception)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ThreadExceptionDialog" /> class.</summary>
      <param name="t">The <see cref="T:System.Exception" /> that represents the exception that occurred.</param>
    </member>
    <member name="P:System.Windows.Forms.ThreadExceptionDialog.AutoSize">
      <summary>Gets or sets a value indicating whether the dialog box automatically sizes to its content.</summary>
      <returns>
        <see langword="true" /> if the dialog box automatically sizes; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TickStyle">
      <summary>Specifies the location of tick marks in a <see cref="T:System.Windows.Forms.TrackBar" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TickStyle.Both">
      <summary>Tick marks are located on both sides of the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TickStyle.BottomRight">
      <summary>Tick marks are located on the bottom of a horizontal control or on the right side of a vertical control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TickStyle.None">
      <summary>No tick marks appear in the control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TickStyle.TopLeft">
      <summary>Tick marks are located on the top of a horizontal control or on the left of a vertical control.</summary>
    </member>
    <member name="T:System.Windows.Forms.Timer">
      <summary>Implements a timer that raises an event at user-defined intervals. This timer is optimized for use in Windows Forms applications and must be used in a window.</summary>
    </member>
    <member name="E:System.Windows.Forms.Timer.Tick">
      <summary>Occurs when the specified timer interval has elapsed and the timer is enabled.</summary>
    </member>
    <member name="M:System.Windows.Forms.Timer.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Timer" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.Timer.#ctor(System.ComponentModel.IContainer)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.Timer" /> class together with the specified container.</summary>
      <param name="container">An <see cref="T:System.ComponentModel.IContainer" /> that represents the container for the timer.</param>
    </member>
    <member name="M:System.Windows.Forms.Timer.Dispose(System.Boolean)">
      <summary>Disposes of the resources, other than memory, used by the timer.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources. <see langword="false" /> to release only the unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.Timer.OnTick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Timer.Tick" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data. This is always <see cref="F:System.EventArgs.Empty" />.</param>
    </member>
    <member name="M:System.Windows.Forms.Timer.Start">
      <summary>Starts the timer.</summary>
    </member>
    <member name="M:System.Windows.Forms.Timer.Stop">
      <summary>Stops the timer.</summary>
    </member>
    <member name="M:System.Windows.Forms.Timer.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.Timer" />.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.Timer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Timer.Enabled">
      <summary>Gets or sets whether the timer is running.</summary>
      <returns>
        <see langword="true" /> if the timer is currently enabled; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.Timer.Interval">
      <summary>Gets or sets the time, in milliseconds, before the <see cref="E:System.Windows.Forms.Timer.Tick" /> event is raised relative to the last occurrence of the <see cref="E:System.Windows.Forms.Timer.Tick" /> event.</summary>
      <returns>An <see cref="T:System.Int32" /> specifying the number of milliseconds before the <see cref="E:System.Windows.Forms.Timer.Tick" /> event is raised relative to the last occurrence of the <see cref="E:System.Windows.Forms.Timer.Tick" /> event. The value cannot be less than one.</returns>
    </member>
    <member name="P:System.Windows.Forms.Timer.Tag">
      <summary>Gets or sets an arbitrary string representing some type of user state.</summary>
      <returns>An arbitrary string representing some type of user state.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStrip">
      <summary>Provides a container for Windows toolbar objects.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.AutoSizeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStrip.AutoSize" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.BeginDrag">
      <summary>Occurs when the user begins to drag the <see cref="T:System.Windows.Forms.ToolStrip" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.CausesValidationChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStrip.CausesValidation" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.ControlAdded">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.ControlRemoved">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.CursorChanged">
      <summary>Occurs when the value of the <see cref="T:System.Windows.Forms.Cursor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.EndDrag">
      <summary>Occurs when the user stops dragging the <see cref="T:System.Windows.Forms.ToolStrip" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.ForeColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStrip.ForeColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.ItemAdded">
      <summary>Occurs when a new <see cref="T:System.Windows.Forms.ToolStripItem" /> is added to the <see cref="T:System.Windows.Forms.ToolStripItemCollection" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.ItemClicked">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripItem" /> is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.ItemRemoved">
      <summary>Occurs when a <see cref="T:System.Windows.Forms.ToolStripItem" /> is removed from the <see cref="T:System.Windows.Forms.ToolStripItemCollection" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.LayoutCompleted">
      <summary>Occurs when the layout of the <see cref="T:System.Windows.Forms.ToolStrip" /> is complete.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.LayoutStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStrip.LayoutStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.PaintGrip">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStrip" /> move handle is painted.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStrip.RendererChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStrip.Renderer" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStrip" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.#ctor(System.Windows.Forms.ToolStripItem[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStrip" /> class with the specified array of <see cref="T:System.Windows.Forms.ToolStripItem" />s.</summary>
      <param name="items">An array of <see cref="T:System.Windows.Forms.ToolStripItem" /> objects.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.ToolStrip" /> item.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the <see cref="T:System.Windows.Forms.ToolStrip" /> item.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.CreateControlsInstance">
      <summary>Creates a new instance of the control collection for the control.</summary>
      <returns>A new instance of <see cref="T:System.Windows.Forms.Control.ControlCollection" /> assigned to the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.CreateDefaultItem(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Creates a default <see cref="T:System.Windows.Forms.ToolStripItem" /> with the specified text, image, and event handler on a new <see cref="T:System.Windows.Forms.ToolStrip" /> instance.</summary>
      <param name="text">The text to use for the <see cref="T:System.Windows.Forms.ToolStripItem" />. If the <paramref name="text" /> parameter is a hyphen (-), this method creates a <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="onClick">An event handler that raises the <see cref="E:System.Windows.Forms.Control.Click" /> event when the <see cref="T:System.Windows.Forms.ToolStripItem" /> is clicked.</param>
      <returns>A <see cref="M:System.Windows.Forms.ToolStripButton.#ctor(System.String,System.Drawing.Image,System.EventHandler)" />, or a <see cref="T:System.Windows.Forms.ToolStripSeparator" /> if the <paramref name="text" /> parameter is a hyphen (-).</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.CreateLayoutSettings(System.Windows.Forms.ToolStripLayoutStyle)">
      <summary>Specifies the visual arrangement for the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <param name="layoutStyle">The visual arrangement to be applied to the <see cref="T:System.Windows.Forms.ToolStrip" />.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripLayoutStyle" /> values. The default is <see langword="null" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ToolStrip" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.GetChildAtPoint(System.Drawing.Point)">
      <summary>This method is not relevant for this class.</summary>
      <param name="point">A <see cref="T:System.Drawing.Point" />.</param>
      <returns>The child <see cref="T:System.Windows.Forms.Control" /> that is located at the specified coordinates.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.GetChildAtPoint(System.Drawing.Point,System.Windows.Forms.GetChildAtPointSkip)">
      <summary>This method is not relevant for this class.</summary>
      <param name="pt">A <see cref="T:System.Drawing.Point" /> value.</param>
      <param name="skipValue">A <see cref="T:System.Windows.Forms.GetChildAtPointSkip" /> value.</param>
      <returns>The child <see cref="T:System.Windows.Forms.Control" /> that is located at the specified coordinates.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.GetItemAt(System.Drawing.Point)">
      <summary>Returns the item located at the specified point in the client area of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <param name="point">The <see cref="T:System.Drawing.Point" /> at which to search for the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> at the specified location, or <see langword="null" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> is not found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.GetItemAt(System.Int32,System.Int32)">
      <summary>Returns the item located at the specified x- and y-coordinates of the <see cref="T:System.Windows.Forms.ToolStrip" /> client area.</summary>
      <param name="x">The horizontal coordinate, in pixels, from the left edge of the client area.</param>
      <param name="y">The vertical coordinate, in pixels, from the top edge of the client area.</param>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> located at the specified location, or <see langword="null" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> is not found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.GetNextItem(System.Windows.Forms.ToolStripItem,System.Windows.Forms.ArrowDirection)">
      <summary>Retrieves the next <see cref="T:System.Windows.Forms.ToolStripItem" /> from the specified reference point and moving in the specified direction.</summary>
      <param name="start">The <see cref="T:System.Windows.Forms.ToolStripItem" /> that is the reference point from which to begin the retrieval of the next item.</param>
      <param name="direction">One of the values of <see cref="T:System.Windows.Forms.ArrowDirection" /> that specifies the direction to move.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value of the <paramref name="direction" /> parameter is not one of the values of <see cref="T:System.Windows.Forms.ArrowDirection" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> that is specified by the <paramref name="start" /> parameter and is next in the order as specified by the <paramref name="direction" /> parameter.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.IsInputChar(System.Char)">
      <summary>Determines whether a character is an input character that the item recognizes.</summary>
      <param name="charCode">The character to test.</param>
      <returns>
        <see langword="true" /> if the character should be sent directly to the item and not preprocessed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnBeginDrag(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.BeginDrag" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnDockChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DockChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="P:System.Windows.Forms.Control.Enabled" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnEndDrag(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.EndDrag" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnItemAdded(System.Windows.Forms.ToolStripItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.ItemAdded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.ItemClicked" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnItemRemoved(System.Windows.Forms.ToolStripItemEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.ItemRemoved" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnLayoutCompleted(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.LayoutCompleted" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnLayoutStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.LayoutStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Leave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnMouseCaptureChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseCaptureChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="mea">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event.</summary>
      <param name="mea">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="mea">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event for the <see cref="T:System.Windows.Forms.ToolStrip" /> background.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains information about the control to paint.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnPaintGrip(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.PaintGrip" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnRendererChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.RendererChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnScroll(System.Windows.Forms.ScrollEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ScrollableControl.Scroll" /> event.</summary>
      <param name="se">A <see cref="T:System.Windows.Forms.ScrollEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnTabStopChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TabStopChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog box key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.RescaleConstantsForDpi(System.Int32,System.Int32)">
      <summary>When overridden in a derived class, handles the rescaling of any magic numbers that are used in control painting.</summary>
      <param name="deviceDpiOld">The old DPI value.</param>
      <param name="deviceDpiNew">The new DPI value.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.ResetMinimumSize">
      <summary>This method is not relevant for this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.RestoreFocus">
      <summary>Controls the return location of the focus.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.Select(System.Boolean,System.Boolean)">
      <summary>Activates a child control. Optionally specifies the direction in the tab order to select the control from.</summary>
      <param name="directed">
        <see langword="true" /> to specify the direction of the control to select; otherwise, <see langword="false" />.</param>
      <param name="forward">
        <see langword="true" /> to move forward in the tab order; <see langword="false" /> to move backward in the tab order.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.SetAutoScrollMargin(System.Int32,System.Int32)">
      <summary>This method is not relevant for this class.</summary>
      <param name="x">An <see cref="T:System.Int32" />.</param>
      <param name="y">An <see cref="T:System.Int32" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Performs the work of setting the specified bounds of this control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.SetDisplayedItems">
      <summary>Resets the collection of displayed and overflow items after a layout is done.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.SetItemLocation(System.Windows.Forms.ToolStripItem,System.Drawing.Point)">
      <summary>Anchors a <see cref="T:System.Windows.Forms.ToolStripItem" /> to a particular place on a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripItem" /> to anchor.</param>
      <param name="location">A <see cref="T:System.Drawing.Point" /> representing the x and y client coordinates of the <see cref="T:System.Windows.Forms.ToolStripItem" /> location, in pixels.</param>
      <exception cref="T:System.ArgumentNullException">The value of the <paramref name="item" /> parameter is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">The current <see cref="T:System.Windows.Forms.ToolStrip" /> is not the owner of the <see cref="T:System.Windows.Forms.ToolStripItem" /> referred to by the <paramref name="item" /> parameter.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.SetItemParent(System.Windows.Forms.ToolStripItem,System.Windows.Forms.ToolStrip)">
      <summary>Enables you to change the parent <see cref="T:System.Windows.Forms.ToolStrip" /> of a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripItem" /> whose <see cref="P:System.Windows.Forms.Control.Parent" /> property is to be changed.</param>
      <param name="parent">The <see cref="T:System.Windows.Forms.ToolStrip" /> that is the parent of the <see cref="T:System.Windows.Forms.ToolStripItem" /> referred to by the <paramref name="item" /> parameter.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.SetVisibleCore(System.Boolean)">
      <summary>Retrieves a value that sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> to the specified visibility state.</summary>
      <param name="visible">
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> is visible; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.ToolStrip" /> control.</summary>
      <returns>A string that represents the <see cref="T:System.Windows.Forms.ToolStrip" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.AllowDrop">
      <summary>Gets or sets a value indicating whether drag-and-drop and item reordering are handled through events that you implement.</summary>
      <exception cref="T:System.ArgumentException">
        <see cref="P:System.Windows.Forms.ToolStrip.AllowDrop" /> and <see cref="P:System.Windows.Forms.ToolStrip.AllowItemReorder" /> are both set to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> to control drag-and-drop and item reordering through events that you implement; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.AllowItemReorder">
      <summary>Gets or sets a value indicating whether drag-and-drop and item reordering are handled privately by the <see cref="T:System.Windows.Forms.ToolStrip" /> class.</summary>
      <exception cref="T:System.ArgumentException">
        <see cref="P:System.Windows.Forms.ToolStrip.AllowDrop" /> and <see cref="P:System.Windows.Forms.ToolStrip.AllowItemReorder" /> are both set to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> to cause the <see cref="T:System.Windows.Forms.ToolStrip" /> class to handle drag-and-drop and item reordering automatically; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.AllowMerge">
      <summary>Gets or sets a value indicating whether multiple <see cref="T:System.Windows.Forms.MenuStrip" />, <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />, <see cref="T:System.Windows.Forms.ToolStripMenuItem" />, and other types can be combined.</summary>
      <returns>
        <see langword="true" /> if combining of types is allowed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.Anchor">
      <summary>Gets or sets the edges of the container to which a <see cref="T:System.Windows.Forms.ToolStrip" /> is bound and determines how a <see cref="T:System.Windows.Forms.ToolStrip" /> is resized with its parent.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AnchorStyles" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.AutoScroll">
      <summary>This property is not relevant for this class.</summary>
      <exception cref="T:System.NotSupportedException">Automatic scrolling is not supported by <see cref="T:System.Windows.Forms.ToolStrip" /> controls.</exception>
      <returns>
        <see langword="true" /> to automatically scroll; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.AutoScrollMargin">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.AutoScrollMinSize">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.AutoScrollPosition">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Drawing.Point" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.AutoSize">
      <summary>Gets or sets a value indicating whether the control is automatically resized to display its entire contents.</summary>
      <returns>
        <see langword="true" /> if the control adjusts its width to closely fit its contents; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.BackColor">
      <summary>Gets or sets the background color for the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the <see cref="T:System.Windows.Forms.ToolStrip" />. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.BindingContext">
      <summary>Gets or sets the binding context for the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.BindingContext" /> for the <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.CanOverflow">
      <summary>Gets or sets a value indicating whether items in the <see cref="T:System.Windows.Forms.ToolStrip" /> can be sent to an overflow menu.</summary>
      <returns>
        <see langword="true" /> to send <see cref="T:System.Windows.Forms.ToolStrip" /> items to an overflow menu; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.CausesValidation">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStrip" /> causes validation to be performed on any controls that require validation when it receives focus.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.Controls">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Control.ControlCollection" /> representing the collection of controls contained within the <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.Cursor">
      <summary>Gets or sets the cursor that is displayed when the mouse pointer is over the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor to display when the mouse pointer is over the <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.DefaultDock">
      <summary>Gets the docking location of the <see cref="T:System.Windows.Forms.ToolStrip" />, indicating which borders are docked to the container.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default is <see cref="F:System.Windows.Forms.DockStyle.Top" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.DefaultDropDownDirection">
      <summary>Gets or sets a value representing the default direction in which a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control is displayed relative to the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the <see cref="T:System.Windows.Forms.ToolStripDropDownDirection" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripDropDownDirection" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.DefaultGripMargin">
      <summary>Gets the default spacing, in pixels, between the sizing grip and the edges of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>
        <see cref="T:System.Windows.Forms.Padding" /> values representing the spacing, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.DefaultMargin">
      <summary>Gets the spacing, in pixels, between the <see cref="T:System.Windows.Forms.ToolStrip" /> and the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.Padding" /> values. The default is <see cref="F:System.Windows.Forms.Padding.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.DefaultPadding">
      <summary>Gets the internal spacing, in pixels, of the contents of a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value of <c>(0, 0, 1, 0)</c>.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.DefaultShowItemToolTips">
      <summary>Gets a value indicating whether ToolTips are shown for the <see cref="T:System.Windows.Forms.ToolStrip" /> by default.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.DefaultSize">
      <summary>Gets the default size of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.DisplayedItems">
      <summary>Gets the subset of items that are currently displayed on the <see cref="T:System.Windows.Forms.ToolStrip" />, including items that are automatically added into the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> representing the items that are currently displayed on the <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.DisplayRectangle">
      <summary>Retrieves the current display rectangle.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> representing the <see cref="T:System.Windows.Forms.ToolStrip" /> area for item layout.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.Dock">
      <summary>Gets or sets which <see cref="T:System.Windows.Forms.ToolStrip" /> borders are docked to its parent control and determines how a <see cref="T:System.Windows.Forms.ToolStrip" /> is resized with its parent.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default value is <see cref="F:System.Windows.Forms.DockStyle.Top" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.Font">
      <summary>Gets or sets the font used to display text in the control.</summary>
      <returns>The current default font.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.ForeColor">
      <summary>Gets or sets the foreground color of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> representing the foreground color.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.GripDisplayStyle">
      <summary>Gets the orientation of the <see cref="T:System.Windows.Forms.ToolStrip" /> move handle.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripGripDisplayStyle" /> values. Possible values are <see cref="F:System.Windows.Forms.ToolStripGripDisplayStyle.Horizontal" /> and <see cref="F:System.Windows.Forms.ToolStripGripDisplayStyle.Vertical" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.GripMargin">
      <summary>Gets or sets the space around the <see cref="T:System.Windows.Forms.ToolStrip" /> move handle.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" />, which represents the spacing.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.GripRectangle">
      <summary>Gets the boundaries of the <see cref="T:System.Windows.Forms.ToolStrip" /> move handle.</summary>
      <returns>An object of type <see cref="T:System.Drawing.Rectangle" />, representing the move handle boundaries. If the boundaries are not visible, the <see cref="P:System.Windows.Forms.ToolStrip.GripRectangle" /> property returns <see cref="F:System.Drawing.Rectangle.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.GripStyle">
      <summary>Gets or sets whether the <see cref="T:System.Windows.Forms.ToolStrip" /> move handle is visible or hidden.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the <see cref="T:System.Windows.Forms.ToolStripGripStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripGripStyle" /> values. The default value is <see cref="F:System.Windows.Forms.ToolStripGripStyle.Visible" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.HasChildren">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStrip" /> has children; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.HorizontalScroll">
      <summary>This property is not relevant for this class.</summary>
      <returns>An instance of the <see cref="T:System.Windows.Forms.HScrollProperties" /> class, which provides basic properties for an <see cref="T:System.Windows.Forms.HScrollBar" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.ImageList">
      <summary>Gets or sets the image list that contains the image displayed on a <see cref="T:System.Windows.Forms.ToolStrip" /> item.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.ImageList" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.ImageScalingSize">
      <summary>Gets or sets the size, in pixels, of an image used on a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> value representing the size of the image, in pixels. The default is 16 x 16 pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.IsCurrentlyDragging">
      <summary>Gets a value indicating whether the user is currently moving the <see cref="T:System.Windows.Forms.ToolStrip" /> from one <see cref="T:System.Windows.Forms.ToolStripContainer" /> to another.</summary>
      <returns>
        <see langword="true" /> if the user is currently moving the <see cref="T:System.Windows.Forms.ToolStrip" /> from one <see cref="T:System.Windows.Forms.ToolStripContainer" /> to another; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.IsDropDown">
      <summary>Gets a value indicating whether a <see cref="T:System.Windows.Forms.ToolStrip" /> is a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStrip" /> is a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.Items">
      <summary>Gets all the items that belong to a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.ToolStripItemCollection" />, representing all the elements contained by a <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.LayoutEngine">
      <summary>Passes a reference to the cached <see cref="P:System.Windows.Forms.Control.LayoutEngine" /> returned by the layout engine interface.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> that represents the cached layout engine returned by the layout engine interface.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.LayoutSettings">
      <summary>Gets or sets layout scheme characteristics.</summary>
      <returns>A <see cref="T:System.Windows.Forms.LayoutSettings" /> representing the layout scheme characteristics.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.LayoutStyle">
      <summary>Gets or sets a value indicating how the <see cref="T:System.Windows.Forms.ToolStrip" /> lays out the items collection.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value of <see cref="P:System.Windows.Forms.ToolStrip.LayoutStyle" /> is not one of the <see cref="T:System.Windows.Forms.ToolStripLayoutStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripLayoutStyle" /> values. The default value is <see cref="F:System.Windows.Forms.ToolStripLayoutStyle.StackWithOverflow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.MaxItemSize">
      <summary>Gets the maximum height and width, in pixels, of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the height and width of the control, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.Orientation">
      <summary>Gets the orientation of the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.Orientation" /> values. The default is <see cref="F:System.Windows.Forms.Orientation.Horizontal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.OverflowButton">
      <summary>Gets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that is the overflow button for a <see cref="T:System.Windows.Forms.ToolStrip" /> with overflow enabled.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.ToolStripOverflowButton" /> with its <see cref="T:System.Windows.Forms.ToolStripItemAlignment" /> set to <see cref="F:System.Windows.Forms.ToolStripItemAlignment.Right" /> and its <see cref="T:System.Windows.Forms.ToolStripItemOverflow" /> value set to <see cref="F:System.Windows.Forms.ToolStripItemOverflow.Never" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.Renderer">
      <summary>Gets or sets a <see cref="T:System.Windows.Forms.ToolStripRenderer" /> used to customize the look and feel of a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripRenderer" /> used to customize the look and feel of a <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.RenderMode">
      <summary>Gets or sets a value that indicates which visual styles will be applied to the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value being set is not one of the <see cref="T:System.Windows.Forms.ToolStripRenderMode" /> values.</exception>
      <exception cref="T:System.NotSupportedException">
        <see cref="T:System.Windows.Forms.ToolStripRenderMode" /> is set to <see cref="F:System.Windows.Forms.ToolStripRenderMode.Custom" /> without the <see cref="P:System.Windows.Forms.ToolStrip.Renderer" /> property being assigned to a new instance of <see cref="T:System.Windows.Forms.ToolStripRenderer" />.</exception>
      <returns>A value that indicates the visual style to apply. The default is <see cref="F:System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.ShowItemToolTips">
      <summary>Gets or sets a value indicating whether ToolTips are to be displayed on <see cref="T:System.Windows.Forms.ToolStrip" /> items.</summary>
      <returns>
        <see langword="true" /> if ToolTips are to be displayed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.Stretch">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStrip" /> stretches from end to end in the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStrip" /> stretches from end to end in its <see cref="T:System.Windows.Forms.ToolStripContainer" />; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.TabStop">
      <summary>Gets or sets a value indicating whether the user can give the focus to an item in the <see cref="T:System.Windows.Forms.ToolStrip" /> using the TAB key.</summary>
      <returns>
        <see langword="true" /> if the user can give the focus to an item in the <see cref="T:System.Windows.Forms.ToolStrip" /> using the TAB key; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.TextDirection">
      <summary>Gets or sets the direction in which to draw text on a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value is not one of the <see cref="T:System.Windows.Forms.ToolStripTextDirection" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripTextDirection" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripTextDirection.Horizontal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.VerticalScroll">
      <summary>This property is not relevant for this class.</summary>
      <returns>An instance of the <see cref="T:System.Windows.Forms.VScrollProperties" /> class, which provides basic properties for a <see cref="T:System.Windows.Forms.VScrollBar" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject">
      <summary>Provides information that accessibility applications use to adjust the user interface of a <see cref="T:System.Windows.Forms.ToolStrip" /> for users with impairments.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.#ctor(System.Windows.Forms.ToolStrip)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ToolStrip" /> that owns this <see cref="T:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.GetChild(System.Int32)">
      <summary>Retrieves the accessible child corresponding to the specified index.</summary>
      <param name="index">The zero-based index of the accessible child.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the accessible child corresponding to the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.GetChildCount">
      <summary>Retrieves the number of children belonging to an accessible object.</summary>
      <returns>The number of children belonging to an accessible object.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.HitTest(System.Int32,System.Int32)">
      <summary>Retrieves the child object at the specified screen coordinates.</summary>
      <param name="x">The horizontal screen coordinate.</param>
      <param name="y">The vertical screen coordinate.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the child object at the given screen coordinates. This method returns the calling object if the object itself is at the location specified. Returns <see langword="null" /> if no object is at the tested location.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripArrowRenderEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderArrow" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripArrowRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.Drawing.Rectangle,System.Drawing.Color,System.Windows.Forms.ArrowDirection)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripArrowRenderEventArgs" /> class.</summary>
      <param name="g">The graphics used to paint the <see cref="T:System.Windows.Forms.ToolStrip" /> arrow.</param>
      <param name="toolStripItem">The <see cref="T:System.Windows.Forms.ToolStripItem" /> on which to paint the arrow.</param>
      <param name="arrowRectangle">The bounding area of the <see cref="T:System.Windows.Forms.ToolStrip" /> arrow.</param>
      <param name="arrowColor">The color of the <see cref="T:System.Windows.Forms.ToolStrip" /> arrow.</param>
      <param name="arrowDirection">The direction in which the <see cref="T:System.Windows.Forms.ToolStrip" /> arrow points.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="g" /> is null.</exception>
    </member>
    <member name="P:System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowColor">
      <summary>Gets or sets the color of the <see cref="T:System.Windows.Forms.ToolStrip" /> arrow.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color of the arrow.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowRectangle">
      <summary>Gets or sets the bounding area of the <see cref="T:System.Windows.Forms.ToolStrip" /> arrow.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounding area.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripArrowRenderEventArgs.Direction">
      <summary>Gets or sets the direction in which the <see cref="T:System.Windows.Forms.ToolStrip" /> arrow points.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ArrowDirection" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripArrowRenderEventArgs.Graphics">
      <summary>Gets the graphics used to paint the <see cref="T:System.Windows.Forms.ToolStrip" /> arrow.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> used to paint.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripArrowRenderEventArgs.Item">
      <summary>Gets the <see cref="T:System.Windows.Forms.ToolStripItem" /> on which to paint the arrow.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> on which to paint the arrow.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripArrowRenderEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderArrow" /> event of a <see cref="T:System.Windows.Forms.ToolStripRenderer" />. This class cannot be inherited.</summary>
      <param name="sender">The source of the event, the <see cref="T:System.Windows.Forms.ToolStripRenderer" />.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripArrowRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripButton">
      <summary>Represents a selectable <see cref="T:System.Windows.Forms.ToolStripItem" /> that can contain text and images.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripButton.CheckedChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripButton.Checked" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripButton.CheckStateChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripButton.CheckState" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripButton" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.#ctor(System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripButton" /> class that displays the specified image.</summary>
      <param name="image">The image to display on the <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripButton" /> class that displays the specified text.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.#ctor(System.String,System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripButton" /> class that displays the specified text and image.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
      <param name="image">The image to display on the <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.#ctor(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripButton" /> class that displays the specified text and image and that raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
      <param name="image">The image to display on the <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
      <param name="onClick">An event handler that raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripButton" /> class with the specified name that displays the specified text and image and that raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
      <param name="image">The image to display on the <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
      <param name="onClick">An event handler that raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event.</param>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.ToolStripButton" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the <see cref="T:System.Windows.Forms.ToolStripButton" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a <see cref="T:System.Windows.Forms.ToolStripButton" /> can be fitted.</summary>
      <param name="constrainingSize">The specified area for a <see cref="T:System.Windows.Forms.ToolStripButton" />.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.OnCheckedChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripButton.CheckedChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.OnCheckStateChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripButton.CheckStateChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.OnClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripButton.ProcessDialogKey(System.Windows.Forms.Keys)">
      <param name="keyData" />
    </member>
    <member name="P:System.Windows.Forms.ToolStripButton.AutoToolTip">
      <summary>Gets or sets a value indicating whether default or custom <see cref="T:System.Windows.Forms.ToolTip" /> text is displayed on the <see cref="T:System.Windows.Forms.ToolStripButton" />.</summary>
      <returns>
        <see langword="true" /> if default <see cref="T:System.Windows.Forms.ToolTip" /> text is displayed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripButton.Checked">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripButton" /> is pressed or not pressed.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripButton" /> is pressed in or not pressed in; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripButton.CheckOnClick">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripButton" /> should automatically appear pressed in and not pressed in when clicked.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripButton" /> should automatically appear pressed in and not pressed in when clicked; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripButton.CheckState">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripButton" /> is in the pressed or not pressed state by default, or is in an indeterminate state.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.CheckState" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.CheckState" /> values. The default is <see langword="Unchecked" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripButton.DefaultAutoToolTip">
      <summary>Gets a value indicating whether to display the ToolTip that is defined as the default.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripComboBox">
      <summary>Represents a <see cref="T:System.Windows.Forms.ToolStripComboBox" /> that is properly rendered in a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripComboBox.DoubleClick">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripComboBox.DropDown">
      <summary>Occurs when the drop-down portion of a <see cref="T:System.Windows.Forms.ToolStripComboBox" /> is shown.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripComboBox.DropDownClosed">
      <summary>Occurs when the drop-down portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> has closed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripComboBox.DropDownStyleChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripComboBox.DropDownStyle" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripComboBox.SelectedIndexChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectedIndex" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripComboBox.TextUpdate">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> text has changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> class with the specified name.</summary>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.#ctor(System.Windows.Forms.Control)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> class derived from a base control.</summary>
      <param name="c">The base control.</param>
      <exception cref="T:System.NotSupportedException">The operation is not supported.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.BeginUpdate">
      <summary>Maintains performance when items are added to the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> one at a time.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.EndUpdate">
      <summary>Resumes painting the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> control after painting is suspended by the <see cref="M:System.Windows.Forms.ToolStripComboBox.BeginUpdate" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.FindString(System.String)">
      <summary>Finds the first item in the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> that starts with the specified string.</summary>
      <param name="s">The <see cref="T:System.String" /> to search for.</param>
      <returns>The zero-based index of the first item found; returns -1 if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.FindString(System.String,System.Int32)">
      <summary>Finds the first item after the given index which starts with the given string.</summary>
      <param name="s">The <see cref="T:System.String" /> to search for.</param>
      <param name="startIndex">The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.</param>
      <returns>The zero-based index of the first item found; returns -1 if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.FindStringExact(System.String)">
      <summary>Finds the first item in the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> that exactly matches the specified string.</summary>
      <param name="s">The <see cref="T:System.String" /> to search for.</param>
      <returns>The zero-based index of the first item found; -1 if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.FindStringExact(System.String,System.Int32)">
      <summary>Finds the first item after the specified index that exactly matches the specified string.</summary>
      <param name="s">The <see cref="T:System.String" /> to search for.</param>
      <param name="startIndex">The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.</param>
      <returns>The zero-based index of the first item found; returns -1 if no match is found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.GetItemHeight(System.Int32)">
      <summary>Returns the height, in pixels, of an item in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <param name="index">The index of the item to return the height of.</param>
      <returns>The height, in pixels, of the item at the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a control can be fitted.</summary>
      <param name="constrainingSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.OnDropDown(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.DropDown" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.OnDropDownClosed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.DropDownClosed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.OnDropDownStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.DropDownStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.OnSelectedIndexChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.SelectedIndexChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.OnSelectionChangeCommitted(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ComboBox.SelectionChangeCommitted" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.OnSubscribeControlEvents(System.Windows.Forms.Control)">
      <summary>Subscribes events from the specified control.</summary>
      <param name="control">The control from which to subscribe events.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.OnTextUpdate(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.TextUpdate" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control)">
      <summary>Unsubscribes events from the specified control.</summary>
      <param name="control">The control from which to unsubscribe events.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.Select(System.Int32,System.Int32)">
      <summary>Selects a range of text in the editable portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <param name="start">The position of the first character in the current text selection within the text box.</param>
      <param name="length">The number of characters to select.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="start" /> is less than zero.  
  
 -or-  
  
 <paramref name="start" /> minus <paramref name="length" /> is less than zero.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.SelectAll">
      <summary>Selects all the text in the editable portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripComboBox.ToString">
      <summary>Returns a string representation of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>A string that represents the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteCustomSource">
      <summary>Gets or sets the custom string collection to use when the <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteSource" /> property is set to <see cref="F:System.Windows.Forms.AutoCompleteSource.CustomSource" />.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" /> that contains the strings.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteMode">
      <summary>Gets or sets a value that indicates the text completion behavior of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AutoCompleteMode" /> values. The default is <see cref="F:System.Windows.Forms.AutoCompleteMode.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteSource">
      <summary>Gets or sets the source of complete strings used for automatic completion.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AutoCompleteSource" /> values. The default is <see cref="F:System.Windows.Forms.AutoCompleteSource.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.BackgroundImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>The background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.BackgroundImageLayout">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the values of <see cref="T:System.Windows.Forms.ImageLayout" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.ComboBox">
      <summary>Gets a <see cref="T:System.Windows.Forms.ComboBox" /> in which the user can enter text, along with a list from which the user can select.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ComboBox" /> for a <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.DefaultMargin">
      <summary>Gets the default spacing, in pixels, between the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> and an adjacent item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.DefaultSize">
      <summary>Gets the default size of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> in pixels. The default size is 100 x 20 pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.DropDownHeight">
      <summary>Gets or sets the height, in pixels, of the drop-down portion box of a <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>The height, in pixels, of the drop-down box.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.DropDownStyle">
      <summary>Gets or sets a value specifying the style of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ComboBoxStyle" /> values. The default is <see cref="F:System.Windows.Forms.ComboBoxStyle.DropDown" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.DropDownWidth">
      <summary>Gets or sets the width, in pixels, of the drop-down portion of a <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>The width, in pixels, of the drop-down box.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.DroppedDown">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> currently displays its drop-down portion.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> currently displays its drop-down portion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.FlatStyle">
      <summary>Gets or sets the appearance of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>One of the values of <see cref="T:System.Windows.Forms.FlatStyle" />. The options are <see cref="F:System.Windows.Forms.FlatStyle.Flat" />, <see cref="F:System.Windows.Forms.FlatStyle.Popup" />, <see cref="F:System.Windows.Forms.FlatStyle.Standard" />, and <see cref="F:System.Windows.Forms.FlatStyle.System" />. The default is <see cref="F:System.Windows.Forms.FlatStyle.Popup" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.IntegralHeight">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> should resize to avoid showing partial items.</summary>
      <returns>
        <see langword="true" /> if the list portion can contain only complete items; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.Items">
      <summary>Gets a collection of the items contained in this <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>A collection of items.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.MaxDropDownItems">
      <summary>Gets or sets the maximum number of items to be shown in the drop-down portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>The maximum number of items in the drop-down portion. The minimum for this property is 1 and the maximum is 100.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.MaxLength">
      <summary>Gets or sets the maximum number of characters allowed in the editable portion of a combo box.</summary>
      <returns>The maximum number of characters the user can enter. Values of less than zero are reset to zero, which is the default value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.SelectedIndex">
      <summary>Gets or sets the index specifying the currently selected item.</summary>
      <returns>A zero-based index of the currently selected item. A value of negative one (-1) is returned if no item is selected.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.SelectedItem">
      <summary>Gets or sets currently selected item in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>The object that is the currently selected item or <see langword="null" /> if there is no currently selected item.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.SelectedText">
      <summary>Gets or sets the text that is selected in the editable portion of a <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>A string that represents the currently selected text in the combo box. If <see cref="P:System.Windows.Forms.ToolStripComboBox.DropDownStyle" /> is set to <see langword="DropDownList" />, the return value is an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.SelectionLength">
      <summary>Gets or sets the number of characters selected in the editable portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>The number of characters selected in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.SelectionStart">
      <summary>Gets or sets the starting index of text selected in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</summary>
      <returns>The zero-based index of the first character in the string of the current text selection.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripComboBox.Sorted">
      <summary>Gets or sets a value indicating whether the items in the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> are sorted.</summary>
      <returns>
        <see langword="true" /> if the combo box is sorted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripContainer">
      <summary>Provides panels on each side of the form and a central panel that can hold one or more controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContainer.BackColorChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContainer.BackgroundImageChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContainer.BackgroundImageLayoutChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContainer.CausesValidationChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripContainer.CausesValidation" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContainer.ContextMenuStripChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripContainer.ContextMenuStrip" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContainer.CursorChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContainer.ForeColorChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContainer.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContainer.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.ToolStripContainer.CreateControlsInstance">
      <summary>Creates and returns a <see cref="T:System.Windows.Forms.ToolStripContainer" /> collection.</summary>
      <returns>A read-only <see cref="T:System.Windows.Forms.ToolStripContainer" /> collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContainer.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContainer.OnSizeChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.SizeChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.AutoScroll">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> to enable automatic scrolling; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.AutoScrollMargin">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.AutoScrollMinSize">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.BackColor">
      <summary>This property is not relevant for this class.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.BackgroundImage">
      <summary>This property is not relevant for this class.</summary>
      <returns>TTThe background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.BackgroundImageLayout">
      <summary>This property is not relevant for this class.</summary>
      <returns>The background image layout as defined in the ImageLayout enumeration.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.BottomToolStripPanel">
      <summary>Gets the bottom panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripPanel" /> representing the bottom panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.BottomToolStripPanelVisible">
      <summary>Gets or sets a value indicating whether the bottom panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> is visible.</summary>
      <returns>
        <see langword="true" /> if the bottom panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.CausesValidation">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> if the control causes validation; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.ContentPanel">
      <summary>Gets the center panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripContentPanel" /> representing the center panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.ContextMenuStrip">
      <summary>This property is not relevant for this class.</summary>
      <returns>The ContextMenuStrip associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.Controls">
      <summary>This property is not relevant for this class.</summary>
      <returns>The collection of controls contained within the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.Cursor">
      <summary>This property is not relevant for this class.</summary>
      <returns>The cursor that is displayed when the mouse pointer is over the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.DefaultSize">
      <summary>Gets the default size of the <see cref="T:System.Windows.Forms.ToolStripContainer" />, in pixels.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the horizontal and vertical dimensions of the <see cref="T:System.Windows.Forms.ToolStripContainer" />, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.ForeColor">
      <summary>This property is not relevant for this class.</summary>
      <returns>The foreground color of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.LeftToolStripPanel">
      <summary>Gets the left panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripPanel" /> representing the left panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.LeftToolStripPanelVisible">
      <summary>Gets or sets a value indicating whether the left panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> is visible.</summary>
      <returns>
        <see langword="true" /> if the left panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.RightToolStripPanel">
      <summary>Gets the right panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripPanel" /> representing the right panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.RightToolStripPanelVisible">
      <summary>Gets or sets a value indicating whether the right panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> is visible.</summary>
      <returns>
        <see langword="true" /> if the right panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.TopToolStripPanel">
      <summary>Gets the top panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripPanel" /> representing the top panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContainer.TopToolStripPanelVisible">
      <summary>Gets or sets a value indicating whether the top panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> is visible.</summary>
      <returns>
        <see langword="true" /> if the top panel of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> is visible; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripContentPanel">
      <summary>Represents the center panel of a <see cref="T:System.Windows.Forms.ToolStripContainer" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContentPanel.AutoSizeChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContentPanel.CausesValidationChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContentPanel.DockChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContentPanel.Load">
      <summary>Occurs when the content panel loads.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContentPanel.LocationChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContentPanel.RendererChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripContentPanel.Renderer" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContentPanel.TabIndexChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripContentPanel.TabStopChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContentPanel.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripContentPanel" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContentPanel.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContentPanel.OnLoad(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Form.Load" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContentPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Renders the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContentPanel.OnRendererChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripContentPanel.RendererChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.Anchor">
      <summary>This property is not relevant to this class.</summary>
      <returns>The edges of the container to which a control is bound and determines how a control is resized with its parent.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.AutoScroll">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> to enable automatic scrolling; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.AutoScrollMargin">
      <summary>This property is not relevant to this class.</summary>
      <returns>The distance between any child controls and the edges of the scrollable parent control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.AutoScrollMinSize">
      <summary>This property is not relevant to this class.</summary>
      <returns>The minimum size of the auto-scroll.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.AutoSize">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> to enable automatic sizing; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.AutoSizeMode">
      <summary>This property is not relevant to this class.</summary>
      <returns>The mode by which the content panel automatically resizes itself.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.BackColor">
      <summary>Overridden to ensure that the background color of the <see cref="T:System.Windows.Forms.ToolStripContainer" /> reflects the background color of the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> structure representing the background color of the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.CausesValidation">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if the control causes validation; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.Dock">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.Location">
      <summary>This property is not relevant to this class.</summary>
      <returns>The coordinates of the upper-left corner of the control relative to the upper-left corner of its container.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.MaximumSize">
      <summary>This property is not relevant to this class.</summary>
      <returns>The size that is the upper limit that GetPreferredSize can specify.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.MinimumSize">
      <summary>This property is not relevant to this class.</summary>
      <returns>The size that is the lower limit that GetPreferredSize can specify.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.Name">
      <summary>This property is not relevant to this class.</summary>
      <returns>The name of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.Renderer">
      <summary>Gets or sets a <see cref="T:System.Windows.Forms.ToolStripRenderer" /> used to customize the appearance of a <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripRenderer" /> that handles painting.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.RenderMode">
      <summary>Gets or sets the painting styles to be applied to the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripRenderMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.TabIndex">
      <summary>This property is not relevant to this class.</summary>
      <returns>The tab order of the control within its container.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanel.TabStop">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripContentPanel" /> can be tabbed to; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripContentPanelRenderEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolStripContentPanel.RendererChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripContentPanelRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripContentPanel)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripContentPanelRenderEventArgs" /> class.</summary>
      <param name="g">A <see cref="T:System.Drawing.Graphics" /> representing the GDI+ drawing surface.</param>
      <param name="contentPanel">The <see cref="T:System.Windows.Forms.ToolStripContentPanel" /> to render.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="g" /> or <paramref name="contentPanel" /> is null.</exception>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Graphics">
      <summary>Gets the object to use for drawing.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> to use for drawing.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Handled">
      <summary>Gets or sets a value indicating whether the event was handled.</summary>
      <returns>
        <see langword="true" /> if the event was handled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripContentPanelRenderEventArgs.ToolStripContentPanel">
      <summary>Gets the <see cref="T:System.Windows.Forms.ToolStripContentPanel" /> affected by the click.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripContentPanel" /> object affected by the click.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripContentPanelRenderEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolStripContentPanel.RendererChanged" /> event of a <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripContentPanelRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripControlHost">
      <summary>Hosts custom controls or Windows Forms controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.DisplayStyleChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.Enter">
      <summary>Occurs when the hosted control is entered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.GotFocus">
      <summary>Occurs when the hosted control receives focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.KeyDown">
      <summary>Occurs when a key is pressed and held down while the hosted control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.KeyPress">
      <summary>Occurs when a key is pressed while the hosted control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.KeyUp">
      <summary>Occurs when a key is released while the hosted control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.Leave">
      <summary>Occurs when the input focus leaves the hosted control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.LostFocus">
      <summary>Occurs when the hosted control loses focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.Validated">
      <summary>Occurs after the hosted control has been successfully validated.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripControlHost.Validating">
      <summary>Occurs while the hosted control is validating.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.#ctor(System.Windows.Forms.Control)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripControlHost" /> class that hosts the specified control.</summary>
      <param name="c">The <see cref="T:System.Windows.Forms.Control" /> hosted by this <see cref="T:System.Windows.Forms.ToolStripControlHost" /> class.</param>
      <exception cref="T:System.ArgumentNullException">The control referred to by the <paramref name="c" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.#ctor(System.Windows.Forms.Control,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripControlHost" /> class that hosts the specified control and that has the specified name.</summary>
      <param name="c">The <see cref="T:System.Windows.Forms.Control" /> hosted by this <see cref="T:System.Windows.Forms.ToolStripControlHost" /> class.</param>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripControlHost" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ToolStripControlHost" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.Focus">
      <summary>Gives the focus to a control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a control can be fitted.</summary>
      <param name="constrainingSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnBoundsChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripItem.Bounds" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripControlHost.Enter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripControlHost.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnHostedControlResize(System.EventArgs)">
      <summary>Synchronizes the resizing of the control host with the resizing of the hosted control.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripControlHost.KeyDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripControlHost.KeyPress" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripControlHost.KeyUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripControlHost.Leave" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripControlHost.LostFocus" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnParentChanged(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStrip)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="oldParent">The original parent of the item.</param>
      <param name="newParent">The new parent of the item.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnSubscribeControlEvents(System.Windows.Forms.Control)">
      <summary>Subscribes events from the hosted control.</summary>
      <param name="control">The control from which to subscribe events.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnUnsubscribeControlEvents(System.Windows.Forms.Control)">
      <summary>Unsubscribes events from the hosted control.</summary>
      <param name="control">The control from which to unsubscribe events.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnValidated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripControlHost.Validated" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.OnValidating(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripControlHost.Validating" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the item; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.ResetBackColor">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.ResetForeColor">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.SetVisibleCore(System.Boolean)">
      <summary>Sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> to the specified visible state.</summary>
      <param name="visible">
        <see langword="true" /> to make the ToolStripItem visible; otherwise, <see langword="false" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.BackgroundImage">
      <summary>Gets or sets the background image displayed in the control.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> that represents the image to display in the background of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.BackgroundImageLayout">
      <summary>Gets or sets the background image layout as defined in the <see langword="ImageLayout" /> enumeration.</summary>
      <returns>One of the values of <see cref="T:System.Windows.Forms.ImageLayout" />:  
  
-   <see cref="F:System.Windows.Forms.ImageLayout.Center" />  
  
-   <see cref="F:System.Windows.Forms.ImageLayout.None" />  
  
-   <see cref="F:System.Windows.Forms.ImageLayout.Stretch" />  
  
-   <see cref="F:System.Windows.Forms.ImageLayout.Tile" /> (default)  
  
-   <see cref="F:System.Windows.Forms.ImageLayout.Zoom" /></returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.CanSelect">
      <summary>Gets a value indicating whether the control can be selected.</summary>
      <returns>
        <see langword="true" /> if the control can be selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.CausesValidation">
      <summary>Gets or sets a value indicating whether the hosted control causes and raises validation events on other controls when the hosted control receives focus.</summary>
      <returns>
        <see langword="true" /> if the hosted control causes and raises validation events on other controls when the hosted control receives focus; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.Control">
      <summary>Gets the <see cref="T:System.Windows.Forms.Control" /> that this <see cref="T:System.Windows.Forms.ToolStripControlHost" /> is hosting.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Control" /> that this <see cref="T:System.Windows.Forms.ToolStripControlHost" /> is hosting.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.ControlAlign">
      <summary>Gets or sets the alignment of the control on the form.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The <see cref="P:System.Windows.Forms.ToolStripControlHost.ControlAlign" /> property is set to a value that is not one of the <see cref="T:System.Drawing.ContentAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default is <see cref="F:System.Drawing.ContentAlignment.MiddleCenter" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.DisplayStyle">
      <summary>This property is not relevant to this class.</summary>
      <returns>The display style of the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.DoubleClickEnabled">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if double clicking is enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.Enabled">
      <summary>Gets or sets a value indicating whether the parent control of the <see cref="T:System.Windows.Forms.ToolStripItem" /> is enabled.</summary>
      <returns>
        <see langword="true" /> if the parent control of the <see cref="T:System.Windows.Forms.ToolStripItem" /> is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.Focused">
      <summary>Gets a value indicating whether the control has input focus.</summary>
      <returns>
        <see langword="true" /> if the control has input focus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.Font">
      <summary>Gets or sets the font to be used on the hosted control.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> for the hosted control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.ForeColor">
      <summary>Gets or sets the foreground color of the hosted control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> representing the foreground color of the hosted control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.Image">
      <summary>The image associated with the object.</summary>
      <returns>The image of the hosted control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.ImageAlign">
      <summary>This property is not relevant to this class.</summary>
      <returns>The image alignment for the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.ImageScaling">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if an image on a ToolStripItem is automatically resized to fit in a container; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.ImageTransparentColor">
      <summary>This property is not relevant to this class.</summary>
      <returns>The transparent color of the image.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.RightToLeft">
      <summary>Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.RightToLeft" /> values. The default is <see cref="F:System.Windows.Forms.RightToLeft.Inherit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.RightToLeftAutoMirrorImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if the image is mirrored; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.Selected">
      <summary>Gets a value indicating whether the item is selected.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> is selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.Site">
      <summary>Gets or sets the site of the hosted control.</summary>
      <returns>The <see cref="T:System.ComponentModel.ISite" /> associated with the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.Size">
      <summary>Gets or sets the size of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.Text">
      <summary>Gets or sets the text to be displayed on the hosted control.</summary>
      <returns>A <see cref="T:System.String" /> representing the text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.TextAlign">
      <summary>This property is not relevant to this class.</summary>
      <returns>The text alignment property for the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.TextDirection">
      <summary>This property is not relevant to this class.</summary>
      <returns>The text direction of the tool strip.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripControlHost.TextImageRelation">
      <summary>This property is not relevant to this class.</summary>
      <returns>The relation of a text image with the object.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject">
      <summary>Represents the accessible object control host responsible for accessible navigation within the <see cref="T:System.Windows.Forms.ToolStrip" /> standard items and hosted controls like TextBox, ComboBox, ProgressBar, etc.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject.#ctor(System.Windows.Forms.Control,System.Windows.Forms.ToolStripControlHost)">
      <summary> Initializes a new <see cref="T:System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject" /> instance with the specified tool strip hosted control and tool strip control host.</summary>
      <param name="toolStripHostedControl">The control hosted in the <see cref="T:System.Windows.Forms.ToolStripControlHost" /> container.</param>
      <param name="toolStripControlHost">The container which hosts a control on the <see cref="T:System.Windows.Forms.ToolStrip" />.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDown">
      <summary>Represents a control that allows the user to select a single item from a list that's displayed when the user clicks a <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.Control.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.BindingContextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStrip.BindingContext" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.ChangeUICues">
      <summary>Occurs when the focus or keyboard user interface (UI) cues change.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.Closed">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is closed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.Closing">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control is about to close.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.ContextMenuStripChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.DockChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.Enter">
      <summary>Occurs when the focus enters the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.FontChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripDropDown.Font" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.ForeColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStrip.ForeColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.GiveFeedback">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.HelpRequested">
      <summary>Occurs when the user requests help for a control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.ImeModeChanged">
      <summary>Occurs when the <see cref="E:System.Windows.Forms.ToolStripDropDown.ImeModeChanged" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.KeyDown">
      <summary>Occurs when a key is pressed and held down while the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.KeyPress">
      <summary>Occurs when a key is pressed while the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.KeyUp">
      <summary>Occurs when a key is released while the control has focus.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.Leave">
      <summary>Occurs when the input focus leaves the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.Opened">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is opened.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.Opening">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control is opening.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.RegionChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripDropDown.Region" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.Scroll">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.StyleChanged">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripLayoutStyle" /> style changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.TabIndexChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.TabStopChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.TextChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.Validated">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDown.Validating">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Close">
      <summary>Closes the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Close(System.Windows.Forms.ToolStripDropDownCloseReason)">
      <summary>Closes the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control for the specified reason.</summary>
      <param name="reason">One of the <see cref="T:System.Windows.Forms.ToolStripDropDownCloseReason" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.CreateHandle">
      <summary>Creates a handle for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.CreateLayoutSettings(System.Windows.Forms.ToolStripLayoutStyle)">
      <summary>Applies various layout options to the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <param name="style">One of the <see cref="T:System.Windows.Forms.ToolStripLayoutStyle" /> values. The possibilities are <see cref="F:System.Windows.Forms.ToolStripLayoutStyle.Flow" />, <see cref="F:System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow" />, <see cref="F:System.Windows.Forms.ToolStripLayoutStyle.StackWithOverflow" />, <see cref="F:System.Windows.Forms.ToolStripLayoutStyle.Table" />, and <see cref="F:System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow" />.</param>
      <returns>The <see cref="T:System.Windows.Forms.LayoutSettings" /> for this <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.Closed" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripDropDownClosedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnClosing(System.Windows.Forms.ToolStripDropDownClosingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.Closing" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripDropDownClosingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.ItemClicked" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseUp" /> event.</summary>
      <param name="mea">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnOpened(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.Opened" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnOpening(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.Opening" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnParentChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.ProcessDialogChar(System.Char)">
      <summary>Processes a dialog box character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog box key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
      <summary>Scales a control's location, size, padding and margin.</summary>
      <param name="factor">The factor by which the height and width of the control will be scaled.</param>
      <param name="specified">A value that specifies the bounds of the control to use when defining its size and position.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.ScaleCore(System.Single,System.Single)">
      <summary>This method is not relevant to this class.</summary>
      <param name="dx">The horizontal scaling factor.</param>
      <param name="dy">The vertical scaling factor.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Performs the work of setting the specified bounds of this control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.SetVisibleCore(System.Boolean)">
      <summary>Adjusts the size of the owner <see cref="T:System.Windows.Forms.ToolStrip" /> to accommodate the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> if the owner <see cref="T:System.Windows.Forms.ToolStrip" /> is currently displayed, or clears and resets active <see cref="T:System.Windows.Forms.ToolStripDropDown" /> child controls of the <see cref="T:System.Windows.Forms.ToolStrip" /> if the <see cref="T:System.Windows.Forms.ToolStrip" /> is not currently displayed.</summary>
      <param name="visible">
        <see langword="true" /> if the owner <see cref="T:System.Windows.Forms.ToolStrip" /> is currently displayed; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Show">
      <summary>Displays the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control in its default position.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Show(System.Drawing.Point)">
      <summary>Positions the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> relative to the specified screen location.</summary>
      <param name="screenLocation">The horizontal and vertical location of the screen's upper-left corner, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Show(System.Drawing.Point,System.Windows.Forms.ToolStripDropDownDirection)">
      <summary>Positions the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> relative to the specified control location and with the specified direction relative to the parent control.</summary>
      <param name="position">The horizontal and vertical location of the reference control's upper-left corner, in pixels.</param>
      <param name="direction">One of the <see cref="T:System.Windows.Forms.ToolStripDropDownDirection" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Show(System.Int32,System.Int32)">
      <summary>Positions the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> relative to the specified screen coordinates.</summary>
      <param name="x">The horizontal screen coordinate, in pixels.</param>
      <param name="y">The vertical screen coordinate, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control,System.Drawing.Point)">
      <summary>Positions the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> relative to the specified control location.</summary>
      <param name="control">The control (typically, a <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />) that is the reference point for the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> position.</param>
      <param name="position">The horizontal and vertical location of the reference control's upper-left corner, in pixels.</param>
      <exception cref="T:System.ArgumentNullException">The control specified by the <paramref name="control" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control,System.Drawing.Point,System.Windows.Forms.ToolStripDropDownDirection)">
      <summary>Positions the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> relative to the specified control at the specified location and with the specified direction relative to the parent control.</summary>
      <param name="control">The control (typically, a <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />) that is the reference point for the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> position.</param>
      <param name="position">The horizontal and vertical location of the reference control's upper-left corner, in pixels.</param>
      <param name="direction">One of the <see cref="T:System.Windows.Forms.ToolStripDropDownDirection" /> values.</param>
      <exception cref="T:System.ArgumentNullException">The control specified by the <paramref name="control" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control,System.Int32,System.Int32)">
      <summary>Positions the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> relative to the specified control's horizontal and vertical screen coordinates.</summary>
      <param name="control">The control (typically, a <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />) that is the reference point for the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> position.</param>
      <param name="x">The horizontal screen coordinate of the control, in pixels.</param>
      <param name="y">The vertical screen coordinate of the control, in pixels.</param>
      <exception cref="T:System.ArgumentNullException">The control specified by the <paramref name="control" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.AllowItemReorder">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> to enable item reordering; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.AllowTransparency">
      <summary>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.ToolStripDropDown.Opacity" /> of the form can be adjusted.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.ToolStripDropDown.Opacity" /> of the form can be adjusted; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.Anchor">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AnchorStyles" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.AutoClose">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control should automatically close when it has lost activation.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control automatically closes; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.AutoSize">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> automatically adjusts its size when the form is resized.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control automatically resizes; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.CanOverflow">
      <summary>Gets or sets a value indicating whether the items in a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> can be sent to an overflow menu.</summary>
      <returns>
        <see langword="true" /> to send <see cref="T:System.Windows.Forms.ToolStripDropDown" /> items to an overflow menu; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.ContextMenuStrip">
      <summary>This property is not relevant to this class.</summary>
      <returns>The shortcut menu associated with the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.CreateParams">
      <summary>Gets parameters of a new window.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.CreateParams" /> used when creating a new window.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.DefaultDock">
      <summary>Gets the docking location of the <see cref="T:System.Windows.Forms.ToolStrip" />, indicating which borders are docked to the container.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default is Top.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.DefaultDropDownDirection">
      <summary>Gets or sets the direction in which the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is displayed relative to the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripDropDownDirection" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.DefaultPadding">
      <summary>Gets the internal spacing, in pixels, of the contents of a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value of <c>(0, 0, 1, 0)</c>.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.DefaultShowItemToolTips">
      <summary>Gets a value indicating whether ToolTips are shown for the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> by default.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.Dock">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.DropShadowEnabled">
      <summary>Gets or sets a value indicating whether a three-dimensional shadow effect appears when the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is displayed.</summary>
      <returns>
        <see langword="true" /> to enable the shadow effect; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.Font">
      <summary>Gets or sets the font of the text displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.GripDisplayStyle">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of <see cref="T:System.Windows.Forms.ToolStripGripDisplayStyle" /> the values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.GripMargin">
      <summary>This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.GripRectangle">
      <summary>This property is not relevant to this class.</summary>
      <returns>The boundaries of the ToolStrip move handle.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.GripStyle">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripGripStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.IsAutoGenerated">
      <summary>Gets a value indicating whether this <see cref="T:System.Windows.Forms.ToolStripDropDown" /> was automatically generated.</summary>
      <returns>
        <see langword="true" /> if this <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is generated automatically; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.Location">
      <summary>This property is not relevant to this class.</summary>
      <returns>The coordinates of the upper-left corner of the control relative to the upper-left corner of its container.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.MaxItemSize">
      <summary>Gets the maximum height and width, in pixels, of the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the height and width of the <see cref="T:System.Windows.Forms.ToolStripDropDown" />, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.Opacity">
      <summary>Determines the opacity of the form.</summary>
      <returns>The level of opacity for the form. The default is 1.00.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.OverflowButton">
      <summary>This property is not relevant to this class.</summary>
      <returns>The ToolStripItem that is the overflow button for a ToolStrip with overflow enabled.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.OwnerItem">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> that is the owner of this <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> that is the owner of this <see cref="T:System.Windows.Forms.ToolStripDropDown" />. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.Region">
      <summary>Gets or sets the window region associated with the <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <returns>The window <see cref="T:System.Drawing.Region" /> associated with the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.RightToLeft">
      <summary>Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.RightToLeft" /> values. The default is <see cref="F:System.Windows.Forms.RightToLeft.Inherit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.Stretch">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> to enable stretching; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.TabIndex">
      <summary>This property is not relevant to this class.</summary>
      <returns>The tab order of the control within its container.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.TextDirection">
      <summary>Specifies the direction in which to draw the text on the item.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripTextDirection" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripTextDirection.Horizontal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.TopLevel">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is a top-level control.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is a top-level control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.TopMost">
      <summary>Gets or sets a value indicating whether the form should be displayed as a topmost form.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.Visible">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is visible or hidden.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is visible; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject">
      <summary>Provides information about the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control to accessibility client applications.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.#ctor(System.Windows.Forms.ToolStripDropDown)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject" /> class.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ToolStripDropDown" /> that owns the <see cref="T:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Name">
      <summary>Gets or sets the name of the <see cref="T:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject" />.</summary>
      <returns>The string representing the name.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Role">
      <summary>Gets the role of the <see cref="T:System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject" />.</summary>
      <returns>The <see cref="F:System.Windows.Forms.AccessibleRole.Table" /> value.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownButton">
      <summary>Represents a control that when clicked displays an associated <see cref="T:System.Windows.Forms.ToolStripDropDown" /> from which the user can select a single item.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> class that displays the specified image.</summary>
      <param name="image">An <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> class that displays the specified text.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String,System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> class that displays the specified text and image.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
      <param name="image">An <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> class that displays the specified text and image and raises the <see langword="Click" /> event.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
      <param name="image">An <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
      <param name="onClick">The event handler for the <see cref="E:System.Windows.Forms.Control.Click" /> event.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> class that has the specified name, displays the specified text and image, and raises the <see langword="Click" /> event.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
      <param name="image">An <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
      <param name="onClick">The event handler for the <see cref="E:System.Windows.Forms.Control.Click" /> event.</param>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.#ctor(System.String,System.Drawing.Image,System.Windows.Forms.ToolStripItem[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> class.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
      <param name="image">An <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
      <param name="dropDownItems">An array of type <see cref="T:System.Windows.Forms.ToolStripItem" /> containing the items of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for this <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> instance.</summary>
      <returns>A new accessibility object for this <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> instance.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.CreateDefaultDropDown">
      <summary>Creates a generic <see cref="T:System.Windows.Forms.ToolStripDropDown" /> for which events can be defined.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripDropDown" /> for which events can be defined.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownButton.ProcessMnemonic(System.Char)">
      <summary>Retrieves a value indicating whether the drop-down list of the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> has items.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the drop-down list has items; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownButton.AutoToolTip">
      <summary>Gets or sets a value indicating whether to use the <see langword="Text" /> property or the <see cref="P:System.Windows.Forms.ToolStripItem.ToolTipText" /> property for the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> ToolTip.</summary>
      <returns>
        <see langword="true" /> to use the <see cref="P:System.Windows.Forms.Control.Text" /> property for the ToolTip; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownButton.DefaultAutoToolTip">
      <summary>Gets a value indicating whether to display the <see cref="T:System.Windows.Forms.ToolTip" /> that is defined as the default.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownButton.ShowDropDownArrow">
      <summary>Gets or sets a value indicating whether an arrow is displayed on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />, which indicates that further options are available in a drop-down list.</summary>
      <returns>
        <see langword="true" /> to show an arrow on the <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownClosedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolStripDropDown.Closed" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownClosedEventArgs.#ctor(System.Windows.Forms.ToolStripDropDownCloseReason)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownClosedEventArgs" /> class.</summary>
      <param name="reason">One of the <see cref="T:System.Windows.Forms.ToolStripDropDownCloseReason" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownClosedEventArgs.CloseReason">
      <summary>Gets the reason that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> closed.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripDropDownCloseReason" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownClosedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolStripDropDown.Closed" /> event of a <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripDropDownClosedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownCloseReason">
      <summary>Specifies the reason that a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control was closed.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownCloseReason.AppClicked">
      <summary>Specifies that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control was closed because an application was launched.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownCloseReason.AppFocusChange">
      <summary>Specifies that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control was closed because another application has received the focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownCloseReason.CloseCalled">
      <summary>Specifies that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control was closed because the <see cref="M:System.Windows.Forms.ToolStripDropDown.Close" /> method was called.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownCloseReason.ItemClicked">
      <summary>Specifies that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control was closed because one of its items was clicked.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownCloseReason.Keyboard">
      <summary>Specifies that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control was closed because of keyboard activity, such as the ESC key being pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownClosingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolStripDropDown.Closing" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownClosingEventArgs.#ctor(System.Windows.Forms.ToolStripDropDownCloseReason)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownClosingEventArgs" /> class with the specified reason for closing.</summary>
      <param name="reason">One of the <see cref="T:System.Windows.Forms.ToolStripDropDownCloseReason" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownClosingEventArgs.CloseReason">
      <summary>Gets the reason that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is closing.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripDropDownCloseReason" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownClosingEventHandler">
      <summary>Represents the method that handles the <see cref="E:System.Windows.Forms.ToolStripDropDown.Closing" /> event of a <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripDropDownClosingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownDirection">
      <summary>Specifies the direction in which a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control is displayed relative to its parent control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownDirection.AboveLeft">
      <summary>Uses the mouse position to specify that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is displayed above and to the left of its parent control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownDirection.AboveRight">
      <summary>Uses the mouse position to specify that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is displayed above and to the right of its parent control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownDirection.BelowLeft">
      <summary>Uses the mouse position to specify that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is displayed below and to the left of its parent control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownDirection.BelowRight">
      <summary>Uses the mouse position to specify that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is displayed below and to the right of its parent control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownDirection.Default">
      <summary>Compensates for nested drop-down controls and responds to the <see cref="T:System.Windows.Forms.RightToLeft" /> setting, specifying either <see cref="F:System.Windows.Forms.ToolStripDropDownDirection.Left" /> or <see cref="F:System.Windows.Forms.ToolStripDropDownDirection.Right" /> accordingly.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownDirection.Left">
      <summary>Compensates for nested drop-down controls and specifies that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is displayed to the left of its parent control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripDropDownDirection.Right">
      <summary>Compensates for nested drop-down controls and specifies that the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is displayed to the right of its parent control.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownItem">
      <summary>Provides basic functionality for controls that display a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> when a <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />, <see cref="T:System.Windows.Forms.ToolStripMenuItem" />, or <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> control is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDownItem.DropDownClosed">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> closes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDownItem.DropDownItemClicked">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDownItem.DropDownOpened">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> has opened.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripDropDownItem.DropDownOpening">
      <summary>Occurs as the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> is opening.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.#ctor(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> class with the specified display text, image, and action to take when the drop-down control is clicked.</summary>
      <param name="text">The display text of the drop-down control.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the control.</param>
      <param name="onClick">The action to take when the drop-down control is clicked.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> class with the specified display text, image, action to take when the drop-down control is clicked, and control name.</summary>
      <param name="text">The display text of the drop-down control.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the control.</param>
      <param name="onClick">The action to take when the drop-down control is clicked.</param>
      <param name="name">The name of the control.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.#ctor(System.String,System.Drawing.Image,System.Windows.Forms.ToolStripItem[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> class with the specified display text, image, and <see cref="T:System.Windows.Forms.ToolStripItem" /> collection that the drop-down control contains.</summary>
      <param name="text">The display text of the drop-down control.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the control.</param>
      <param name="dropDownItems">A <see cref="T:System.Windows.Forms.ToolStripItem" /> collection that the drop-down control contains.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.CreateDefaultDropDown">
      <summary>Creates a generic <see cref="T:System.Windows.Forms.ToolStripDropDown" /> for which events can be defined.</summary>
      <returns>The created <see cref="T:System.Windows.Forms.ToolStripDropDown" /> object.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.HideDropDown">
      <summary>Makes a visible <see cref="T:System.Windows.Forms.ToolStripDropDown" /> hidden.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.OnBoundsChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripItem.Bounds" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownClosed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripDropDownItem.DropDownClosed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownHide(System.EventArgs)">
      <summary>Raised in response to the <see cref="M:System.Windows.Forms.ToolStripDropDownItem.HideDropDown" /> method.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripDropDownItem.DropDownItemClicked" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownOpened(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripDropDownItem.DropDownOpened" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.OnDropDownShow(System.EventArgs)">
      <summary>Raised in response to the <see cref="M:System.Windows.Forms.ToolStripDropDownItem.ShowDropDown" /> method.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the item; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItem.ShowDropDown">
      <summary>Displays the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> control associated with this <see cref="T:System.Windows.Forms.ToolStripDropDownItem" />.</summary>
      <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> is the same as the parent <see cref="T:System.Windows.Forms.ToolStrip" />.</exception>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownItem.DropDown">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> that will be displayed when this <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> is clicked.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripDropDown" /> that is associated with the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownItem.DropDownDirection">
      <summary>Gets or sets a value indicating the direction in which the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> emerges from its parent container.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The property is set to a value that is not one of the <see cref="T:System.Windows.Forms.ToolStripDropDownDirection" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripDropDownDirection" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownItem.DropDownItems">
      <summary>Gets the collection of items in the <see cref="T:System.Windows.Forms.ToolStripDropDown" /> that is associated with this <see cref="T:System.Windows.Forms.ToolStripDropDownItem" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> of controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownItem.DropDownLocation">
      <summary>Gets the screen coordinates, in pixels, of the upper-left corner of the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" />.</summary>
      <returns>A <see langword="Point" /> representing the x and y screen coordinates, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownItem.HasDropDown">
      <summary>Gets or sets a value that indicates whether the <see cref="P:System.Windows.Forms.ToolStripDropDownItem.DropDown" /> for the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> has been created.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.ToolStripDropDownItem.DropDown" /> for the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> has been created otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownItem.HasDropDownItems">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> has <see cref="T:System.Windows.Forms.ToolStripDropDown" /> controls associated with it.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> has <see cref="T:System.Windows.Forms.ToolStripDropDown" /> controls; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownItem.Pressed">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> is in the pressed state.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> is in the pressed state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownItemAccessibleObject">
      <summary>Provides information that accessibility applications use to adjust the user interface of a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> for users with impairments.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.#ctor(System.Windows.Forms.ToolStripDropDownItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownItemAccessibleObject" /> class with the specified <see cref="T:System.Windows.Forms.ToolStripDropDownItem" />.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripDropDownItem" /> that owns this <see cref="T:System.Windows.Forms.ToolStripDropDownItemAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.DoDefaultAction">
      <summary>Performs the default action associated with this accessible object.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.GetChild(System.Int32)">
      <summary>Retrieves the accessible child control corresponding to the specified index.</summary>
      <param name="index">The zero-based index of the accessible child control.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents the accessible child control corresponding to the specified index.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.GetChildCount">
      <summary>Retrieves the number of children belonging to an accessible object.</summary>
      <returns>The number of children belonging to an accessible object.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownItemAccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripDropDownMenu">
      <summary>Provides basic functionality for the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownMenu.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownMenu.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.ToolStripDropDownMenu.CreateDefaultItem(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Creates a default <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> with the specified text, image, and event handler on a new <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</summary>
      <param name="text">The text to use for the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />. If the <paramref name="text" /> parameter is a hyphen (-), this method creates a <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</param>
      <param name="onClick">An event handler that raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is clicked.</param>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripMenuItem" />, or a <see cref="T:System.Windows.Forms.ToolStripSeparator" /> if the <paramref name="text" /> parameter is a hyphen (-).</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownMenu.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripDropDown.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownMenu.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownMenu.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Paints the background of the control.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripDropDownMenu.SetDisplayedItems">
      <summary>Resets the collection of displayed and overflow items after a layout is done.</summary>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownMenu.DefaultPadding">
      <summary>Gets the internal spacing, in pixels, of the control.</summary>
      <returns>A <see langword="Padding" /> object representing the spacing.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownMenu.DisplayRectangle">
      <summary>Gets the rectangle that represents the display area of the <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the display area.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownMenu.LayoutEngine">
      <summary>Passes a reference to the cached <see cref="P:System.Windows.Forms.Control.LayoutEngine" /> returned by the layout engine interface.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> that represents the cached layout engine returned by the layout engine interface.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownMenu.LayoutStyle">
      <summary>Gets or sets a value indicating how the items of <see cref="T:System.Windows.Forms.ContextMenuStrip" /> are displayed.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripLayoutStyle" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripLayoutStyle.Flow" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownMenu.MaxItemSize">
      <summary>Gets the maximum height and width, in pixels, of the <see cref="T:System.Windows.Forms.ContextMenuStrip" />.</summary>
      <returns>A <see langword="Size" /> object representing the height and width of the control, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownMenu.ShowCheckMargin">
      <summary>Gets or sets a value indicating whether space for a check mark is shown on the left edge of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <returns>
        <see langword="true" /> if the check margin is shown; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripDropDownMenu.ShowImageMargin">
      <summary>Gets or sets a value indicating whether space for an image is shown on the left edge of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <returns>
        <see langword="true" /> if the image margin is shown; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripGripDisplayStyle">
      <summary>Specifies the orientation of the <see cref="T:System.Windows.Forms.ToolStrip" /> move handle (grip).</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripGripDisplayStyle.Horizontal">
      <summary>Specifies a horizontal orientation for the <see cref="T:System.Windows.Forms.ToolStrip" /> move handle (grip).</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripGripDisplayStyle.Vertical">
      <summary>Specifies a vertical orientation for the <see cref="T:System.Windows.Forms.ToolStrip" /> move handle (grip).</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripGripRenderEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderGrip" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripGripRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStrip)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripGripRenderEventArgs" /> class.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> object used to paint the move handle.</param>
      <param name="toolStrip">The <see cref="T:System.Windows.Forms.ToolStrip" /> the move handle is to be drawn on.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripGripRenderEventArgs.GripBounds">
      <summary>Gets the rectangle representing the area in which to paint the move handle.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the area in which to paint the move handle.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripGripRenderEventArgs.GripDisplayStyle">
      <summary>Gets the style that indicates whether the move handle is displayed vertically or horizontally.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripGripDisplayStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripGripRenderEventArgs.GripStyle">
      <summary>Gets the style that indicates whether or not the move handle is visible.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripGripDisplayStyle" /> values.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripGripRenderEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderGrip" /> event of a <see cref="T:System.Windows.Forms.ToolStripRenderer" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripGripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripGripStyle">
      <summary>Specifies visibility of a <see cref="T:System.Windows.Forms.ToolStrip" /> move handle (grip).</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripGripStyle.Hidden">
      <summary>Specifies that a <see cref="T:System.Windows.Forms.ToolStrip" /> move handle (grip) is not visible.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripGripStyle.Visible">
      <summary>Specifies that a <see cref="T:System.Windows.Forms.ToolStrip" /> move handle (grip) is visible.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItem">
      <summary>Represents the abstract base class that manages events and layout for all the elements that a <see cref="T:System.Windows.Forms.ToolStrip" /> or <see cref="T:System.Windows.Forms.ToolStripDropDown" /> can contain.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.AvailableChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripItem.Available" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.BackColorChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripItem.BackColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.Click">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.ToolStripItem" /> is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.CommandCanExecuteChanged">
      <summary>Occurs when the <see cref="M:System.Windows.Input.ICommand.CanExecute(System.Object)" /> status of the <see cref="T:System.Windows.Input.ICommand" /> that's assigned to the <see cref="P:System.Windows.Forms.ToolStripItem.Command" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.CommandChanged">
      <summary>Occurs when the assigned <see cref="T:System.Windows.Input.ICommand" /> of the <see cref="P:System.Windows.Forms.ToolStripItem.Command" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.CommandParameterChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripItem.CommandParameter" /> property has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.DisplayStyleChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripItem.DisplayStyle" /> has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.DoubleClick">
      <summary>Occurs when the item is double-clicked with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.DragDrop">
      <summary>Occurs when the user drags an item and the user releases the mouse button, indicating that the item should be dropped into this item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.DragEnter">
      <summary>Occurs when the user drags an item into the client area of this item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.DragLeave">
      <summary>Occurs when the user drags an item and the mouse pointer is no longer over the client area of this item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.DragOver">
      <summary>Occurs when the user drags an item over the client area of this item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.EnabledChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripItem.Enabled" /> property value has changed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.ForeColorChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripItem.ForeColor" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.GiveFeedback">
      <summary>Occurs during a drag operation.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.LocationChanged">
      <summary>Occurs when the location of a <see cref="T:System.Windows.Forms.ToolStripItem" /> is updated.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.MouseDown">
      <summary>Occurs when the mouse pointer is over the item and a mouse button is pressed.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.MouseEnter">
      <summary>Occurs when the mouse pointer enters the item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.MouseHover">
      <summary>Occurs when the mouse pointer hovers over the item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.MouseLeave">
      <summary>Occurs when the mouse pointer leaves the item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.MouseMove">
      <summary>Occurs when the mouse pointer is moved over the item.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.MouseUp">
      <summary>Occurs when the mouse pointer is over the item and a mouse button is released.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.OwnerChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripItem.Owner" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.Paint">
      <summary>Occurs when the item is redrawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.QueryAccessibilityHelp">
      <summary>Occurs when an accessibility client application invokes help for the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.QueryContinueDrag">
      <summary>Occurs during a drag-and-drop operation and allows the drag source to determine whether the drag-and-drop operation should be canceled.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.RightToLeftChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripItem.RightToLeft" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.TextChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripItem.Text" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripItem.VisibleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripItem.Visible" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItem" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.#ctor(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItem" /> class with the specified name, image, and event handler.</summary>
      <param name="text">A <see cref="T:System.String" /> representing the name of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="onClick">Raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event when the user clicks the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItem" /> class with the specified display text, image, event handler, and name.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="image">The Image to display on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="onClick">The event handler for the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event.</param>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ToolStripItem" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects)">
      <summary>Begins a drag-and-drop operation.</summary>
      <param name="data">The object to be dragged.</param>
      <param name="allowedEffects">The drag operations that can occur.</param>
      <returns>One of the <see cref="T:System.Windows.Forms.DragDropEffects" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.DoDragDrop(System.Object,System.Windows.Forms.DragDropEffects,System.Drawing.Bitmap,System.Drawing.Point,System.Boolean)">
      <summary>Begins a drag operation.</summary>
      <param name="data" />
      <param name="allowedEffects" />
      <param name="dragImage" />
      <param name="cursorOffset" />
      <param name="useDefaultDragImage" />
      <returns>A value from the <see cref="T:System.Windows.Forms.DragDropEffects" /> enumeration that represents the final effect that was performed during the drag-and-drop operation.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.GetCurrentParent">
      <summary>Retrieves the <see cref="T:System.Windows.Forms.ToolStrip" /> that is the container of the current <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStrip" /> that is the container of the current <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a control can be fit.</summary>
      <param name="constrainingSize">The custom-sized area for a control.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> ordered pair, representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.Invalidate">
      <summary>Invalidates the entire surface of the <see cref="T:System.Windows.Forms.ToolStripItem" /> and causes it to be redrawn.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.Invalidate(System.Drawing.Rectangle)">
      <summary>Invalidates the specified region of the <see cref="T:System.Windows.Forms.ToolStripItem" /> by adding it to the update region of the <see cref="T:System.Windows.Forms.ToolStripItem" />, which is the area that will be repainted at the next paint operation, and causes a paint message to be sent to the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="r">A <see cref="T:System.Drawing.Rectangle" /> that represents the region to invalidate.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.IsInputChar(System.Char)">
      <summary>Determines whether a character is an input character that the item recognizes.</summary>
      <param name="charCode">The character to test.</param>
      <returns>
        <see langword="true" /> if the character should be sent directly to the item and not preprocessed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnAvailableChanged(System.EventArgs)">
      <summary>Raises the AvailableChanged event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnBoundsChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripItem.Bounds" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnCommandCanExecuteChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.CommandCanExecuteChanged" /> event.</summary>
      <param name="e">An empty <see cref="T:System.EventArgs" /> instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnCommandChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.CommandChanged" /> event.</summary>
      <param name="e">An empty <see cref="T:System.EventArgs" /> instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnCommandParameterChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.CommandParameterChanged" /> event.</summary>
      <param name="e">An empty <see cref="T:System.EventArgs" /> instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnDisplayStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.DisplayStyleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnDoubleClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.DoubleClick" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnDragDrop(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.DragDrop" /> event.</summary>
      <param name="dragEvent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnDragEnter(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.DragEnter" /> event.</summary>
      <param name="dragEvent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnDragLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.DragLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnDragOver(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.DragOver" /> event.</summary>
      <param name="dragEvent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.EnabledChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.ForeColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.GiveFeedback" /> event.</summary>
      <param name="giveFeedbackEvent">A <see cref="T:System.Windows.Forms.GiveFeedbackEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnLocationChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.LocationChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnMouseEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseEnter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnMouseHover(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseHover" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseMove" /> event.</summary>
      <param name="mea">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnOwnerChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.OwnerChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnOwnerFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event when the <see cref="P:System.Windows.Forms.ToolStripItem.Font" /> property has changed on the parent of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnParentBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnParentChanged(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStrip)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ParentChanged" /> event.</summary>
      <param name="oldParent">The original parent of the item.</param>
      <param name="newParent">The new parent of the item.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnParentEnabledChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.EnabledChanged" /> event when the <see cref="P:System.Windows.Forms.ToolStripItem.Enabled" /> property value of the item's container changes.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnParentForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.ForeColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnParentRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.QueryContinueDrag" /> event.</summary>
      <param name="queryContinueDragEvent">A <see cref="T:System.Windows.Forms.QueryContinueDragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnRequestCommandExecute(System.EventArgs)">
      <summary>Called in the context of <see cref="M:System.Windows.Forms.ToolStripItem.OnClick(System.EventArgs)" /> to invoke <see cref="M:System.Windows.Input.ICommand.Execute(System.Object)" /> if the context allows.</summary>
      <param name="e">An empty <see cref="T:System.EventArgs" /> instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.TextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.OnVisibleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.VisibleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.PerformClick">
      <summary>Generates a <see langword="Click" /> event for a <see langword="ToolStripItem" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the item; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ResetBackColor">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ResetDisplayStyle">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ResetFont">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ResetForeColor">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ResetImage">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ResetMargin">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ResetPadding">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ResetRightToLeft">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ResetTextDirection">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.Select">
      <summary>Selects the item.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.SetBounds(System.Drawing.Rectangle)">
      <summary>Sets the size and location of the item.</summary>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that represents the size and location of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.SetVisibleCore(System.Boolean)">
      <summary>Sets the <see cref="T:System.Windows.Forms.ToolStripItem" /> to the specified visible state.</summary>
      <param name="visible">
        <see langword="true" /> to make the <see cref="T:System.Windows.Forms.ToolStripItem" /> visible; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IDropTarget#OnDragDrop(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.DragDrop" /> event.</summary>
      <param name="dragEvent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IDropTarget#OnDragEnter(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.DragEnter" /> event.</summary>
      <param name="dragEvent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IDropTarget#OnDragLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.DragLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.System#Windows#Forms#IDropTarget#OnDragOver(System.Windows.Forms.DragEventArgs)">
      <summary>Raises the <see langword="DragOver" /> event.</summary>
      <param name="dragEvent">A <see cref="T:System.Windows.Forms.DragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ToString">
      <summary>Returns a <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any. This method should not be overridden.</summary>
      <returns>A <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any, or <see langword="null" /> if the <see cref="T:System.ComponentModel.Component" /> is unnamed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.AccessibilityObject">
      <summary>Gets the <see cref="T:System.Windows.Forms.AccessibleObject" /> assigned to the control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.AccessibleObject" /> assigned to the control; if no <see cref="T:System.Windows.Forms.AccessibleObject" /> is currently assigned to the control, a new instance is created when this property is first accessed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.AccessibleDefaultActionDescription">
      <summary>Gets or sets the default action description of the control for use by accessibility client applications.</summary>
      <returns>The default action description of the control, for use by accessibility client applications.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.AccessibleDescription">
      <summary>Gets or sets the description that will be reported to accessibility client applications.</summary>
      <returns>The description of the control used by accessibility client applications. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.AccessibleName">
      <summary>Gets or sets the name of the control for use by accessibility client applications.</summary>
      <returns>The name of the control, for use by accessibility client applications. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.AccessibleRole">
      <summary>Gets or sets the accessible role of the control, which specifies the type of user interface element of the control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values. The default is <see cref="F:System.Windows.Forms.AccessibleRole.PushButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Alignment">
      <summary>Gets or sets a value indicating whether the item aligns towards the beginning or end of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.ToolStripItemAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemAlignment" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripItemAlignment.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.AllowDrop">
      <summary>Gets or sets a value indicating whether drag-and-drop and item reordering are handled through events that you implement.</summary>
      <exception cref="T:System.ArgumentException">
        <see cref="P:System.Windows.Forms.ToolStripItem.AllowDrop" /> and <see cref="P:System.Windows.Forms.ToolStrip.AllowItemReorder" /> are both set to <see langword="true" />.</exception>
      <returns>
        <see langword="true" /> if drag-and-drop operations are allowed in the control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Anchor">
      <summary>Gets or sets the edges of the container to which a <see cref="T:System.Windows.Forms.ToolStripItem" /> is bound and determines how a <see cref="T:System.Windows.Forms.ToolStripItem" /> is resized with its parent.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value is not one of the <see cref="T:System.Windows.Forms.AnchorStyles" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.AnchorStyles" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.AutoSize">
      <summary>Gets or sets a value indicating whether the item is automatically sized.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> is automatically sized; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.AutoToolTip">
      <summary>Gets or sets a value indicating whether to use the <see cref="P:System.Windows.Forms.ToolStripItem.Text" /> property or the <see cref="P:System.Windows.Forms.ToolStripItem.ToolTipText" /> property for the <see cref="T:System.Windows.Forms.ToolStripItem" /> ToolTip.</summary>
      <returns>
        <see langword="true" /> to use the <see cref="P:System.Windows.Forms.ToolStripItem.Text" /> property for the ToolTip; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Available">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripItem" /> should be placed on a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> is placed on a <see cref="T:System.Windows.Forms.ToolStrip" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.BackColor">
      <summary>Gets or sets the background color for the item.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the item. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.BackgroundImage">
      <summary>Gets or sets the background image displayed in the item.</summary>
      <returns>An <see cref="T:System.Drawing.Image" /> that represents the image to display in the background of the item.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.BackgroundImageLayout">
      <summary>Gets or sets the background image layout used for the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values. The default value is <see cref="F:System.Windows.Forms.ImageLayout.Tile" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Bounds">
      <summary>Gets the size and location of the item.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the size and location of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.CanSelect">
      <summary>Gets a value indicating whether the item can be selected.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> can be selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Command">
      <summary>Gets or sets the <see cref="T:System.Windows.Input.ICommand" /> whose <see cref="M:System.Windows.Input.ICommand.Execute(System.Object)" /> method will be called when the ToolStripItem's <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event is invoked.</summary>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.CommandParameter">
      <summary>Gets or sets the parameter that is passed to the <see cref="T:System.Windows.Input.ICommand" /> that's assigned to the <see cref="P:System.Windows.Forms.ToolStripItem.Command" /> property.</summary>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ContentRectangle">
      <summary>Gets the area where content, such as text and icons, can be placed within a <see cref="T:System.Windows.Forms.ToolStripItem" /> without overwriting background borders.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> containing four integers that represent the location and size of <see cref="T:System.Windows.Forms.ToolStripItem" /> contents, excluding its border.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.DefaultAutoToolTip">
      <summary>Gets a value indicating whether to display the <see cref="T:System.Windows.Forms.ToolTip" /> that is defined as the default.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.DefaultDisplayStyle">
      <summary>Gets a value indicating what is displayed on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemDisplayStyle" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.DefaultMargin">
      <summary>Gets the default margin of an item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the margin.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.DefaultPadding">
      <summary>Gets the internal spacing characteristics of the item.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.Padding" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.DefaultSize">
      <summary>Gets the default size of the item.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.DismissWhenClicked">
      <summary>Gets a value indicating whether items on a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> are hidden after they are clicked.</summary>
      <returns>
        <see langword="true" /> if the item is hidden after it is clicked; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.DisplayStyle">
      <summary>Gets or sets whether text and images are displayed on a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemDisplayStyle" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText" /> .</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Dock">
      <summary>Gets or sets which <see cref="T:System.Windows.Forms.ToolStripItem" /> borders are docked to its parent control and determines how a <see cref="T:System.Windows.Forms.ToolStripItem" /> is resized with its parent.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.DockStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default is <see cref="F:System.Windows.Forms.DockStyle.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.DoubleClickEnabled">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripItem" /> can be activated by double-clicking the mouse.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> can be activated by double-clicking the mouse; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Enabled">
      <summary>Gets or sets a value indicating whether the parent control of the <see cref="T:System.Windows.Forms.ToolStripItem" /> is enabled.</summary>
      <returns>
        <see langword="true" /> if the parent control of the <see cref="T:System.Windows.Forms.ToolStripItem" /> is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Font">
      <summary>Gets or sets the font of the text displayed by the item.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the <see cref="T:System.Windows.Forms.ToolStripItem" />. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ForeColor">
      <summary>Gets or sets the foreground color of the item.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the item. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Height">
      <summary>Gets or sets the height, in pixels, of a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the height, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Image">
      <summary>Gets or sets the image that is displayed on a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>The <see cref="T:System.Drawing.Image" /> to be displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ImageAlign">
      <summary>Gets or sets the alignment of the image on a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Drawing.ContentAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default is <see cref="F:System.Drawing.ContentAlignment.MiddleLeft" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ImageIndex">
      <summary>Gets or sets the index value of the image that is displayed on the item.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than -1.</exception>
      <returns>The zero-based index of the image in the <see cref="P:System.Windows.Forms.ToolStrip.ImageList" /> that is displayed for the item. The default is -1, signifying that the image list is empty.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ImageKey">
      <summary>Gets or sets the key accessor for the image in the <see cref="P:System.Windows.Forms.ToolStrip.ImageList" /> that is displayed on a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A string representing the key of the image.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ImageScaling">
      <summary>Gets or sets a value indicating whether an image on a <see cref="T:System.Windows.Forms.ToolStripItem" /> is automatically resized to fit in a container.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemImageScaling" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripItemImageScaling.SizeToFit" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ImageTransparentColor">
      <summary>Gets or sets the color to treat as transparent in a <see cref="T:System.Windows.Forms.ToolStripItem" /> image.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.IsDisposed">
      <summary>Gets a value indicating whether the object has been disposed of.</summary>
      <returns>
        <see langword="true" /> if the control has been disposed of; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.IsOnDropDown">
      <summary>Gets a value indicating whether the container of the current <see cref="T:System.Windows.Forms.Control" /> is a <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</summary>
      <returns>
        <see langword="true" /> if the container of the current <see cref="T:System.Windows.Forms.Control" /> is a <see cref="T:System.Windows.Forms.ToolStripDropDown" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.IsOnOverflow">
      <summary>Gets a value indicating whether the <see cref="P:System.Windows.Forms.ToolStripItem.Placement" /> property is set to <see cref="F:System.Windows.Forms.ToolStripItemPlacement.Overflow" />.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.ToolStripItem.Placement" /> property is set to <see cref="F:System.Windows.Forms.ToolStripItemPlacement.Overflow" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Margin">
      <summary>Gets or sets the space between the item and adjacent items.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the space between the item and adjacent items.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.MergeAction">
      <summary>Gets or sets how child menus are merged with parent menus.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.MergeAction" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.MergeAction" /> values. The default is <see cref="F:System.Windows.Forms.MergeAction.MatchOnly" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.MergeIndex">
      <summary>Gets or sets the position of a merged item within the current <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>An integer representing the index of the merged item, if a match is found, or -1 if a match is not found.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Name">
      <summary>Gets or sets the name of the item.</summary>
      <returns>A string representing the name. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Overflow">
      <summary>Gets or sets whether the item is attached to the <see cref="T:System.Windows.Forms.ToolStrip" /> or <see cref="T:System.Windows.Forms.ToolStripOverflowButton" /> or can float between the two.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.ToolStripItemOverflow" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemOverflow" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripItemOverflow.AsNeeded" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Owner">
      <summary>Gets or sets the owner of this item.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStrip" /> that owns or is to own the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.OwnerItem">
      <summary>Gets the parent <see cref="T:System.Windows.Forms.ToolStripItem" /> of this <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>The parent <see cref="T:System.Windows.Forms.ToolStripItem" /> of this <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Padding">
      <summary>Gets or sets the internal spacing, in pixels, between the item's contents and its edges.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the item's internal spacing, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Parent">
      <summary>Gets or sets the parent container of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStrip" /> that is the parent container of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Placement">
      <summary>Gets the current layout of the item.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemPlacement" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Pressed">
      <summary>Gets a value indicating whether the state of the item is pressed.</summary>
      <returns>
        <see langword="true" /> if the state of the item is pressed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.RightToLeft">
      <summary>Gets or sets a value indicating whether items are to be placed from right to left and text is to be written from right to left.</summary>
      <returns>
        <see langword="true" /> if items are to be placed from right to left and text is to be written from right to left; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.RightToLeftAutoMirrorImage">
      <summary>Mirrors automatically the <see cref="T:System.Windows.Forms.ToolStripItem" /> image when the <see cref="P:System.Windows.Forms.ToolStripItem.RightToLeft" /> property is set to <see cref="F:System.Windows.Forms.RightToLeft.Yes" />.</summary>
      <returns>
        <see langword="true" /> to automatically mirror the image; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Selected">
      <summary>Gets a value indicating whether the item is selected.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> is selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ShowKeyboardCues">
      <summary>Gets a value indicating whether to show or hide shortcut keys.</summary>
      <returns>
        <see langword="true" /> to show shortcut keys; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Size">
      <summary>Gets or sets the size of the item.</summary>
      <returns>A <see cref="T:System.Drawing.Size" />, representing the width and height of a rectangle.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Tag">
      <summary>Gets or sets the object that contains data about the item.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the control. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Text">
      <summary>Gets or sets the text that is to be displayed on the item.</summary>
      <returns>A string representing the item's text. The default value is the empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.TextAlign">
      <summary>Gets or sets the alignment of the text on a <see cref="T:System.Windows.Forms.ToolStripLabel" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Drawing.ContentAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values. The default is <see cref="F:System.Drawing.ContentAlignment.MiddleRight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.TextDirection">
      <summary>Gets the orientation of text used on a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripTextDirection" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.TextImageRelation">
      <summary>Gets or sets the position of <see cref="T:System.Windows.Forms.ToolStripItem" /> text and image relative to each other.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.TextImageRelation" /> values. The default is <see cref="F:System.Windows.Forms.TextImageRelation.ImageBeforeText" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolTipText">
      <summary>Gets or sets the text that appears as a <see cref="T:System.Windows.Forms.ToolTip" /> for a control.</summary>
      <returns>A string representing the ToolTip text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Visible">
      <summary>Gets or sets a value indicating whether the item is displayed.</summary>
      <returns>
        <see langword="true" /> if the item is displayed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.Width">
      <summary>Gets or sets the width in pixels of a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the width in pixels.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject">
      <summary>Provides information that accessibility applications use to adjust the user interface of a <see cref="T:System.Windows.Forms.ToolStripItem" /> for users with impairments.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.#ctor(System.Windows.Forms.ToolStripItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject" /> class.</summary>
      <param name="ownerItem">The <see cref="T:System.Windows.Forms.ToolStripItem" /> that owns this <see cref="T:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject" />.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="ownerItem" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.AddState(System.Windows.Forms.AccessibleStates)">
      <summary>Adds a <see cref="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.State" /> if <see cref="T:System.Windows.Forms.AccessibleStates" /> is <see cref="F:System.Windows.Forms.AccessibleStates.None" />.</summary>
      <param name="state">One of the <see cref="T:System.Windows.Forms.AccessibleStates" /> values other than <see cref="F:System.Windows.Forms.AccessibleStates.None" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.DoDefaultAction">
      <summary>Performs the default action associated with this accessible object.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.GetHelpTopic(System.String@)">
      <summary>Gets an identifier for a Help topic and the path to the Help file associated with this accessible object.</summary>
      <param name="fileName">When this method returns, contains a string that represents the path to the Help file associated with this accessible object. This parameter is passed without being initialized.</param>
      <returns>An identifier for a Help topic, or -1 if there is no Help topic. On return, the <paramref name="fileName" /> parameter will contain the path to the Help file associated with this accessible object, or <see langword="null" /> if there is no <see langword="IAccessible" /> interface specified.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
      <summary>Navigates to another accessible object.</summary>
      <param name="navigationDirection">One of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</param>
      <returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> that represents one of the <see cref="T:System.Windows.Forms.AccessibleNavigation" /> values.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.ToString">
      <summary>Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Bounds">
      <summary>Gets the bounds of the accessible object, in screen coordinates.</summary>
      <returns>An object of type <see cref="T:System.Drawing.Rectangle" /> representing the bounds.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.DefaultAction">
      <summary>Gets a string that describes the default action of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A description of the default action of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Description">
      <summary>Gets the description of the <see cref="T:System.Windows.Forms.Control.ControlAccessibleObject" />.</summary>
      <returns>A string describing the <see cref="T:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Help">
      <summary>Gets the description of what the object does or how the object is used.</summary>
      <returns>A string describing what the object does or how the object is used.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.KeyboardShortcut">
      <summary>Gets the shortcut key or access key for the accessible object.</summary>
      <returns>The shortcut key or access key for the accessible object, or <see langword="null" /> if there is no shortcut key associated with the object.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Name">
      <summary>Gets or sets the name of the accessible object.</summary>
      <returns>The object name, or <see langword="null" /> if the property has not been set.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Parent">
      <summary>Gets or sets the parent of an accessible object.</summary>
      <returns>An object of type <see cref="T:System.Windows.Forms.AccessibleObject" /> representing the parent.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Role">
      <summary>Gets the role of this accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.State">
      <summary>Gets the state of this accessible object.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AccessibleStates" /> values, or <see cref="F:System.Windows.Forms.AccessibleStates.None" /> if no state has been set.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemAlignment">
      <summary>Determines the alignment of a <see cref="T:System.Windows.Forms.ToolStripItem" /> in a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemAlignment.Left">
      <summary>Specifies that the <see cref="T:System.Windows.Forms.ToolStripItem" /> is to be anchored toward the left or top end of the <see cref="T:System.Windows.Forms.ToolStrip" />, depending on the <see cref="T:System.Windows.Forms.ToolStrip" /> orientation. If the value of <see cref="T:System.Windows.Forms.RightToLeft" /> is <see langword="Yes" />, items marked as <see cref="F:System.Windows.Forms.ToolStripItemAlignment.Left" /> are aligned to the right side of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemAlignment.Right">
      <summary>Specifies that the <see cref="T:System.Windows.Forms.ToolStripItem" /> is to be anchored toward the right or bottom end of the <see cref="T:System.Windows.Forms.ToolStrip" />, depending on the <see cref="T:System.Windows.Forms.ToolStrip" /> orientation. If the value of <see cref="T:System.Windows.Forms.RightToLeft" /> is <see langword="Yes" />, items marked as <see cref="F:System.Windows.Forms.ToolStripItemAlignment.Right" /> are aligned to the left side of the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemClickedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolStrip.ItemClicked" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemClickedEventArgs.#ctor(System.Windows.Forms.ToolStripItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs" /> class, specifying the <see cref="T:System.Windows.Forms.ToolStripItem" /> that was clicked.</summary>
      <param name="clickedItem">The <see cref="T:System.Windows.Forms.ToolStripItem" /> that was clicked.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemClickedEventArgs.ClickedItem">
      <summary>Gets the item that was clicked on the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> that was clicked.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemClickedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolStrip.ItemClicked" /> event of a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemClickedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.ToolStripItem" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.#ctor(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStripItem[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> class with the specified container <see cref="T:System.Windows.Forms.ToolStrip" /> and the specified array of <see cref="T:System.Windows.Forms.ToolStripItem" /> controls.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ToolStrip" /> to which this <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> belongs.</param>
      <param name="value">An array of type <see cref="T:System.Windows.Forms.ToolStripItem" /> containing the initial controls for this <see cref="T:System.Windows.Forms.ToolStripItemCollection" />.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="owner" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Add(System.Drawing.Image)">
      <summary>Adds a <see cref="T:System.Windows.Forms.ToolStripItem" /> that displays the specified image to the collection.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <returns>The new <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Add(System.String)">
      <summary>Adds a <see cref="T:System.Windows.Forms.ToolStripItem" /> that displays the specified text to the collection.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <returns>The new <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Add(System.String,System.Drawing.Image)">
      <summary>Adds a <see cref="T:System.Windows.Forms.ToolStripItem" /> that displays the specified image and text to the collection.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <returns>The new <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Add(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Adds a <see cref="T:System.Windows.Forms.ToolStripItem" /> that displays the specified image and text to the collection and that raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="onClick">Raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event.</param>
      <returns>The new <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Add(System.Windows.Forms.ToolStripItem)">
      <summary>Adds the specified item to the end of the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripItem" /> to add to the end of the collection.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is <see langword="null" />.</exception>
      <returns>An <see cref="T:System.Int32" /> representing the zero-based index of the new item in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItem[])">
      <summary>Adds an array of <see cref="T:System.Windows.Forms.ToolStripItem" /> controls to the collection.</summary>
      <param name="toolStripItems">An array of <see cref="T:System.Windows.Forms.ToolStripItem" /> controls.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="toolStripItems" /> parameter is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">The <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> is read-only.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItemCollection)">
      <summary>Adds a <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> to the current collection.</summary>
      <param name="toolStripItems">The <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> to be added to the current collection.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="toolStripItems" /> parameter is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">The <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> is read-only.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Clear">
      <summary>Removes all items from the collection.</summary>
      <exception cref="T:System.NotSupportedException">The <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> is read-only.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Contains(System.Windows.Forms.ToolStripItem)">
      <summary>Determines whether the specified item is a member of the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripItem" /> to search for in the <see cref="T:System.Windows.Forms.ToolStripItemCollection" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> is a member of the current <see cref="T:System.Windows.Forms.ToolStripItemCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.ContainsKey(System.String)">
      <summary>Determines whether the collection contains an item with the specified key.</summary>
      <param name="key">The key to locate in the <see cref="T:System.Windows.Forms.ToolStripItemCollection" />.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> contains a <see cref="T:System.Windows.Forms.ToolStripItem" /> with the specified key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.CopyTo(System.Windows.Forms.ToolStripItem[],System.Int32)">
      <summary>Copies the collection into the specified position of the specified <see cref="T:System.Windows.Forms.ToolStripItem" /> array.</summary>
      <param name="array">The array of type <see cref="T:System.Windows.Forms.ToolStripItem" /> to which to copy the collection.</param>
      <param name="index">The position in the <see cref="T:System.Windows.Forms.ToolStripItem" /> array at which to paste the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Find(System.String,System.Boolean)">
      <summary>Searches for items by their name and returns an array of all matching controls.</summary>
      <param name="key">The item name to search the <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> for.</param>
      <param name="searchAllChildren">
        <see langword="true" /> to search child items of the <see cref="T:System.Windows.Forms.ToolStripItem" /> specified by the <paramref name="key" /> parameter; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="key" /> parameter is <see langword="null" /> or empty.</exception>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> array of the search results.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.IndexOf(System.Windows.Forms.ToolStripItem)">
      <summary>Retrieves the index of the specified item in the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripItem" /> to locate in the <see cref="T:System.Windows.Forms.ToolStripItemCollection" />.</param>
      <returns>A zero-based index value that represents the position of the specified <see cref="T:System.Windows.Forms.ToolStripItem" /> in the <see cref="T:System.Windows.Forms.ToolStripItemCollection" />, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.IndexOfKey(System.String)">
      <summary>Retrieves the index of the first occurrence of the specified item within the collection.</summary>
      <param name="key">The name of the <see cref="T:System.Windows.Forms.ToolStripItem" /> to search for.</param>
      <returns>A zero-based index value that represents the position of the first occurrence of the <see cref="T:System.Windows.Forms.ToolStripItem" /> specified by the <paramref name="key" /> parameter, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Insert(System.Int32,System.Windows.Forms.ToolStripItem)">
      <summary>Inserts the specified item into the collection at the specified index.</summary>
      <param name="index">The location in the <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> at which to insert the <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripItem" /> to insert.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.Remove(System.Windows.Forms.ToolStripItem)">
      <summary>Removes the specified item from the collection.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripItem" /> to remove from the <see cref="T:System.Windows.Forms.ToolStripItemCollection" />.</param>
      <exception cref="T:System.NotSupportedException">The <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> is read-only.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.RemoveAt(System.Int32)">
      <summary>Removes an item from the specified index in the collection.</summary>
      <param name="index">The index value of the <see cref="T:System.Windows.Forms.ToolStripItem" /> to remove.</param>
      <exception cref="T:System.NotSupportedException">The <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> is read-only.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.RemoveByKey(System.String)">
      <summary>Removes the item that has the specified key.</summary>
      <param name="key">The key of the <see cref="T:System.Windows.Forms.ToolStripItem" /> to remove.</param>
      <exception cref="T:System.NotSupportedException">The <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> is read-only.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an item to the collection.</summary>
      <param name="value">The item to add to the collection.</param>
      <returns>The location at which <paramref name="value" /> was inserted.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Clear">
      <summary>Removes all items from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines if the collection contains a specified item.</summary>
      <param name="value">The item to locate in the collection.</param>
      <returns>
        <see langword="true" /> if <paramref name="value" /> is contained in the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Determines the location of a specified item in the collection.</summary>
      <param name="value">The item to locate in the collection.</param>
      <returns>The index of the item in the collection, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an item into the collection at a specified index.</summary>
      <param name="index">The zero-based index at which to insert <paramref name="value" />.</param>
      <param name="value">The item to insert into the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the first occurrence of a specified item from the collection.</summary>
      <param name="value">The item to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>Removes an item from the collection at a specified index.</summary>
      <param name="index">The zero-based index of the item to remove.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemCollection.IsReadOnly">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> is read-only.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> is read-only; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemCollection.Item(System.Int32)">
      <summary>Gets the item at the specified index.</summary>
      <param name="index">The zero-based index of the item to get.</param>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> located at the specified position in the <see cref="T:System.Windows.Forms.ToolStripItemCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemCollection.Item(System.String)">
      <summary>Gets the item with the specified name.</summary>
      <param name="key">The name of the item to get.</param>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> with the specified name.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the collection has a fixed size.</summary>
      <returns>
        <see langword="true" /> if the collection has a fixed size; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Retrieves the element at the specified index.</summary>
      <param name="index">The zero-based index of the item to get.</param>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemDisplayStyle">
      <summary>Specifies what to render (image or text) for this <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemDisplayStyle.Image">
      <summary>Specifies that only an image is to be rendered for this <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText">
      <summary>Specifies that both an image and text are to be rendered for this <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemDisplayStyle.None">
      <summary>Specifies that neither image nor text is to be rendered for this <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemDisplayStyle.Text">
      <summary>Specifies that only text is to be rendered for this <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemEventArgs">
      <summary>Provides data for <see cref="T:System.Windows.Forms.ToolStripItem" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemEventArgs.#ctor(System.Windows.Forms.ToolStripItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItemEventArgs" /> class, specifying a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripItem" /> for which to specify events.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemEventArgs.Item">
      <summary>Gets a <see cref="T:System.Windows.Forms.ToolStripItem" /> for which to handle events.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItem" /> for which to handle events.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemEventHandler">
      <summary>Represents the method that will handle events for a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemImage" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemImageRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.Drawing.Image,System.Drawing.Rectangle)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs" /> class for the specified <see cref="T:System.Windows.Forms.ToolStripItem" /> that displays an image within the specified space and that has the specified properties.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to paint the image.</param>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripItem" /> on which to draw the image.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to paint.</param>
      <param name="imageRectangle">The bounding area of the image.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemImageRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.Drawing.Rectangle)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs" /> class for the specified <see cref="T:System.Windows.Forms.ToolStripItem" /> within the specified space and that has the specified properties.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to paint the image.</param>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripItem" />.</param>
      <param name="imageRectangle">The bounding area of the image.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemImageRenderEventArgs.Image">
      <summary>Gets the image painted on the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>The <see cref="T:System.Drawing.Image" /> painted on the <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemImageRenderEventArgs.ImageRectangle">
      <summary>Gets the rectangle that represents the bounding area of the image.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounding area of the image.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemImageRenderEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemImage" /> event or <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemCheck" /> event of a <see cref="T:System.Windows.Forms.ToolStripRenderer" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemImageScaling">
      <summary>Specifies whether the size of the image on a <see cref="T:System.Windows.Forms.ToolStripItem" /> is automatically adjusted to fit on a <see cref="T:System.Windows.Forms.ToolStrip" /> while retaining the original image proportions.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemImageScaling.None">
      <summary>Specifies that the size of the image on a <see cref="T:System.Windows.Forms.ToolStripItem" /> is not automatically adjusted to fit on a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemImageScaling.SizeToFit">
      <summary>Specifies that the size of the image on a <see cref="T:System.Windows.Forms.ToolStripItem" /> is automatically adjusted to fit on a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemOverflow">
      <summary>Determines whether a <see cref="T:System.Windows.Forms.ToolStripItem" /> is placed in the overflow <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemOverflow.Always">
      <summary>Specifies that a <see cref="T:System.Windows.Forms.ToolStripItem" /> is permanently shown in the overflow <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemOverflow.AsNeeded">
      <summary>Specifies that a <see cref="T:System.Windows.Forms.ToolStripItem" /> drifts between the main <see cref="T:System.Windows.Forms.ToolStrip" /> and the overflow <see cref="T:System.Windows.Forms.ToolStrip" /> as required if space is not available on the main <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemOverflow.Never">
      <summary>Specifies that a <see cref="T:System.Windows.Forms.ToolStripItem" /> is never a candidate for the overflow <see cref="T:System.Windows.Forms.ToolStrip" />. If the <see cref="T:System.Windows.Forms.ToolStripItem" /> cannot fit on the main <see cref="T:System.Windows.Forms.ToolStrip" />, it will not be shown.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemPlacement">
      <summary>Specifies where a <see cref="T:System.Windows.Forms.ToolStripItem" /> is to be layed out.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemPlacement.Main">
      <summary>Specifies that a <see cref="T:System.Windows.Forms.ToolStripItem" /> is to be layed out on the main <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemPlacement.None">
      <summary>Specifies that a <see cref="T:System.Windows.Forms.ToolStripItem" /> is not to be layed out on the screen.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripItemPlacement.Overflow">
      <summary>Specifies that a <see cref="T:System.Windows.Forms.ToolStripItem" /> is to be layed out on the overflow <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemRenderEventArgs">
      <summary>Provides data for the events that render the background of objects derived from <see cref="T:System.Windows.Forms.ToolStripItem" /> in the <see cref="T:System.Windows.Forms.ToolStripRenderer" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> class for the specified <see cref="T:System.Windows.Forms.ToolStripItem" /> and using the specified <see cref="T:System.Drawing.Graphics" />.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> object used to draw the item.</param>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripItem" /> to be drawn.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="g" /> or <paramref name="item" /> is null.</exception>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemRenderEventArgs.Graphics">
      <summary>Gets the graphics used to paint the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> used to paint the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemRenderEventArgs.Item">
      <summary>Gets the <see cref="T:System.Windows.Forms.ToolStripItem" /> to paint.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripItem" /> to paint.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemRenderEventArgs.ToolStrip">
      <summary>Gets the value of the <see cref="P:System.Windows.Forms.ToolStripItem.Owner" /> property for the <see cref="T:System.Windows.Forms.ToolStripItem" /> to paint.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStrip" /> that is the owner of the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemRenderEventHandler">
      <summary>Represents the method that handles the events that render the background of objects derived from <see cref="T:System.Windows.Forms.ToolStripItem" /> in the <see cref="T:System.Windows.Forms.ToolStripRenderer" /> class.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemTextRenderEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemText" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemTextRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.String,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Font,System.Drawing.ContentAlignment)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItemTextRenderEventArgs" /> class with the specified text and text properties.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text.</param>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripItem" /> on which to draw the text.</param>
      <param name="text">The text to be drawn.</param>
      <param name="textRectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds to draw the text in.</param>
      <param name="textColor">The <see cref="T:System.Drawing.Color" /> used to draw the text.</param>
      <param name="textFont">The <see cref="T:System.Drawing.Font" /> used to draw the text.</param>
      <param name="textAlign">The <see cref="T:System.Drawing.ContentAlignment" /> that specifies the vertical and horizontal alignment of the text in the bounding area.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripItemTextRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripItem,System.String,System.Drawing.Rectangle,System.Drawing.Color,System.Drawing.Font,System.Windows.Forms.TextFormatFlags)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripItemTextRenderEventArgs" /> class with the specified text and text properties format.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the text.</param>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripItem" /> on which to draw the text.</param>
      <param name="text">The text to be drawn.</param>
      <param name="textRectangle">The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds to draw the text in.</param>
      <param name="textColor">The <see cref="T:System.Drawing.Color" /> used to draw the text.</param>
      <param name="textFont">The <see cref="T:System.Drawing.Font" /> used to draw the text.</param>
      <param name="format">The display and layout information for text strings.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.Text">
      <summary>Gets or sets the text to be drawn on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A string that represents the text to be painted on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextColor">
      <summary>Gets or sets the color of the <see cref="T:System.Windows.Forms.ToolStripItem" /> text.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color of the <see cref="T:System.Windows.Forms.ToolStripItem" /> text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextDirection">
      <summary>Gets or sets whether the text is drawn vertically or horizontally.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripTextDirection" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFont">
      <summary>Gets or sets the font of the text drawn on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> of the text drawn on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFormat">
      <summary>Gets or sets the display and layout information of the text drawn on the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values that specify the display and layout information of the drawn text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextRectangle">
      <summary>Gets or sets the rectangle that represents the bounds to draw the text in.</summary>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds to draw the text in.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripItemTextRenderEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemText" /> event of a <see cref="T:System.Windows.Forms.ToolStripRenderer" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemTextRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripLabel">
      <summary>Represents a nonselectable <see cref="T:System.Windows.Forms.ToolStripItem" /> that renders text and images and can display hyperlinks.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripLabel" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.#ctor(System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripLabel" /> class, specifying the image to display.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripLabel" /> class, specifying the text to display.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.#ctor(System.String,System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripLabel" /> class, specifying the text and image to display.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.#ctor(System.String,System.Drawing.Image,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripLabel" /> class, specifying the text and image to display and whether the <see cref="T:System.Windows.Forms.ToolStripLabel" /> acts as a link.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
      <param name="isLink">
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripLabel" /> acts as a link; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.#ctor(System.String,System.Drawing.Image,System.Boolean,System.EventHandler)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripLabel" /> class, specifying the text and image to display, whether the <see cref="T:System.Windows.Forms.ToolStripLabel" /> acts as a link, and providing a <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event handler.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
      <param name="isLink">
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripLabel" /> acts as a link; otherwise, <see langword="false" />.</param>
      <param name="onClick">A <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event handler.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.#ctor(System.String,System.Drawing.Image,System.Boolean,System.EventHandler,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripLabel" /> class, specifying the text and image to display, whether the <see cref="T:System.Windows.Forms.ToolStripLabel" /> acts as a link, and providing a <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event handler and name for the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</summary>
      <param name="text">The text to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
      <param name="isLink">
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripLabel" /> acts as a link; otherwise, <see langword="false" />.</param>
      <param name="onClick">A <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event handler.</param>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripLabel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the <see cref="T:System.Windows.Forms.ToolStripItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.OnMouseEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseEnter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripLabel.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripLabel.ActiveLinkColor">
      <summary>Gets or sets the color used to display an active link.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color to display an active link. The default color is specified by the system. Typically, this color is <see langword="Color.Red" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripLabel.CanSelect">
      <summary>Gets a value indicating the selectable state of a <see cref="T:System.Windows.Forms.ToolStripLabel" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripLabel.IsLink">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripLabel" /> is a hyperlink.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripLabel" /> is a hyperlink; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripLabel.LinkBehavior">
      <summary>Gets or sets a value that represents the behavior of a link.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.LinkBehavior" /> values. The default is <see langword="LinkBehavior.SystemDefault" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripLabel.LinkColor">
      <summary>Gets or sets the color used when displaying a normal link.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to displaying a normal link. The default color is specified by the system. Typically, this color is <see langword="Color.Blue" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripLabel.LinkVisited">
      <summary>Gets or sets a value indicating whether a link should be displayed as though it were visited.</summary>
      <returns>
        <see langword="true" /> if links should display as though they were visited; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripLabel.VisitedLinkColor">
      <summary>Gets or sets the color used when displaying a link that has been previously visited.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the color used to display links that have been visited. The default color is specified by the system. Typically, this color is <see langword="Color.Purple" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripLayoutStyle">
      <summary>Specifies the possible alignments with which the items of a <see cref="T:System.Windows.Forms.ToolStrip" /> can be displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripLayoutStyle.Flow">
      <summary>Specifies that items flow horizontally or vertically as necessary.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow">
      <summary>Specifies that items are laid out horizontally and overflow as necessary.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripLayoutStyle.StackWithOverflow">
      <summary>Specifies that items are laid out automatically.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripLayoutStyle.Table">
      <summary>Specifies that items are laid out flush left.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow">
      <summary>Specifies that items are laid out vertically, are centered within the control, and overflow as necessary.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripManager">
      <summary>Controls <see cref="T:System.Windows.Forms.ToolStrip" /> rendering and rafting, and the merging of <see cref="T:System.Windows.Forms.MenuStrip" />, <see cref="T:System.Windows.Forms.ToolStripDropDownMenu" />, and <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> objects. This class cannot be inherited.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripManager.RendererChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripManager.Renderer" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.FindToolStrip(System.String)">
      <summary>Finds the specified <see cref="T:System.Windows.Forms.ToolStrip" /> or a type derived from <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <param name="toolStripName">A string specifying the name of the <see cref="T:System.Windows.Forms.ToolStrip" /> or derived <see cref="T:System.Windows.Forms.ToolStrip" /> type to find.</param>
      <returns>The <see cref="T:System.Windows.Forms.ToolStrip" /> or one of its derived types as specified by the <paramref name="toolStripName" /> parameter, or <see langword="null" /> if the <see cref="T:System.Windows.Forms.ToolStrip" /> is not found.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.IsShortcutDefined(System.Windows.Forms.Keys)">
      <summary>Retrieves a value indicating whether the specified shortcut key is used by any of the <see cref="T:System.Windows.Forms.ToolStrip" /> controls of a form.</summary>
      <param name="shortcut">The shortcut key for which to search.</param>
      <returns>
        <see langword="true" /> if the shortcut key is used by any <see cref="T:System.Windows.Forms.ToolStrip" /> on the form; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.IsValidShortcut(System.Windows.Forms.Keys)">
      <summary>Retrieves a value indicating whether a defined shortcut key is valid.</summary>
      <param name="shortcut">The shortcut key to test for validity.</param>
      <returns>
        <see langword="true" /> if the shortcut key is valid; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.LoadSettings(System.Windows.Forms.Form)">
      <summary>Loads settings for the given <see cref="T:System.Windows.Forms.Form" /> using the full name of the <see cref="T:System.Windows.Forms.Form" /> as the settings key.</summary>
      <param name="targetForm">The <see cref="T:System.Windows.Forms.Form" /> whose name is also the settings key.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="targetForm" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.LoadSettings(System.Windows.Forms.Form,System.String)">
      <summary>Loads settings for the specified <see cref="T:System.Windows.Forms.Form" /> using the specified settings key.</summary>
      <param name="targetForm">The <see cref="T:System.Windows.Forms.Form" /> for which to load settings.</param>
      <param name="key">A <see cref="T:System.String" /> representing the settings key for this <see cref="T:System.Windows.Forms.Form" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="targetForm" /> is <see langword="null" />.

-or-

<paramref name="key" /> is <see langword="null" /> or empty.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.Merge(System.Windows.Forms.ToolStrip,System.String)">
      <summary>Combines two <see cref="T:System.Windows.Forms.ToolStrip" /> objects of the same type.</summary>
      <param name="sourceToolStrip">The <see cref="T:System.Windows.Forms.ToolStrip" /> to be combined with the <see cref="T:System.Windows.Forms.ToolStrip" /> referred to by the <paramref name="targetName" /> parameter.</param>
      <param name="targetName">The name of the <see cref="T:System.Windows.Forms.ToolStrip" /> that receives the <see cref="T:System.Windows.Forms.ToolStrip" /> referred to by the <paramref name="sourceToolStrip" /> parameter.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="sourceToolStrip" /> or <paramref name="targetName" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="sourceToolStrip" /> or <paramref name="targetName" /> refer to the same <see cref="T:System.Windows.Forms.ToolStrip" />.</exception>
      <returns>
        <see langword="true" /> if the merge is successful; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.Merge(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStrip)">
      <summary>Combines two <see cref="T:System.Windows.Forms.ToolStrip" /> objects of different types.</summary>
      <param name="sourceToolStrip">The <see cref="T:System.Windows.Forms.ToolStrip" /> to be combined with the <see cref="T:System.Windows.Forms.ToolStrip" /> referred to by the <paramref name="targetToolStrip" /> parameter.</param>
      <param name="targetToolStrip">The <see cref="T:System.Windows.Forms.ToolStrip" /> that receives the <see cref="T:System.Windows.Forms.ToolStrip" /> referred to by the <paramref name="sourceToolStrip" /> parameter.</param>
      <returns>
        <see langword="true" /> if the merge is successful; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.RevertMerge(System.String)">
      <summary>Undoes a merging of two <see cref="T:System.Windows.Forms.ToolStrip" /> objects, returning the <see cref="T:System.Windows.Forms.ToolStrip" /> with the specified name to its state before the merge and nullifying all previous merge operations.</summary>
      <param name="targetName">The name of the <see cref="T:System.Windows.Forms.ToolStripItem" /> for which to undo a merge operation.</param>
      <returns>
        <see langword="true" /> if the undoing of the merge is successful; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.RevertMerge(System.Windows.Forms.ToolStrip)">
      <summary>Undoes a merging of two <see cref="T:System.Windows.Forms.ToolStrip" /> objects, returning the specified <see cref="T:System.Windows.Forms.ToolStrip" /> to its state before the merge and nullifying all previous merge operations.</summary>
      <param name="targetToolStrip">The <see cref="T:System.Windows.Forms.ToolStripItem" /> for which to undo a merge operation.</param>
      <returns>
        <see langword="true" /> if the undoing of the merge is successful; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.RevertMerge(System.Windows.Forms.ToolStrip,System.Windows.Forms.ToolStrip)">
      <summary>Undoes a merging of two <see cref="T:System.Windows.Forms.ToolStrip" /> objects, returning both <see cref="T:System.Windows.Forms.ToolStrip" /> controls to their state before the merge and nullifying all previous merge operations.</summary>
      <param name="targetToolStrip">The name of the <see cref="T:System.Windows.Forms.ToolStripItem" /> for which to undo a merge operation.</param>
      <param name="sourceToolStrip">The <see cref="T:System.Windows.Forms.ToolStrip" /> that was merged with the <paramref name="targetToolStrip" />.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="sourceToolStrip" /> is <see langword="null" />.</exception>
      <returns>
        <see langword="true" /> if the undoing of the merge is successful; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.SaveSettings(System.Windows.Forms.Form)">
      <summary>Saves settings for the given <see cref="T:System.Windows.Forms.Form" /> using the full name of the <see cref="T:System.Windows.Forms.Form" /> as the settings key.</summary>
      <param name="sourceForm">The <see cref="T:System.Windows.Forms.Form" /> whose name is also the settings key.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="sourceForm" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripManager.SaveSettings(System.Windows.Forms.Form,System.String)">
      <summary>Saves settings for the specified <see cref="T:System.Windows.Forms.Form" /> using the specified settings key.</summary>
      <param name="sourceForm">The <see cref="T:System.Windows.Forms.Form" /> for which to save settings.</param>
      <param name="key">A <see cref="T:System.String" /> representing the settings key for this <see cref="T:System.Windows.Forms.Form" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="sourceForm" /> is <see langword="null" />.

-or-

<paramref name="key" /> is <see langword="null" /> or empty.</exception>
    </member>
    <member name="P:System.Windows.Forms.ToolStripManager.Renderer">
      <summary>Gets or sets the default painting styles for the form.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripRenderer" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripManager.RenderMode">
      <summary>Gets or sets the default theme for the form.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The set value was not one of the <see cref="T:System.Windows.Forms.ToolStripManagerRenderMode" /> values.</exception>
      <exception cref="T:System.NotSupportedException">
        <see cref="T:System.Windows.Forms.ToolStripManagerRenderMode" /> is set to <see cref="F:System.Windows.Forms.ToolStripManagerRenderMode.Custom" />; use the <see cref="P:System.Windows.Forms.ToolStripManager.Renderer" /> property instead.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripManagerRenderMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripManager.VisualStylesEnabled">
      <summary>Gets or sets a value indicating whether a <see cref="T:System.Windows.Forms.ToolStrip" /> is rendered using visual style information called themes.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripItem" /> is rendered using themes; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripManagerRenderMode">
      <summary>Specifies the painting style applied to multiple <see cref="T:System.Windows.Forms.ToolStrip" /> objects contained in a form.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripManagerRenderMode.Custom">
      <summary>Indicates the use of a <see cref="T:System.Windows.Forms.ToolStripRenderer" /> other than <see cref="T:System.Windows.Forms.ToolStripProfessionalRenderer" /> or <see cref="T:System.Windows.Forms.ToolStripSystemRenderer" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripManagerRenderMode.Professional">
      <summary>Indicates the use of a <see cref="T:System.Windows.Forms.ToolStripProfessionalRenderer" /> to paint.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripManagerRenderMode.System">
      <summary>Indicates the use of a <see cref="T:System.Windows.Forms.ToolStripSystemRenderer" /> to paint.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripMenuItem">
      <summary>Represents a selectable option displayed on a <see cref="T:System.Windows.Forms.MenuStrip" /> or <see cref="T:System.Windows.Forms.ContextMenuStrip" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripMenuItem.CheckedChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripMenuItem.Checked" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripMenuItem.CheckStateChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripMenuItem.CheckState" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> class that displays the specified <see cref="T:System.Drawing.Image" />.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the control.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> class that displays the specified text.</summary>
      <param name="text">The text to display on the menu item.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> class that displays the specified text and image.</summary>
      <param name="text">The text to display on the menu item.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the control.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> class that displays the specified text and image and that does the specified action when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is clicked.</summary>
      <param name="text">The text to display on the menu item.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the control.</param>
      <param name="onClick">An event handler that raises the <see cref="E:System.Windows.Forms.Control.Click" /> event when the control is clicked.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> class with the specified name that displays the specified text and image that does the specified action when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is clicked.</summary>
      <param name="text">The text to display on the menu item.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the control.</param>
      <param name="onClick">An event handler that raises the <see cref="E:System.Windows.Forms.Control.Click" /> event when the control is clicked.</param>
      <param name="name">The name of the menu item.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.Windows.Forms.Keys)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> class that displays the specified text and image, does the specified action when the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is clicked, and displays the specified shortcut keys.</summary>
      <param name="text">The text to display on the menu item.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the control.</param>
      <param name="onClick">An event handler that raises the <see cref="E:System.Windows.Forms.Control.Click" /> event when the control is clicked.</param>
      <param name="shortcutKeys">One of the values of <see cref="T:System.Windows.Forms.Keys" /> that represents the shortcut key for the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.#ctor(System.String,System.Drawing.Image,System.Windows.Forms.ToolStripItem[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> class that displays the specified text and image and that contains the specified <see cref="T:System.Windows.Forms.ToolStripItem" /> collection.</summary>
      <param name="text">The text to display on the menu item.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to display on the control.</param>
      <param name="dropDownItems">The menu items to display when the control is clicked.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.CreateDefaultDropDown">
      <summary>Creates a generic <see cref="T:System.Windows.Forms.ToolStripDropDown" /> for which events can be defined.</summary>
      <returns>A generic <see cref="T:System.Windows.Forms.ToolStripDropDown" /> for which can be defined.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnCheckedChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripMenuItem.CheckedChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnCheckStateChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripMenuItem.CheckStateChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.Click" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnDropDownHide(System.EventArgs)">
      <summary>Raised in response to the <see cref="M:System.Windows.Forms.ToolStripDropDownItem.HideDropDown" /> method.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnDropDownShow(System.EventArgs)">
      <summary>Raised in response to the <see cref="M:System.Windows.Forms.ToolStripDropDownItem.ShowDropDown" /> method.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnMouseEnter(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseEnter" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.MouseUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnOwnerChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.OwnerChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.ProcessCmdKey(System.Windows.Forms.Message@,System.Windows.Forms.Keys)">
      <summary>Processes a command key.</summary>
      <param name="m">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, which represents the window message to process.</param>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the character was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripMenuItem.SetBounds(System.Drawing.Rectangle)">
      <summary>Sets the size and location of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <param name="rect">A <see cref="T:System.Drawing.Rectangle" /> that represents the size and location of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.Checked">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is checked.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is checked or is in an indeterminate state; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.CheckOnClick">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> should automatically appear checked and unchecked when clicked.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> should automatically appear checked when clicked; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.CheckState">
      <summary>Gets or sets a value indicating whether a <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is in the checked, unchecked, or indeterminate state.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The <see cref="P:System.Windows.Forms.ToolStripMenuItem.CheckState" /> property is not set to one of the <see cref="T:System.Windows.Forms.CheckState" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.CheckState" /> values. The default is <see langword="Unchecked" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.DefaultMargin">
      <summary>Gets the spacing between the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> and an adjacent item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value representing the spacing.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.DefaultPadding">
      <summary>Gets the internal spacing within the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value representing the spacing.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.DefaultSize">
      <summary>Gets the default size of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <returns>The <see cref="T:System.Drawing.Size" /> of the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />, measured in pixels. The default is 100 pixels horizontally.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.Enabled">
      <summary>Gets or sets a value indicating whether the control is enabled.</summary>
      <returns>
        <see langword="true" /> if the control is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.IsMdiWindowListEntry">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> appears on a multiple document interface (MDI) window list.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> appears on a MDI window list; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.Overflow">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is attached to the <see cref="T:System.Windows.Forms.ToolStrip" /> or the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" /> or whether it can float between the two.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemOverflow" /> values. The default is <see langword="Never" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.ShortcutKeyDisplayString">
      <summary>Gets or sets the shortcut key text.</summary>
      <returns>A <see cref="T:System.String" /> representing the shortcut key.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.ShortcutKeys">
      <summary>Gets or sets the shortcut keys associated with the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The property was not set to one of the <see cref="T:System.Windows.Forms.Keys" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.Keys" /> values. The default is <see cref="F:System.Windows.Forms.Keys.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripMenuItem.ShowShortcutKeys">
      <summary>Gets or sets a value indicating whether the shortcut keys that are associated with the <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> are displayed next to the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <returns>
        <see langword="true" /> if the shortcut keys are shown; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripOverflow">
      <summary>Manages the overflow behavior of a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflow.#ctor(System.Windows.Forms.ToolStripItem)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripOverflow" /> class derived from a base <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="parentItem">The <see cref="T:System.Windows.Forms.ToolStripItem" /> from which to derive this <see cref="T:System.Windows.Forms.ToolStripOverflow" /> instance.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflow.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflow.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a control can be fitted.</summary>
      <param name="constrainingSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflow.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflow.SetDisplayedItems">
      <summary>Resets the collection of displayed and overflow items after a layout is done.</summary>
    </member>
    <member name="P:System.Windows.Forms.ToolStripOverflow.DisplayedItems">
      <summary>Gets all of the items that are currently being displayed on the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> that includes all items on this <see cref="T:System.Windows.Forms.ToolStrip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripOverflow.Items">
      <summary>Gets all of the items on the <see cref="T:System.Windows.Forms.ToolStrip" />, whether they are currently being displayed or not.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripItemCollection" /> containing all of the items.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripOverflow.LayoutEngine">
      <summary>Passes a reference to the cached <see cref="P:System.Windows.Forms.Control.LayoutEngine" /> returned by the layout engine interface.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> that represents the cached layout engine returned by the layout engine interface.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripOverflowButton">
      <summary>Hosts a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> that displays items that overflow the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflowButton.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the control.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflowButton.CreateDefaultDropDown">
      <summary>Creates an empty <see cref="T:System.Windows.Forms.ToolStripDropDown" /> that can be dropped down and to which events can be attached.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflowButton.Dispose(System.Boolean)">
      <summary>Called by the <see cref="M:System.ComponentModel.Component.Dispose(System.Boolean)" /> and <see cref="M:System.ComponentModel.Component.Finalize" /> methods to release the managed and unmanaged resources used by the current instance of the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" /> class.</summary>
      <param name="disposing">
        <see langword="true" /> to release managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflowButton.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a control can fit.</summary>
      <param name="constrainingSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflowButton.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripOverflowButton.SetBounds(System.Drawing.Rectangle)">
      <summary>Sets the size and location of the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</summary>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> representing the size and location of the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripOverflowButton.DefaultMargin">
      <summary>Gets the space, in pixels, that is specified by default between controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value representing the space between controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripOverflowButton.HasDropDownItems">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" /> has items that overflow the <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripOverflowButton" /> has overflow items; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripOverflowButton.RightToLeftAutoMirrorImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> to enable automatic mirroring; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripPanel">
      <summary>Creates a container within which other controls can share horizontal or vertical space.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripPanel.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripPanel.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripPanel.RendererChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripPanel.Renderer" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripPanel.TabIndexChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripPanel.TabStopChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripPanel.TextChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripPanel" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.BeginInit">
      <summary>Begins the initialization of a <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.ToolStripPanel.CreateControlsInstance">
      <summary>Retrieves a collection of <see cref="T:System.Windows.Forms.ToolStripPanel" /> controls.</summary>
      <returns>A collection of <see cref="T:System.Windows.Forms.ToolStripPanel" /> controls.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ToolStripPanel" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.EndInit">
      <summary>Ends the initialization of a <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip)">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.ToolStrip" /> to a <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <param name="toolStripToDrag">The <see cref="T:System.Windows.Forms.ToolStrip" /> to add to the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip,System.Drawing.Point)">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.ToolStrip" /> to a <see cref="T:System.Windows.Forms.ToolStripPanel" /> at the specified location.</summary>
      <param name="toolStripToDrag">The <see cref="T:System.Windows.Forms.ToolStrip" /> to add to the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</param>
      <param name="location">A <see cref="T:System.Drawing.Point" /> value representing the x- and y-client coordinates, in pixels, of the new location for the <see cref="T:System.Windows.Forms.ToolStrip" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip,System.Int32)">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.ToolStrip" /> to a <see cref="T:System.Windows.Forms.ToolStripPanel" /> in the specified row.</summary>
      <param name="toolStripToDrag">The <see cref="T:System.Windows.Forms.ToolStrip" /> to add to the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</param>
      <param name="row">An <see cref="T:System.Int32" /> representing the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to which the <see cref="T:System.Windows.Forms.ToolStrip" /> is added.</param>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="row" /> parameter is less than zero (0).</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip,System.Int32,System.Int32)">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.ToolStrip" /> to a <see cref="T:System.Windows.Forms.ToolStripPanel" /> at the specified coordinates.</summary>
      <param name="toolStripToDrag">The <see cref="T:System.Windows.Forms.ToolStrip" /> to add to the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</param>
      <param name="x">The horizontal client coordinate, in pixels.</param>
      <param name="y">The vertical client coordinate, in pixels.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.OnControlAdded(System.Windows.Forms.ControlEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.ControlAdded" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ControlEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.OnControlRemoved(System.Windows.Forms.ControlEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStrip.ControlRemoved" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ControlEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.OnDockChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.DockChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
      <summary>Paints the background of the control.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.OnParentChanged(System.EventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.Control.OnParentChanged(System.EventArgs)" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.OnRendererChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripPanel.RendererChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.PointToRow(System.Drawing.Point)">
      <summary>Retrieves the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> given a point within the <see cref="T:System.Windows.Forms.ToolStripPanel" /> client area.</summary>
      <param name="clientLocation">A <see cref="T:System.Drawing.Point" /> used as a reference to find the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</param>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> that contains the <paramref name="raftingContainerPoint" />, or <see langword="null" /> if no such <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> exists.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.AllowDrop">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.AutoScroll">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.AutoScrollMargin">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.AutoScrollMinSize">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.AutoSize">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripPanel" /> automatically adjusts its size when the form is resized.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripPanel" /> automatically resizes; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.DefaultMargin">
      <summary>Gets the space, in pixels, that is specified by default between controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that represents the default space between controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.DefaultPadding">
      <summary>Gets the internal spacing, in pixels, of the contents of a control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that represents the internal spacing of the contents of a control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.Dock">
      <summary>Gets or sets which control borders are docked to its parent control and determines how a control is resized with its parent.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.DockStyle" /> values. The default is None.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.LayoutEngine">
      <summary>Gets a cached instance of the control's layout engine.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> for the control's contents.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.Locked">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripPanel" /> can be moved or resized.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripPanel" /> can be moved or resized; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.Orientation">
      <summary>Gets or sets a value indicating the horizontal or vertical orientation of the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.Orientation" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.Renderer">
      <summary>Gets or sets a <see cref="T:System.Windows.Forms.ToolStripRenderer" /> used to customize the appearance of a <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripRenderer" /> that handles painting.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.RenderMode">
      <summary>Gets or sets the painting styles to be applied to the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripRenderMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.RowMargin">
      <summary>Gets or sets the spacing, in pixels, between the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />s and the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value representing the spacing, in pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.Rows">
      <summary>Gets the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />s in this <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" /> representing the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />s in this <see cref="T:System.Windows.Forms.ToolStripPanel" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.TabIndex">
      <summary>This property is not relevant to this class.</summary>
      <returns>An <see cref="T:System.Int32" /> representing the tab index.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.TabStop">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.Text">
      <summary>This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.String" /> representing the display text.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection">
      <summary>Represents all the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> objects in a <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.#ctor(System.Windows.Forms.ToolStripPanel)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" /> class in the specified <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ToolStripPanel" /> that holds this <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.#ctor(System.Windows.Forms.ToolStripPanel,System.Windows.Forms.ToolStripPanelRow[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" /> class with the specified number of rows in the specified <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <param name="owner">The <see cref="T:System.Windows.Forms.ToolStripPanel" /> that holds this <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
      <param name="value">The number of rows in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Add(System.Windows.Forms.ToolStripPanelRow)">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to add to the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
      <returns>The position of the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection)">
      <summary>Adds the specified <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" /> to a <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" /> to add to the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(System.Windows.Forms.ToolStripPanelRow[])">
      <summary>Adds an array of <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> objects to a <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <param name="value">An array of <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> objects.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Clear">
      <summary>Removes all <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> objects from the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Contains(System.Windows.Forms.ToolStripPanelRow)">
      <summary>Determines whether the specified <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> is in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to search for in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
      <returns>
        <see langword="true" /> if the specified <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> is in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.CopyTo(System.Windows.Forms.ToolStripPanelRow[],System.Int32)">
      <summary>Copies the entire <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" /> into an existing array at a specified location within the array.</summary>
      <param name="array">An <see cref="T:System.Array" /> representing the array to copy the contents of the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" /> to.</param>
      <param name="index">The location within the destination array to copy the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" /> to.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.IndexOf(System.Windows.Forms.ToolStripPanelRow)">
      <summary>Gets the index of the specified <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to return the index of.</param>
      <returns>The index of the specified <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Insert(System.Int32,System.Windows.Forms.ToolStripPanelRow)">
      <summary>Inserts the specified <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> at the specified location in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</summary>
      <param name="index">The zero-based index at which to insert the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</param>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to insert.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="value" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Remove(System.Windows.Forms.ToolStripPanelRow)">
      <summary>Removes the specified <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> from the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.RemoveAt(System.Int32)">
      <summary>Removes the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> at the specified index from the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Add(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Add(System.Object)" />.</summary>
      <param name="value">The <see cref="T:System.Object" /> to add to the <see cref="T:System.Collections.IList" />.</param>
      <returns>The zero-based index of the item to add.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Clear">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Clear" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Contains(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Contains(System.Object)" />.</summary>
      <param name="value">The item to locate in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
      <returns>
        <see langword="true" /> if <paramref name="value" /> is a <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> found in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.IndexOf(System.Object)" />.</summary>
      <param name="value">The object to locate in the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
      <returns>The index of <paramref name="value" /> if it is a <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> found in the list; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Insert(System.Int32,System.Object)" />.</summary>
      <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to insert into the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Remove(System.Object)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.Remove(System.Object)" />.</summary>
      <param name="value">The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to remove from the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#RemoveAt(System.Int32)">
      <summary>For a description of this member, see <see cref="M:System.Collections.IList.RemoveAt(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to remove.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Item(System.Int32)">
      <summary>Gets a particular <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> within the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</summary>
      <param name="index">The zero-based index of the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> within the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" />.</param>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> of the <see cref="T:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection" /> as specified by the <paramref name="index" /> parameter.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#IsFixedSize">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsFixedSize" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#IsReadOnly">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.IsReadOnly" />.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.System#Collections#IList#Item(System.Int32)">
      <summary>For a description of this member, see <see cref="P:System.Collections.IList.Item(System.Int32)" />.</summary>
      <param name="index">The zero-based index of the element to get.</param>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> at the specified index.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripPanelRenderEventArgs">
      <summary>Provides data for <see cref="T:System.Windows.Forms.ToolStripPanel" /> drawing.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanelRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripPanel)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripPanelRenderEventArgs" /> class for the specified <see cref="T:System.Windows.Forms.ToolStripPanel" /> that uses the specified graphics for drawing.</summary>
      <param name="g">The graphics used to paint the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</param>
      <param name="toolStripPanel">The <see cref="T:System.Windows.Forms.ToolStripPanel" /> to draw.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="g" /> or <paramref name="toolStripPanel" /> is null.</exception>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRenderEventArgs.Graphics">
      <summary>Gets or sets the graphics used to paint the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> used to paint.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRenderEventArgs.Handled">
      <summary>Gets or sets a value indicating whether the event was handled.</summary>
      <returns>
        <see langword="true" /> if the event was handled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRenderEventArgs.ToolStripPanel">
      <summary>Gets the <see cref="T:System.Windows.Forms.ToolStripPanel" /> to paint.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripPanel" /> to paint.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripPanelRenderEventHandler">
      <summary>Represents the method that will handle <see cref="T:System.Windows.Forms.ToolStripPanel" /> paint events.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripPanelRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripPanelRow">
      <summary>Represents a row of a <see cref="T:System.Windows.Forms.ToolStripPanel" /> that can contain controls.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanelRow.#ctor(System.Windows.Forms.ToolStripPanel)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> class, specifying the containing <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <param name="parent">The containing <see cref="T:System.Windows.Forms.ToolStripPanel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanelRow.CanMove(System.Windows.Forms.ToolStrip)">
      <summary>Gets or sets a value indicating whether a <see cref="T:System.Windows.Forms.ToolStrip" /> can be dragged and dropped into a <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</summary>
      <param name="toolStripToDrag">The <see cref="T:System.Windows.Forms.ToolStrip" /> to be dragged and dropped into the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</param>
      <returns>
        <see langword="true" /> if there is enough space in the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> to receive the <see cref="T:System.Windows.Forms.ToolStrip" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanelRow.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanelRow.OnBoundsChanged(System.Drawing.Rectangle,System.Drawing.Rectangle)">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripPanelRow.Bounds" /> property changes.</summary>
      <param name="oldBounds">The original value of the <see cref="P:System.Windows.Forms.ToolStripPanelRow.Bounds" /> property.</param>
      <param name="newBounds">The new value of the <see cref="P:System.Windows.Forms.ToolStripPanelRow.Bounds" /> property.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanelRow.OnControlAdded(System.Windows.Forms.Control,System.Int32)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ControlAdded" /> event.</summary>
      <param name="control">The control that was added to the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</param>
      <param name="index">The zero-based index representing the position of the added control.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanelRow.OnControlRemoved(System.Windows.Forms.Control,System.Int32)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ControlRemoved" /> event.</summary>
      <param name="control">The control that was removed from the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</param>
      <param name="index">The zero-based index representing the position of the removed control.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanelRow.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripPanelRow.OnOrientationChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripPanelRow.Orientation" /> property changes.</summary>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.Bounds">
      <summary>Gets the size and location of the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />, including its nonclient elements, in pixels, relative to the parent control.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> representing the size and location.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.Controls">
      <summary>Gets the controls in the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</summary>
      <returns>An array of controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.DefaultMargin">
      <summary>Gets the space, in pixels, that is specified by default between controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that represents the default space between controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.DefaultPadding">
      <summary>Gets the internal spacing, in pixels, of the contents of a control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that represents the internal spacing of the contents of a control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.DisplayRectangle">
      <summary>Gets the display area of the control.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> representing the size and location.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.LayoutEngine">
      <summary>Gets an instance of the control's layout engine.</summary>
      <returns>The <see cref="T:System.Windows.Forms.Layout.LayoutEngine" /> for the control's contents.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.Margin">
      <summary>Gets or sets the space between controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the space between controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.Orientation">
      <summary>Gets the layout direction of the <see cref="T:System.Windows.Forms.ToolStripPanelRow" /> relative to its containing <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.Orientation" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.Padding">
      <summary>Gets or sets padding within the control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the control's internal spacing characteristics.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripPanelRow.ToolStripPanel">
      <summary>Gets the <see cref="T:System.Windows.Forms.ToolStripPanel" /> that contains the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStripPanel" /> that contains the <see cref="T:System.Windows.Forms.ToolStripPanelRow" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripProfessionalRenderer">
      <summary>Handles the painting functionality for <see cref="T:System.Windows.Forms.ToolStrip" /> objects, applying a custom palette and a streamlined style.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripProfessionalRenderer" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.#ctor(System.Windows.Forms.ProfessionalColorTable)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripProfessionalRenderer" /> class.</summary>
      <param name="professionalColorTable">A <see cref="T:System.Windows.Forms.ProfessionalColorTable" /> to be used for painting.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderArrow" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripArrowRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderButtonBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderDropDownButtonBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderGrip" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripGripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Draws the item background.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemCheck" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemImage" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemText" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemTextRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderLabelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderMenuItemBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderOverflowButtonBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderSeparator" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the OnRenderSplitButtonBackground event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBorder" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripContentPanelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripContentPanelRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripPanelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripPanelRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripStatusLabelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProfessionalRenderer.ColorTable">
      <summary>Gets the color palette used for painting.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ProfessionalColorTable" /> used for painting.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProfessionalRenderer.RoundedEdges">
      <summary>Gets or sets a value indicating whether edges of controls have a rounded rather than a square or sharp appearance.</summary>
      <returns>
        <see langword="true" /> to round off control edges; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripProgressBar">
      <summary>Represents a Windows progress bar control contained in a <see cref="T:System.Windows.Forms.StatusStrip" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripProgressBar.KeyDown">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripProgressBar.KeyPress">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripProgressBar.KeyUp">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripProgressBar.LocationChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripProgressBar.OwnerChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripProgressBar.RightToLeftLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripProgressBar.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripProgressBar.TextChanged">
      <summary>This event is not relevant for this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripProgressBar.Validated">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripProgressBar.Validating">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProgressBar.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripProgressBar" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProgressBar.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripProgressBar" /> class with specified name.</summary>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripProgressBar" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProgressBar.Increment(System.Int32)">
      <summary>Advances the current position of the progress bar by the specified amount.</summary>
      <param name="value">The amount by which to increment the progress bar's current position.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProgressBar.OnRightToLeftLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ProgressBar.RightToLeftLayoutChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProgressBar.OnSubscribeControlEvents(System.Windows.Forms.Control)">
      <summary>Subscribes events from the hosted control.</summary>
      <param name="control">The control from which to subscribe events.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProgressBar.OnUnsubscribeControlEvents(System.Windows.Forms.Control)">
      <summary>Unsubscribes events from the hosted control.</summary>
      <param name="control">The control from which to unsubscribe events.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripProgressBar.PerformStep">
      <summary>Advances the current position of the progress bar by the amount of the <see cref="P:System.Windows.Forms.ToolStripProgressBar.Step" /> property.</summary>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.BackgroundImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>The background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.BackgroundImageLayout">
      <summary>This property is not relevant to this class.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageLayout" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.DefaultMargin">
      <summary>Gets the spacing between the <see cref="T:System.Windows.Forms.ToolStripProgressBar" /> and adjacent items.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value representing the spacing.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.DefaultSize">
      <summary>Gets the height and width of the <see cref="T:System.Windows.Forms.ToolStripProgressBar" /> in pixels.</summary>
      <returns>A <see cref="M:System.Drawing.Point.#ctor(System.Drawing.Size)" /> value representing the height and width.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.MarqueeAnimationSpeed">
      <summary>Gets or sets a value representing the delay between each <see cref="F:System.Windows.Forms.ProgressBarStyle.Marquee" /> display update, in milliseconds.</summary>
      <returns>An integer representing the delay, in milliseconds.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.Maximum">
      <summary>Gets or sets the upper bound of the range that is defined for this <see cref="T:System.Windows.Forms.ToolStripProgressBar" />.</summary>
      <returns>An integer representing the upper bound of the range. The default is 100.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.Minimum">
      <summary>Gets or sets the lower bound of the range that is defined for this <see cref="T:System.Windows.Forms.ToolStripProgressBar" />.</summary>
      <returns>An integer representing the lower bound of the range. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.ProgressBar">
      <summary>Gets the <see cref="T:System.Windows.Forms.ProgressBar" />.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ProgressBar" /> object associated with the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.RightToLeftLayout">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripProgressBar" /> layout is right-to-left or left-to-right when the <see cref="T:System.Windows.Forms.RightToLeft" /> property is set to <see cref="F:System.Windows.Forms.RightToLeft.Yes" />.</summary>
      <returns>
        <see langword="true" /> to turn on mirroring and lay out control from right to left when the <see cref="T:System.Windows.Forms.RightToLeft" /> property is set to <see cref="F:System.Windows.Forms.RightToLeft.Yes" />; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.Step">
      <summary>Gets or sets the amount by which to increment the current value of the <see cref="T:System.Windows.Forms.ToolStripProgressBar" /> when the <see cref="M:System.Windows.Forms.ToolStripProgressBar.PerformStep" /> method is called.</summary>
      <returns>An integer representing the incremental amount. The default value is 10.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.Style">
      <summary>Gets or sets the style of the <see cref="T:System.Windows.Forms.ToolStripProgressBar" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ProgressBarStyle" /> values. The default value is <see cref="F:System.Windows.Forms.ProgressBarStyle.Blocks" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.Text">
      <summary>Gets or sets the text displayed on the <see cref="T:System.Windows.Forms.ToolStripProgressBar" />.</summary>
      <returns>A <see cref="T:System.String" /> representing the display text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripProgressBar.Value">
      <summary>Gets or sets the current value of the <see cref="T:System.Windows.Forms.ToolStripProgressBar" />.</summary>
      <returns>An integer representing the current value.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripRenderer">
      <summary>Handles the painting functionality for <see cref="T:System.Windows.Forms.ToolStrip" /> objects.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderArrow">
      <summary>Occurs when an arrow on a <see cref="T:System.Windows.Forms.ToolStripItem" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderButtonBackground">
      <summary>Occurs when the background for a <see cref="T:System.Windows.Forms.ToolStripButton" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderDropDownButtonBackground">
      <summary>Occurs when the background for a <see cref="T:System.Windows.Forms.ToolStripDropDownButton" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderGrip">
      <summary>Occurs when the move handle for a <see cref="T:System.Windows.Forms.ToolStrip" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderImageMargin">
      <summary>Draws the margin between an image and its container.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderItemBackground">
      <summary>Occurs when the background for a <see cref="T:System.Windows.Forms.ToolStripItem" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderItemCheck">
      <summary>Occurs when the image for a selected <see cref="T:System.Windows.Forms.ToolStripItem" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderItemImage">
      <summary>Occurs when the image for a <see cref="T:System.Windows.Forms.ToolStripItem" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderItemText">
      <summary>Occurs when the text for a <see cref="T:System.Windows.Forms.ToolStripItem" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderLabelBackground">
      <summary>Occurs when the background for a <see cref="T:System.Windows.Forms.ToolStripLabel" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderMenuItemBackground">
      <summary>Occurs when the background for a <see cref="T:System.Windows.Forms.ToolStripMenuItem" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderOverflowButtonBackground">
      <summary>Occurs when the background for an overflow button is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderSeparator">
      <summary>Occurs when a <see cref="T:System.Windows.Forms.ToolStripSeparator" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderSplitButtonBackground">
      <summary>Occurs when the background for a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderStatusStripSizingGrip">
      <summary>Occurs when the display style changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBackground">
      <summary>Occurs when the background for a <see cref="T:System.Windows.Forms.ToolStrip" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBorder">
      <summary>Occurs when the border for a <see cref="T:System.Windows.Forms.ToolStrip" /> is rendered.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripContentPanelBackground">
      <summary>Draws the background of a <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripPanelBackground">
      <summary>Draws the background of a <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripStatusLabelBackground">
      <summary>Draws the background of a <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripRenderer.Offset2X">
      <summary>Gets or sets the offset multiplier for twice the offset along the x-axis.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripRenderer.Offset2Y">
      <summary>Gets or sets the offset multiplier for twice the offset along the y axis.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripRenderer" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.CreateDisabledImage(System.Drawing.Image)">
      <summary>Creates a gray-scale copy of a given image.</summary>
      <param name="normalImage">The image to be copied.</param>
      <returns>An <see cref="T:System.Drawing.Image" /> that is a copy of the given image, but with a gray-scale color matrix.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs)">
      <summary>Draws an arrow on a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripArrowRenderEventArgs" /> that contains data to draw the arrow.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Draws the background for a <see cref="T:System.Windows.Forms.ToolStripButton" />.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains data to draw the button's background.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Draws the background for a <see cref="T:System.Windows.Forms.ToolStripDropDownButton" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the data to draw the drop-down button's background.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawGrip(System.Windows.Forms.ToolStripGripRenderEventArgs)">
      <summary>Draws a move handle on a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripGripRenderEventArgs" /> that contains the data to draw the move handle.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Draws the space around an image on a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the data to draw the space around the image.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Draws the background for a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the data to draw the background of the item.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
      <summary>Draws an image on a <see cref="T:System.Windows.Forms.ToolStripItem" /> that indicates the item is in a selected state.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs" /> that contains the data to draw the selected image.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
      <summary>Draws an image on a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs" /> that contains the data to draw the image.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs)">
      <summary>Draws text on a <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemTextRenderEventArgs" /> that contains the data to draw the text.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Draws the background for a <see cref="T:System.Windows.Forms.ToolStripLabel" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the data to draw the background for the label.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Draws the background for a <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the data to draw the background for the menu item.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Draws the background for an overflow button.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)">
      <summary>Draws a <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs" /> that contains the data to draw the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawSplitButton(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Draws a <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawStatusStripSizingGrip(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Draws a sizing grip.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Draws the background for a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the data to draw the background for the <see cref="T:System.Windows.Forms.ToolStrip" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Draws the border for a <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the data to draw the border for the <see cref="T:System.Windows.Forms.ToolStrip" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs)">
      <summary>Draws the background of the <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripContentPanelRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs)">
      <summary>Draws the background of the <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripPanelRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.DrawToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Draws the background of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.Initialize(System.Windows.Forms.ToolStrip)">
      <summary>When overridden in a derived class, provides for custom initialization of the given <see cref="T:System.Windows.Forms.ToolStrip" />.</summary>
      <param name="toolStrip">The <see cref="T:System.Windows.Forms.ToolStrip" /> to be initialized.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.InitializeContentPanel(System.Windows.Forms.ToolStripContentPanel)">
      <summary>Initializes the specified <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</summary>
      <param name="contentPanel">The <see cref="T:System.Windows.Forms.ToolStripContentPanel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.InitializeItem(System.Windows.Forms.ToolStripItem)">
      <summary>When overridden in a derived class, provides for custom initialization of the given <see cref="T:System.Windows.Forms.ToolStripItem" />.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripItem" /> to be initialized.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.InitializePanel(System.Windows.Forms.ToolStripPanel)">
      <summary>Initializes the specified <see cref="T:System.Windows.Forms.ToolStripPanel" />.</summary>
      <param name="toolStripPanel">The <see cref="T:System.Windows.Forms.ToolStripPanel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderArrow" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripArrowRenderEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: The <paramref name="e" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderButtonBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderDropDownButtonBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderGrip" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripGripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Draws the item background.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemCheck" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: The <paramref name="e" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemImage" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemImageRenderEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: The <paramref name="e" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderItemText" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemTextRenderEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: The <paramref name="e" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderLabelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderMenuItemBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderOverflowButtonBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderSeparator" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.ToolStripRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderStatusStripSizingGrip(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderStatusStripSizingGrip" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: The <paramref name="e" /> argument is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBorder" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripContentPanelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripContentPanelRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripPanelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripPanelRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripStatusLabelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.ScaleArrowOffsetsIfNeeded">
      <summary>Applies the <see cref="F:System.Windows.Forms.ToolStripRenderer.Offset2X" /> and <see cref="F:System.Windows.Forms.ToolStripRenderer.Offset2Y" /> values to scaling the arrow icon, if scaling is required based on the DPI settings of the computer.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderer.ScaleArrowOffsetsIfNeeded(System.Int32)">
      <summary>Applies the <see cref="F:System.Windows.Forms.ToolStripRenderer.Offset2X" /> and <see cref="F:System.Windows.Forms.ToolStripRenderer.Offset2Y" /> values to scaling the arrow icon based on the specified DPI value.</summary>
      <param name="dpi">The DPI value to use for scaling.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripRenderEventArgs">
      <summary>Provides data for the <see cref="M:System.Windows.Forms.ToolStripRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)" />, <see cref="M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)" />, and <see cref="M:System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)" /> methods.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStrip)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> class for the specified <see cref="T:System.Windows.Forms.ToolStrip" /> and using the specified <see cref="T:System.Drawing.Graphics" />.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> to use for painting.</param>
      <param name="toolStrip">The <see cref="T:System.Windows.Forms.ToolStrip" /> to paint.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStrip,System.Drawing.Rectangle,System.Drawing.Color)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> class for the specified <see cref="T:System.Windows.Forms.ToolStrip" />, using the specified <see cref="T:System.Drawing.Graphics" /> to paint the specified bounds with the specified <see cref="T:System.Drawing.Color" />.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> to use for painting.</param>
      <param name="toolStrip">The <see cref="T:System.Windows.Forms.ToolStrip" /> to paint.</param>
      <param name="affectedBounds">The <see cref="T:System.Drawing.Rectangle" /> representing the bounds of the area to be painted.</param>
      <param name="backColor">The <see cref="T:System.Drawing.Color" /> that the background of the <see cref="T:System.Windows.Forms.ToolStrip" /> is painted with.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripRenderEventArgs.AffectedBounds">
      <summary>Gets the <see cref="T:System.Drawing.Rectangle" /> representing the bounds of the area to be painted.</summary>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> representing the bounds of the area to be painted.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripRenderEventArgs.BackColor">
      <summary>Gets the <see cref="T:System.Drawing.Color" /> that the background of the <see cref="T:System.Windows.Forms.ToolStrip" /> is painted with.</summary>
      <returns>The <see cref="T:System.Drawing.Color" /> that the background of the <see cref="T:System.Windows.Forms.ToolStrip" /> is painted with.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripRenderEventArgs.ConnectedArea">
      <summary>Gets the <see cref="T:System.Drawing.Rectangle" /> representing the overlap area between a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> and its <see cref="P:System.Windows.Forms.ToolStripDropDown.OwnerItem" />.</summary>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> representing the overlap area between a <see cref="T:System.Windows.Forms.ToolStripDropDown" /> and its <see cref="P:System.Windows.Forms.ToolStripDropDown.OwnerItem" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripRenderEventArgs.Graphics">
      <summary>Gets the <see cref="T:System.Drawing.Graphics" /> used to paint.</summary>
      <returns>The <see cref="T:System.Drawing.Graphics" /> used to paint.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripRenderEventArgs.ToolStrip">
      <summary>Gets the <see cref="T:System.Windows.Forms.ToolStrip" /> to be painted.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ToolStrip" /> to be painted.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripRenderEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBorder" /> event or the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBackground" /> event of a <see cref="T:System.Windows.Forms.ToolStripRenderer" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripRenderMode">
      <summary>Specifies the painting style applied to one <see cref="T:System.Windows.Forms.ToolStrip" /> contained in a form.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripRenderMode.Custom">
      <summary>Indicates that the <see cref="P:System.Windows.Forms.ToolStrip.RenderMode" /> is not determined by the <see cref="T:System.Windows.Forms.ToolStripManager" /> or the use of a <see cref="T:System.Windows.Forms.ToolStripRenderer" /> other than <see cref="T:System.Windows.Forms.ToolStripProfessionalRenderer" />, <see cref="T:System.Windows.Forms.ToolStripSystemRenderer" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode">
      <summary>Indicates that the <see cref="P:System.Windows.Forms.ToolStripManager.RenderMode" /> or <see cref="P:System.Windows.Forms.ToolStripManager.Renderer" /> determines the painting style.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripRenderMode.Professional">
      <summary>Indicates the use of a <see cref="T:System.Windows.Forms.ToolStripProfessionalRenderer" /> to paint.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripRenderMode.System">
      <summary>Indicates the use of a <see cref="T:System.Windows.Forms.ToolStripSystemRenderer" /> to paint.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripSeparator">
      <summary>Represents a line used to group items of a <see cref="T:System.Windows.Forms.ToolStrip" /> or the drop-down items of a <see cref="T:System.Windows.Forms.MenuStrip" /> or <see cref="T:System.Windows.Forms.ContextMenuStrip" /> or other <see cref="T:System.Windows.Forms.ToolStripDropDown" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripSeparator.DisplayStyleChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripSeparator.EnabledChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripSeparator.TextChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSeparator.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSeparator" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSeparator.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</summary>
      <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject" /> for the <see cref="T:System.Windows.Forms.ToolStripMenuItem" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSeparator.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a <see cref="T:System.Windows.Forms.ToolStripSeparator" /> can be fitted.</summary>
      <param name="constrainingSize">A <see cref="T:System.Drawing.Size" /> representing the height and width of the <see cref="T:System.Windows.Forms.ToolStripSeparator" />, in pixels.</param>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the height and width of the <see cref="T:System.Windows.Forms.ToolStripSeparator" />, in pixels.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSeparator.OnFontChanged(System.EventArgs)">
      <summary>This method is not relevant to this class.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSeparator.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSeparator.SetBounds(System.Drawing.Rectangle)">
      <summary>Sets the size and location of the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</summary>
      <param name="rect">A <see cref="T:System.Drawing.Rectangle" /> specifying the size and location of the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.AutoToolTip">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.BackgroundImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>The image to display in the background of the separator.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.BackgroundImageLayout">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.CanSelect">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripSeparator" /> can be selected.</summary>
      <returns>
        <see langword="true" /> if the component using the <see cref="T:System.Windows.Forms.ToolStripSeparator" /> is in design mode; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.DefaultMargin">
      <summary>Gets the spacing between the <see cref="T:System.Windows.Forms.ToolStripSeparator" /> and an adjacent item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value representing the spacing.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.DefaultSize">
      <summary>Gets the default size of the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</summary>
      <returns>The <see cref="T:System.Drawing.Size" /> of the <see cref="T:System.Windows.Forms.ToolStripSeparator" />, measured in pixels. The default is 100 pixels horizontally.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.DisplayStyle">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemDisplayStyle" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.DoubleClickEnabled">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.Enabled">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.Font">
      <summary>This property is not relevant to this class.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.Image">
      <summary>This property is not relevant to this class.</summary>
      <returns>The image to be displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.ImageAlign">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.ImageIndex">
      <summary>This property is not relevant to this class.</summary>
      <returns>The index of the image that is displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.ImageKey">
      <summary>This property is not relevant to this class.</summary>
      <returns>The key for the image that is displayed for the <see cref="T:System.Windows.Forms.ToolStripSeparator" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.ImageScaling">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemImageScaling" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.ImageTransparentColor">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Drawing.Color" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.RightToLeftAutoMirrorImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.Text">
      <summary>This property is not relevant to this class.</summary>
      <returns>A <see cref="T:System.String" /> representing the item's text.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.TextAlign">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Drawing.ContentAlignment" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.TextDirection">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripTextDirection" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.TextImageRelation">
      <summary>This property is not relevant to this class.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.TextImageRelation" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparator.ToolTipText">
      <summary>This property is not relevant to this class.</summary>
      <returns>A string representing the ToolTip text.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderGrip" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSeparatorRenderEventArgs.#ctor(System.Drawing.Graphics,System.Windows.Forms.ToolStripSeparator,System.Boolean)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs" /> class.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> to paint with.</param>
      <param name="separator">The <see cref="T:System.Windows.Forms.ToolStripSeparator" /> to be painted.</param>
      <param name="vertical">A value indicating whether or not the <see cref="T:System.Windows.Forms.ToolStripSeparator" /> is to be drawn vertically.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSeparatorRenderEventArgs.Vertical">
      <summary>Gets a value indicating whether the display style for the grip is vertical.</summary>
      <returns>
        <see langword="true" /> if the display style for the <see cref="T:System.Windows.Forms.ToolStripSeparator" /> is vertical; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripSeparatorRenderEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderSeparator" /> event of a <see cref="T:System.Windows.Forms.ToolStripRenderer" /> class.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripSplitButton">
      <summary>Represents a combination of a standard button on the left and a drop-down button on the right, or the other way around if the value of <see cref="T:System.Windows.Forms.RightToLeft" /> is <see langword="Yes" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripSplitButton.ButtonClick">
      <summary>Occurs when the standard button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripSplitButton.ButtonDoubleClick">
      <summary>Occurs when the standard button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is double-clicked.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripSplitButton.DefaultItemChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.ToolStripSplitButton.DefaultItem" /> has changed.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> class with the specified image.</summary>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> class with the specified text.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String,System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> class with the specified text and image.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> class with the specified display text, image, and <see cref="E:System.Windows.Forms.Control.Click" /> event handler.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
      <param name="onClick">Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event when the user clicks the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> class with the specified display text, image, <see cref="E:System.Windows.Forms.Control.Click" /> event handler, and name.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
      <param name="onClick">Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event when the user clicks the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.#ctor(System.String,System.Drawing.Image,System.Windows.Forms.ToolStripItem[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> class with the specified text, image, and <see cref="T:System.Windows.Forms.ToolStripItem" /> array.</summary>
      <param name="text">The text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to be displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</param>
      <param name="dropDownItems">A <see cref="T:System.Windows.Forms.ToolStripItem" /> array of controls.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.CreateAccessibilityInstance">
      <summary>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</summary>
      <returns>A new accessibility object for the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.CreateDefaultDropDown">
      <summary>Creates a generic <see cref="T:System.Windows.Forms.ToolStripDropDown" /> for which events can be defined.</summary>
      <returns>A <see cref="T:System.Windows.Forms.ToolStripDropDown" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> can be fitted.</summary>
      <param name="constrainingSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" />, representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.OnButtonClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripSplitButton.ButtonClick" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.OnButtonDoubleClick(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripSplitButton.ButtonDoubleClick" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.OnDefaultItemChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripSplitButton.DefaultItemChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.OnRightToLeftChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.PerformButtonClick">
      <summary>If the <see cref="P:System.Windows.Forms.ToolStripItem.Enabled" /> property is <see langword="true" />, calls the <see cref="M:System.Windows.Forms.ToolStripSplitButton.OnButtonClick(System.EventArgs)" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the item; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.ResetDropDownButtonWidth">
      <summary>This method is not relevant to this class.</summary>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.AutoToolTip">
      <summary>Gets or sets a value indicating whether default or custom <see cref="T:System.Windows.Forms.ToolTip" /> text is displayed on the <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</summary>
      <returns>
        <see langword="true" /> if default <see cref="T:System.Windows.Forms.ToolTip" /> text is displayed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.ButtonBounds">
      <summary>Gets the size and location of the standard button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the size and location of the standard button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.ButtonPressed">
      <summary>Gets a value indicating whether the button portion of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is in the pressed state.</summary>
      <returns>
        <see langword="true" /> if the button portion of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is in the pressed state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.ButtonSelected">
      <summary>Gets a value indicating whether the standard button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is selected or the <see cref="P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonPressed" /> property is <see langword="true" />.</summary>
      <returns>
        <see langword="true" /> if the button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is selected or whether <see cref="P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonPressed" /> is <see langword="true" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.DefaultAutoToolTip">
      <summary>Gets a value indicating whether to display the <see cref="T:System.Windows.Forms.ToolTip" /> that is defined as the default.</summary>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.DefaultItem">
      <summary>Gets or sets the portion of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> that is activated when the control is first selected.</summary>
      <returns>A <see langword="Forms.ToolStripItem" /> representing the portion of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> that is activated when first selected. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.DismissWhenClicked">
      <summary>Gets a value indicating whether items on a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> are hidden after they are clicked.</summary>
      <returns>
        <see langword="true" /> if the items are hidden after they are clicked; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonBounds">
      <summary>Gets the size and location, in screen coordinates, of the drop-down button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the size and location of the drop-down button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" />, in screen coordinates.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonPressed">
      <summary>Gets a value indicating whether the drop-down portion of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is in the pressed state.</summary>
      <returns>
        <see langword="true" /> if the drop-down portion of the <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is in the pressed state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonSelected">
      <summary>Gets a value indicating whether the drop-down button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is selected.</summary>
      <returns>
        <see langword="true" /> if the drop-down button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> is selected; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.DropDownButtonWidth">
      <summary>The width, in pixels, of the drop-down button portion of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified value is less than zero (0).</exception>
      <returns>An <see cref="T:System.Int32" /> representing the width in pixels. The default is 11. Starting with the .NET Framework 4.6, the default value is based on the DPI setting of the device running the app.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripSplitButton.SplitterBounds">
      <summary>Gets the boundaries of the separator between the standard and drop-down button portions of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" />.</summary>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the size and location of the separator.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject">
      <summary>Provides information that accessibility applications use to adjust the user interface of a <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> for users with impairments.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.#ctor(System.Windows.Forms.ToolStripSplitButton)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject" /> class.</summary>
      <param name="item">The <see cref="T:System.Windows.Forms.ToolStripSplitButton" /> that owns this <see cref="T:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.DoDefaultAction">
      <summary>Performs the default action associated with this <see cref="T:System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripStatusLabel">
      <summary>Represents a panel in a <see cref="T:System.Windows.Forms.StatusStrip" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> class that displays the specified image.</summary>
      <param name="image">An <see cref="T:System.Drawing.Image" /> that is displayed on the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> class that displays the specified text.</summary>
      <param name="text">A <see cref="T:System.String" /> representing the text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.String,System.Drawing.Image)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> class that displays the specified image and text.</summary>
      <param name="text">A <see cref="T:System.String" /> representing the text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
      <param name="image">An <see cref="T:System.Drawing.Image" /> that is displayed on the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.String,System.Drawing.Image,System.EventHandler)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> class that displays the specified image and text, and that carries out the specified action when the user clicks the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</summary>
      <param name="text">A <see cref="T:System.String" /> representing the text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
      <param name="image">An <see cref="T:System.Drawing.Image" /> that is displayed on the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
      <param name="onClick">Specifies the action to carry out when the control is clicked.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.#ctor(System.String,System.Drawing.Image,System.EventHandler,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> class with the specified name that displays the specified image and text, and that carries out the specified action when the user clicks the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</summary>
      <param name="text">A <see cref="T:System.String" /> representing the text to be displayed on the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
      <param name="image">An <see cref="T:System.Drawing.Image" /> that is displayed on the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
      <param name="onClick">Specifies the action to carry out when the control is clicked.</param>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.CreateAccessibilityInstance">
      <summary>Creates a new instance of the accessibility object for the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> control.</summary>
      <returns>The accessibility object for this <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> can be fitted.</summary>
      <param name="constrainingSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" />, representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripStatusLabel.OnTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripItem.TextChanged" /> event.</summary>
      <param name="e">The event data.</param>
    </member>
    <member name="P:System.Windows.Forms.ToolStripStatusLabel.Alignment">
      <summary>Gets or sets a value that determines where the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> is aligned on the <see cref="T:System.Windows.Forms.StatusStrip" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripItemAlignment" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripStatusLabel.BorderSides">
      <summary>Gets or sets a value that indicates which sides of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> show borders.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolStripStatusLabelBorderSides" /> values. The default is <see cref="F:System.Windows.Forms.ToolStripStatusLabelBorderSides.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripStatusLabel.BorderStyle">
      <summary>Gets or sets the border style of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" />.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value of <see cref="P:System.Windows.Forms.ToolStripStatusLabel.BorderStyle" /> is not one of the <see cref="T:System.Windows.Forms.Border3DStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.Border3DStyle" /> values. The default is <see cref="F:System.Windows.Forms.Border3DStyle.Flat" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripStatusLabel.DefaultMargin">
      <summary>Gets the default margin of an item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> representing the margin.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripStatusLabel.LiveSetting">
      <summary>Indicates the politeness level that a client should use to notify the user of changes to the live region.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.Automation.AutomationLiveSetting" /> values.</exception>
      <returns>The politeness level for notifications. Its default value is <see cref="F:System.Windows.Forms.Automation.AutomationLiveSetting.Off" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripStatusLabel.Spring">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> automatically fills the available space on the <see cref="T:System.Windows.Forms.StatusStrip" /> as the form is resized.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> automatically fills the available space on the <see cref="T:System.Windows.Forms.StatusStrip" /> as the form is resized; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripStatusLabelBorderSides">
      <summary>Specifies which sides of a <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> have borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripStatusLabelBorderSides.All">
      <summary>All sides of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> have borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom">
      <summary>Only the bottom side of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> has borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripStatusLabelBorderSides.Left">
      <summary>Only the left side of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> has borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripStatusLabelBorderSides.None">
      <summary>The <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> has no borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripStatusLabelBorderSides.Right">
      <summary>Only the right side of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> has borders.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripStatusLabelBorderSides.Top">
      <summary>Only the top side of the <see cref="T:System.Windows.Forms.ToolStripStatusLabel" /> has borders.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolStripSystemRenderer">
      <summary>Handles the painting functionality for <see cref="T:System.Windows.Forms.ToolStrip" /> objects, using system colors and a flat visual style.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripSystemRenderer" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderButtonBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderDropDownButtonBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderGrip" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripGripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Draws the item background.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderLabelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderMenuItemBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderOverflowButtonBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderSeparator" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripSeparatorRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the OnRenderSplitButtonBackground event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripBorder" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripRenderer.RenderToolStripStatusLabelBackground" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.ToolStripItemRenderEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.ToolStripTextBox">
      <summary>Represents a text box in a <see cref="T:System.Windows.Forms.ToolStrip" /> that allows the user to enter text.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripTextBox.AcceptsTabChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripTextBox.AcceptsTab" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripTextBox.BorderStyleChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripTextBox.BorderStyle" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripTextBox.HideSelectionChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripTextBox.HideSelection" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripTextBox.ModifiedChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripTextBox.Modified" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripTextBox.MultilineChanged">
      <summary>This event is not relevant to this class.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripTextBox.ReadOnlyChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripTextBox.ReadOnly" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolStripTextBox.TextBoxTextAlignChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripTextBox.TextBoxTextAlign" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> class with the specified name.</summary>
      <param name="name">The name of the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.#ctor(System.Windows.Forms.Control)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> class derived from a base control.</summary>
      <param name="c">The control from which to derive the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.AppendText(System.String)">
      <summary>Appends text to the current text of the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</summary>
      <param name="text">The text to append to the current contents of the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.Clear">
      <summary>Clears all text from the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.ClearUndo">
      <summary>Clears information about the most recent operation from the undo buffer of the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.Copy">
      <summary>Copies the current selection in the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> to the Clipboard.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.Cut">
      <summary>Moves the current selection in the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> to the Clipboard.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.DeselectAll">
      <summary>Specifies that the value of the <see cref="P:System.Windows.Forms.ToolStripTextBox.SelectionLength" /> property is zero so that no characters are selected in the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.GetCharFromPosition(System.Drawing.Point)">
      <summary>Retrieves the character that is closest to the specified location within the control.</summary>
      <param name="pt">The location from which to seek the nearest character.</param>
      <returns>The character at the specified location.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.GetCharIndexFromPosition(System.Drawing.Point)">
      <summary>Retrieves the index of the character nearest to the specified location.</summary>
      <param name="pt">The location to search.</param>
      <returns>The zero-based character index at the specified location.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.GetFirstCharIndexFromLine(System.Int32)">
      <summary>Retrieves the index of the first character of a given line.</summary>
      <param name="lineNumber">The line for which to get the index of its first character.</param>
      <returns>The zero-based character index in the specified line.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.GetFirstCharIndexOfCurrentLine">
      <summary>Retrieves the index of the first character of the current line.</summary>
      <returns>The zero-based character index in the current line.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.GetLineFromCharIndex(System.Int32)">
      <summary>Retrieves the line number from the specified character position within the text of the control.</summary>
      <param name="index">The character index position to search.</param>
      <returns>The zero-based line number in which the character index is located.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.GetPositionFromCharIndex(System.Int32)">
      <summary>Retrieves the location within the control at the specified character index.</summary>
      <param name="index">The index of the character for which to retrieve the location.</param>
      <returns>The location of the specified character.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.GetPreferredSize(System.Drawing.Size)">
      <summary>Retrieves the size of a rectangular area into which a control can be fitted.</summary>
      <param name="constrainingSize">The custom-sized area for a control.</param>
      <returns>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.OnAcceptsTabChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripTextBox.AcceptsTabChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.OnBorderStyleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripTextBox.BorderStyleChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.OnHideSelectionChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripTextBox.HideSelectionChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.OnModifiedChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripTextBox.ModifiedChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.OnMultilineChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripTextBox.MultilineChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.OnReadOnlyChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.ToolStripTextBox.ReadOnlyChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.OnSubscribeControlEvents(System.Windows.Forms.Control)">
      <summary>Subscribes events from the hosted control.</summary>
      <param name="control">The control from which to subscribe events.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control)">
      <summary>Unsubscribes events from the hosted control.</summary>
      <param name="control">The control from which to unsubscribe events.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.Paste">
      <summary>Replaces the current selection in the text box with the contents of the Clipboard.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.ScrollToCaret">
      <summary>Scrolls the contents of the control to the current caret position.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.Select(System.Int32,System.Int32)">
      <summary>Selects a range of text in the text box.</summary>
      <param name="start">The position of the first character in the current text selection within the text box.</param>
      <param name="length">The number of characters to select.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.SelectAll">
      <summary>Selects all text in the text box.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolStripTextBox.Undo">
      <summary>Undoes the last edit operation in the text box.</summary>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.AcceptsReturn">
      <summary>Gets or sets a value indicating whether pressing ENTER in a multiline <see cref="T:System.Windows.Forms.TextBox" /> control creates a new line of text in the control or activates the default button for the form.</summary>
      <returns>
        <see langword="true" /> if the ENTER key creates a new line of text in a multiline version of the control; <see langword="false" /> if the ENTER key activates the default button for the form. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.AcceptsTab">
      <summary>Gets or sets a value indicating whether pressing the TAB key in a multiline text box control types a TAB character in the control instead of moving the focus to the next control in the tab order.</summary>
      <returns>
        <see langword="true" /> if users can enter tabs in a multiline text box using the TAB key; <see langword="false" /> if pressing the TAB key moves the focus. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.AutoCompleteCustomSource">
      <summary>Gets or sets a custom string collection to use when the <see cref="P:System.Windows.Forms.ToolStripTextBox.AutoCompleteSource" /> property is set to <see langword="CustomSource" />.</summary>
      <returns>An <see cref="T:System.Windows.Forms.AutoCompleteStringCollection" /> to use with <see cref="P:System.Windows.Forms.TextBox.AutoCompleteSource" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.AutoCompleteMode">
      <summary>Gets or sets an option that controls how automatic completion works for the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AutoCompleteMode" /> values. The default is <see cref="F:System.Windows.Forms.AutoCompleteMode.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.AutoCompleteSource">
      <summary>Gets or sets a value specifying the source of complete strings used for automatic completion.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.AutoCompleteSource" /> values. The default is <see cref="F:System.Windows.Forms.AutoCompleteSource.None" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.BackgroundImage">
      <summary>This property is not relevant to this class.</summary>
      <returns>The background image displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.BackgroundImageLayout">
      <summary>This property is not relevant to this class.</summary>
      <returns>An <see cref="T:System.Windows.Forms.ImageLayout" /> value.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.BorderStyle">
      <summary>Gets or sets the border type of the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see cref="F:System.Windows.Forms.BorderStyle.Fixed3D" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.CanUndo">
      <summary>Gets a value indicating whether the user can undo the previous operation in a <see cref="T:System.Windows.Forms.ToolStripTextBox" /> control.</summary>
      <returns>
        <see langword="true" /> if the user can undo the previous operation performed in a text box control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.CharacterCasing">
      <summary>Gets or sets whether the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> control modifies the case of characters as they are typed.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.CharacterCasing" /> values. The default is <see cref="F:System.Windows.Forms.CharacterCasing.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.DefaultMargin">
      <summary>Gets the spacing, in pixels, between the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> and adjacent items.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> value representing the spacing.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.DefaultSize">
      <summary>Gets the default size of the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> in pixels. The default size is 100 pixels by 25 pixels.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.HideSelection">
      <summary>Gets or sets a value indicating whether the selected text in the text box control remains highlighted when the control loses focus.</summary>
      <returns>
        <see langword="true" /> if the selected text does not appear highlighted when the text box control loses focus; <see langword="false" />, if the selected text remains highlighted when the text box control loses focus. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.Lines">
      <summary>Gets or sets the lines of text in a <see cref="T:System.Windows.Forms.ToolStripTextBox" /> control.</summary>
      <returns>An array of strings that contains the text in a text box control.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.MaxLength">
      <summary>Gets or sets the maximum number of characters the user can type or paste into the text box control.</summary>
      <returns>The number of characters that can be entered into the control. The default is 32767 characters.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.Modified">
      <summary>Gets or sets a value that indicates that the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> control has been modified by the user since the control was created or its contents were last set.</summary>
      <returns>
        <see langword="true" /> if the control's contents have been modified; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.Multiline">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.ReadOnly">
      <summary>Gets or sets a value indicating whether text in the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> is read-only.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolStripTextBox" /> is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.SelectedText">
      <summary>Gets or sets a value indicating the currently selected text in the control.</summary>
      <returns>A string that represents the currently selected text in the text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.SelectionLength">
      <summary>Gets or sets the number of characters selected in the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</summary>
      <returns>The number of characters selected in the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.SelectionStart">
      <summary>Gets or sets the starting point of text selected in the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</summary>
      <returns>The starting position of text selected in the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.ShortcutsEnabled">
      <summary>Gets or sets a value indicating whether the defined shortcuts are enabled.</summary>
      <returns>
        <see langword="true" /> to enable the shortcuts; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.TextBox">
      <summary>Gets the hosted <see cref="T:System.Windows.Forms.TextBox" /> control.</summary>
      <returns>The hosted <see cref="T:System.Windows.Forms.TextBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.TextBoxTextAlign">
      <summary>Gets or sets how text is aligned in a <see cref="T:System.Windows.Forms.TextBox" /> control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> enumeration values that specifies how text is aligned in the control. The default is <see cref="F:System.Windows.Forms.HorizontalAlignment.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.TextLength">
      <summary>Gets the length of text in the control.</summary>
      <returns>The number of characters contained in the text of the <see cref="T:System.Windows.Forms.ToolStripTextBox" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolStripTextBox.WordWrap">
      <summary>This property is not relevant to this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolStripTextDirection">
      <summary>Specifies the text orientation to use with a particular <see cref="P:System.Windows.Forms.ToolStrip.LayoutStyle" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripTextDirection.Horizontal">
      <summary>Specifies horizontal text orientation.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripTextDirection.Inherit">
      <summary>Specifies that the text direction is inherited from the parent control.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripTextDirection.Vertical270">
      <summary>Specifies that text is to be rotated 270 degrees.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolStripTextDirection.Vertical90">
      <summary>Specifies that text is to be rotated 90 degrees.</summary>
    </member>
    <member name="T:System.Windows.Forms.ToolTip">
      <summary>Represents a small rectangular pop-up window that displays a brief description of a control's purpose when the user rests the pointer on the control.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolTip.Draw">
      <summary>Occurs when the ToolTip is drawn and the <see cref="P:System.Windows.Forms.ToolTip.OwnerDraw" /> property is set to <see langword="true" /> and the <see cref="P:System.Windows.Forms.ToolTip.IsBalloon" /> property is <see langword="false" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.ToolTip.Popup">
      <summary>Occurs before a ToolTip is initially displayed. This is the default event for the <see cref="T:System.Windows.Forms.ToolTip" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolTip" /> without a specified container.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.#ctor(System.ComponentModel.IContainer)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolTip" /> class with a specified container.</summary>
      <param name="cont">An <see cref="T:System.ComponentModel.IContainer" /> that represents the container of the <see cref="T:System.Windows.Forms.ToolTip" />.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.CanExtend(System.Object)">
      <summary>Returns <see langword="true" /> if the ToolTip can offer an extender property to the specified target component.</summary>
      <param name="target">The target object to add an extender property to.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolTip" /> class can offer one or more extender properties; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.ComponentModel.Component" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.Finalize">
      <summary>Releases the unmanaged resources and performs other cleanup operations before the <see cref="T:System.Windows.Forms.Cursor" /> is reclaimed by the garbage collector.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.GetToolTip(System.Windows.Forms.Control)">
      <summary>Retrieves the ToolTip text associated with the specified control.</summary>
      <param name="control">The <see cref="T:System.Windows.Forms.Control" /> for which to retrieve the <see cref="T:System.Windows.Forms.ToolTip" /> text.</param>
      <returns>A <see cref="T:System.String" /> containing the ToolTip text for the specified control.</returns>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.Hide(System.Windows.Forms.IWin32Window)">
      <summary>Hides the specified ToolTip window.</summary>
      <param name="win">The <see cref="T:System.Windows.Forms.IWin32Window" /> of the associated window or control that the ToolTip is associated with.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="win" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.RemoveAll">
      <summary>Removes all ToolTip text currently associated with the ToolTip component.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.SetToolTip(System.Windows.Forms.Control,System.String)">
      <summary>Associates ToolTip text with the specified control.</summary>
      <param name="control">The <see cref="T:System.Windows.Forms.Control" /> to associate the ToolTip text with.</param>
      <param name="caption">The ToolTip text to display when the pointer is on the control.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window)">
      <summary>Sets the ToolTip text associated with the specified control, and displays the ToolTip modally.</summary>
      <param name="text">A <see cref="T:System.String" /> containing the new ToolTip text.</param>
      <param name="window">The <see cref="T:System.Windows.Forms.Control" /> to display the ToolTip for.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="window" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Drawing.Point)">
      <summary>Sets the ToolTip text associated with the specified control, and then displays the ToolTip modally at the specified relative position.</summary>
      <param name="text">A <see cref="T:System.String" /> containing the new ToolTip text.</param>
      <param name="window">The <see cref="T:System.Windows.Forms.Control" /> to display the ToolTip for.</param>
      <param name="point">A <see cref="T:System.Drawing.Point" /> containing the offset, in pixels, relative to the upper-left corner of the associated control window, to display the ToolTip.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="window" /> parameter is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Drawing.Point,System.Int32)">
      <summary>Sets the ToolTip text associated with the specified control, and then displays the ToolTip for the specified duration at the specified relative position.</summary>
      <param name="text">A <see cref="T:System.String" /> containing the new ToolTip text.</param>
      <param name="window">The <see cref="T:System.Windows.Forms.Control" /> to display the ToolTip for.</param>
      <param name="point">A <see cref="T:System.Drawing.Point" /> containing the offset, in pixels, relative to the upper-left corner of the associated control window, to display the ToolTip.</param>
      <param name="duration">An <see cref="T:System.Int32" /> containing the duration, in milliseconds, to display the ToolTip.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="window" /> parameter is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="duration" /> is less than or equal to 0.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Int32)">
      <summary>Sets the ToolTip text associated with the specified control, and then displays the ToolTip for the specified duration.</summary>
      <param name="text">A <see cref="T:System.String" /> containing the new ToolTip text.</param>
      <param name="window">The <see cref="T:System.Windows.Forms.Control" /> to display the ToolTip for.</param>
      <param name="duration">An <see cref="T:System.Int32" /> containing the duration, in milliseconds, to display the ToolTip.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="window" /> parameter is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="duration" /> is less than or equal to 0.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Int32,System.Int32)">
      <summary>Sets the ToolTip text associated with the specified control, and then displays the ToolTip modally at the specified relative position.</summary>
      <param name="text">A <see cref="T:System.String" /> containing the new ToolTip text.</param>
      <param name="window">The <see cref="T:System.Windows.Forms.Control" /> to display the ToolTip for.</param>
      <param name="x">The horizontal offset, in pixels, relative to the upper-left corner of the associated control window, to display the ToolTip.</param>
      <param name="y">The vertical offset, in pixels, relative to the upper-left corner of the associated control window, to display the ToolTip.</param>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.Show(System.String,System.Windows.Forms.IWin32Window,System.Int32,System.Int32,System.Int32)">
      <summary>Sets the ToolTip text associated with the specified control, and then displays the ToolTip for the specified duration at the specified relative position.</summary>
      <param name="text">A <see cref="T:System.String" /> containing the new ToolTip text.</param>
      <param name="window">The <see cref="T:System.Windows.Forms.Control" /> to display the ToolTip for.</param>
      <param name="x">The horizontal offset, in pixels, relative to the upper-left corner of the associated control window, to display the ToolTip.</param>
      <param name="y">The vertical offset, in pixels, relative to the upper-left corner of the associated control window, to display the ToolTip.</param>
      <param name="duration">An <see cref="T:System.Int32" /> containing the duration, in milliseconds, to display the ToolTip.</param>
      <exception cref="T:System.ArgumentNullException">The <paramref name="window" /> parameter is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="duration" /> is less than or equal to 0.</exception>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.StopTimer">
      <summary>Stops the timer that hides displayed ToolTips.</summary>
    </member>
    <member name="M:System.Windows.Forms.ToolTip.ToString">
      <summary>Returns a string representation for this control.</summary>
      <returns>A <see cref="T:System.String" /> containing a description of the <see cref="T:System.Windows.Forms.ToolTip" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.Active">
      <summary>Gets or sets a value indicating whether the ToolTip is currently active.</summary>
      <returns>
        <see langword="true" /> if the ToolTip is currently active; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.AutomaticDelay">
      <summary>Gets or sets the automatic delay for the ToolTip.</summary>
      <returns>The automatic delay, in milliseconds. The default is 500.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.AutoPopDelay">
      <summary>Gets or sets the period of time the ToolTip remains visible if the pointer is stationary on a control with specified ToolTip text.</summary>
      <returns>The period of time, in milliseconds, that the <see cref="T:System.Windows.Forms.ToolTip" /> remains visible when the pointer is stationary on a control. The default value is 5000.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.BackColor">
      <summary>Gets or sets the background color for the ToolTip.</summary>
      <returns>The background <see cref="T:System.Drawing.Color" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.CreateParams">
      <summary>Gets the creation parameters for the ToolTip window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> containing the information needed to create the ToolTip.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.ForeColor">
      <summary>Gets or sets the foreground color for the ToolTip.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.InitialDelay">
      <summary>Gets or sets the time that passes before the ToolTip appears.</summary>
      <returns>The period of time, in milliseconds, that the pointer must remain stationary on a control before the ToolTip window is displayed.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.IsBalloon">
      <summary>Gets or sets a value indicating whether the ToolTip should use a balloon window.</summary>
      <returns>
        <see langword="true" /> if a balloon window should be used; otherwise, <see langword="false" /> if a standard rectangular window should be used. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.OwnerDraw">
      <summary>Gets or sets a value indicating whether the ToolTip is drawn by the operating system or by code that you provide.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.ToolTip" /> is drawn by code that you provide; <see langword="false" /> if the <see cref="T:System.Windows.Forms.ToolTip" /> is drawn by the operating system. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.ReshowDelay">
      <summary>Gets or sets the length of time that must transpire before subsequent ToolTip windows appear as the pointer moves from one control to another.</summary>
      <returns>The length of time, in milliseconds, that it takes subsequent ToolTip windows to appear.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.ShowAlways">
      <summary>Gets or sets a value indicating whether a ToolTip window is displayed, even when its parent control is not active.</summary>
      <returns>
        <see langword="true" /> if the ToolTip is always displayed; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.StripAmpersands">
      <summary>Gets or sets a value that determines how ampersand (&amp;) characters are treated.</summary>
      <returns>
        <see langword="true" /> if ampersand characters are stripped from the ToolTip text; otherwise, <see langword="false" />. The default is false.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.Tag">
      <summary>Gets or sets the object that contains programmer-supplied data associated with the <see cref="T:System.Windows.Forms.ToolTip" />.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the <see cref="T:System.Windows.Forms.ToolTip" />. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.ToolTipIcon">
      <summary>Gets or sets a value that defines the type of icon to be displayed alongside the ToolTip text.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ToolTipIcon" /> enumerated values.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.ToolTipTitle">
      <summary>Gets or sets a title for the ToolTip window.</summary>
      <returns>A <see cref="T:System.String" /> containing the window title.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.UseAnimation">
      <summary>Gets or sets a value determining whether an animation effect should be used when displaying the ToolTip.</summary>
      <returns>
        <see langword="true" /> if window animation should be used; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.ToolTip.UseFading">
      <summary>Gets or sets a value determining whether a fade effect should be used when displaying the ToolTip.</summary>
      <returns>
        <see langword="true" /> if window fading should be used; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.ToolTipIcon">
      <summary>Defines a set of standardized icons that can be associated with a ToolTip.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolTipIcon.Error">
      <summary>An error icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolTipIcon.Info">
      <summary>An information icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolTipIcon.None">
      <summary>Not a standard icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.ToolTipIcon.Warning">
      <summary>A warning icon.</summary>
    </member>
    <member name="T:System.Windows.Forms.TrackBar">
      <summary>Represents a standard Windows track bar.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TrackBar.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.BackgroundImageChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TrackBar.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TrackBar.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.Click">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.TrackBar" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.DoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.TrackBar" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.FontChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TrackBar.Font" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.ForeColorChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TrackBar.ForeColor" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.ImeModeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TrackBar.ImeMode" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.MouseClick">
      <summary>Occurs when the user clicks the <see cref="T:System.Windows.Forms.TrackBar" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.MouseDoubleClick">
      <summary>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.TrackBar" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TrackBar.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.Paint">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.TrackBar" /> control is drawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.RightToLeftLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TrackBar.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.Scroll">
      <summary>Occurs when either a mouse or keyboard action moves the scroll box.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.TextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TrackBar.Text" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TrackBar.ValueChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TrackBar.Value" /> property of a track bar changes, either by movement of the scroll box or by manipulation in code.</summary>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TrackBar" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.BeginInit">
      <summary>Begins the initialization of a <see cref="T:System.Windows.Forms.TrackBar" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.TrackBar.CreateHandle">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.CreateHandle" /> method.</summary>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.EndInit">
      <summary>Ends the initialization of a <see cref="T:System.Windows.Forms.TrackBar" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.OnHandleCreated(System.EventArgs)">
      <summary>Use the <see cref="M:System.Windows.Forms.Control.OnHandleCreated(System.EventArgs)" /> method.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.OnRightToLeftLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TrackBar.RightToLeftLayoutChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.OnScroll(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TrackBar.Scroll" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.OnSystemColorsChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.SystemColorsChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.OnValueChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TrackBar.ValueChanged" /> event.</summary>
      <param name="e">The <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
      <summary>Performs the work of setting the specified bounds of this control.</summary>
      <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
      <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
      <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
      <param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
      <param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.SetRange(System.Int32,System.Int32)">
      <summary>Sets the minimum and maximum values for a <see cref="T:System.Windows.Forms.TrackBar" />.</summary>
      <param name="minValue">The lower limit of the range of the track bar.</param>
      <param name="maxValue">The upper limit of the range of the track bar.</param>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.ToString">
      <summary>Returns a string that represents the <see cref="T:System.Windows.Forms.TrackBar" /> control.</summary>
      <returns>A string that represents the current <see cref="T:System.Windows.Forms.TrackBar" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TrackBar.WndProc(System.Windows.Forms.Message@)">
      <summary>Overrides the <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" /> method.</summary>
      <param name="m">A Windows Message object.</param>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.AutoSize">
      <summary>Gets or sets a value indicating whether the height or width of the track bar is being automatically sized.</summary>
      <returns>
        <see langword="true" /> if the track bar is being automatically sized; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.BackgroundImage">
      <summary>Gets or sets the background image for the <see cref="T:System.Windows.Forms.TrackBar" /> control.</summary>
      <returns>The <see cref="T:System.Drawing.Image" /> that is the background image for the <see cref="T:System.Windows.Forms.TrackBar" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.BackgroundImageLayout">
      <summary>Gets or sets an <see cref="T:System.Windows.Forms.ImageLayout" /> value; however, setting this property has no effect on the <see cref="T:System.Windows.Forms.TrackBar" /> control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.CreateParams">
      <summary>Overrides the <see cref="P:System.Windows.Forms.Control.CreateParams" /> property.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.DefaultImeMode">
      <summary>Gets a value indicating the mode for the Input Method Editor (IME) for the <see cref="T:System.Windows.Forms.TrackBar" />.</summary>
      <returns>Always <see cref="F:System.Windows.Forms.ImeMode.Disable" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.DefaultSize">
      <summary>Gets the default size of the <see cref="T:System.Windows.Forms.TrackBar" />.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> representing the default size of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.DoubleBuffered">
      <summary>Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker; however, this property has no effect on the <see cref="T:System.Windows.Forms.TrackBar" /> control.</summary>
      <returns>
        <see langword="true" /> if the control has a secondary buffer; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.Font">
      <summary>Overrides <see cref="P:System.Windows.Forms.Control.Font" />.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> to apply to the text displayed by the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultFont" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.ForeColor">
      <summary>Gets the foreground color of the track bar.</summary>
      <returns>Always <see cref="P:System.Drawing.SystemColors.WindowText" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.ImeMode">
      <summary>Gets or sets the Input Method Editor (IME) mode supported by this control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImeMode" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.LargeChange">
      <summary>Gets or sets a value to be added to or subtracted from the <see cref="P:System.Windows.Forms.TrackBar.Value" /> property when the scroll box is moved a large distance.</summary>
      <exception cref="T:System.ArgumentException">The assigned value is less than 0.</exception>
      <returns>A numeric value. The default is 5.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.Maximum">
      <summary>Gets or sets the upper limit of the range this <see cref="T:System.Windows.Forms.TrackBar" /> is working with.</summary>
      <returns>The maximum value for the <see cref="T:System.Windows.Forms.TrackBar" />. The default is 10.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.Minimum">
      <summary>Gets or sets the lower limit of the range this <see cref="T:System.Windows.Forms.TrackBar" /> is working with.</summary>
      <returns>The minimum value for the <see cref="T:System.Windows.Forms.TrackBar" />. The default is 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.Orientation">
      <summary>Gets or sets a value indicating the horizontal or vertical orientation of the track bar.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.Orientation" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.Orientation" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.Padding">
      <summary>Gets or sets the space between the edges of a <see cref="T:System.Windows.Forms.TrackBar" /> control and its contents.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> object.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.RightToLeftLayout">
      <summary>Gets or sets a value indicating whether the contents of the <see cref="T:System.Windows.Forms.TrackBar" /> will be laid out from right to left.</summary>
      <returns>
        <see langword="true" /> if the contents of the <see cref="T:System.Windows.Forms.TrackBar" /> are laid out from right to left; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.SmallChange">
      <summary>Gets or sets the value added to or subtracted from the <see cref="P:System.Windows.Forms.TrackBar.Value" /> property when the scroll box is moved a small distance.</summary>
      <exception cref="T:System.ArgumentException">The assigned value is less than 0.</exception>
      <returns>A numeric value. The default value is 1.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.Text">
      <summary>Gets or sets the text of the <see cref="T:System.Windows.Forms.TrackBar" />.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.TickFrequency">
      <summary>Gets or sets a value that specifies the delta between ticks drawn on the control.</summary>
      <returns>The numeric value representing the delta between ticks. The default is 1.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.TickStyle">
      <summary>Gets or sets a value indicating how to display the tick marks on the track bar.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not a valid <see cref="T:System.Windows.Forms.TickStyle" />.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.TickStyle" /> values. The default is <see cref="F:System.Windows.Forms.TickStyle.BottomRight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBar.Value">
      <summary>Gets or sets a numeric value that represents the current position of the scroll box on the track bar.</summary>
      <exception cref="T:System.ArgumentException">The assigned value is less than the value of <see cref="P:System.Windows.Forms.TrackBar.Minimum" />.  
  
 -or-  
  
 The assigned value is greater than the value of <see cref="P:System.Windows.Forms.TrackBar.Maximum" />.</exception>
      <returns>A numeric value that is within the <see cref="P:System.Windows.Forms.TrackBar.Minimum" /> and <see cref="P:System.Windows.Forms.TrackBar.Maximum" /> range. The default value is 0.</returns>
    </member>
    <member name="T:System.Windows.Forms.TrackBarRenderer">
      <summary>Provides methods used to render a track bar control with visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawBottomPointingThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Draws a downward-pointing track bar slider (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the track bar slider.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the track bar slider.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the track bar slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Draws a horizontal track bar slider (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the track bar slider.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the track bar slider.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the track bar slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawHorizontalTicks(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.VisualStyles.EdgeStyle)">
      <summary>Draws the specified number of horizontal track bar ticks with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the ticks.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the ticks.</param>
      <param name="numTicks">The number of ticks to draw.</param>
      <param name="edgeStyle">One of the <see cref="T:System.Windows.Forms.VisualStyles.EdgeStyle" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawHorizontalTrack(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws the track for a horizontal track bar with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the track.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the track.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawLeftPointingThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Draws a left-pointing track bar slider (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the track bar slider.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the track bar slider.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the track bar slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawRightPointingThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Draws a right-pointing track bar slider (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the track bar slider.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the track bar slider.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the track bar slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawTopPointingThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Draws an upward-pointing track bar slider (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the track bar slider.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the track bar slider.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the track bar slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawVerticalThumb(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Draws a vertical track bar slider (also known as the thumb) with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the track bar slider.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the track bar slider.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the track bar slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawVerticalTicks(System.Drawing.Graphics,System.Drawing.Rectangle,System.Int32,System.Windows.Forms.VisualStyles.EdgeStyle)">
      <summary>Draws the specified number of vertical track bar ticks with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the ticks.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the ticks.</param>
      <param name="numTicks">The number of ticks to draw.</param>
      <param name="edgeStyle">One of the <see cref="T:System.Windows.Forms.VisualStyles.EdgeStyle" /> values.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.DrawVerticalTrack(System.Drawing.Graphics,System.Drawing.Rectangle)">
      <summary>Draws the track for a vertical track bar with visual styles.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the track.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the track.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.GetBottomPointingThumbSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Returns the size, in pixels, of the track bar slider (also known as the thumb) that points down.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> this operation will use.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the track bar slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the size, in pixels, of the slider.</returns>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.GetLeftPointingThumbSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Returns the size, in pixels, of the track bar slider (also known as the thumb) that points to the left.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> this operation will use.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the size, in pixels, of the slider.</returns>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.GetRightPointingThumbSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Returns the size, in pixels, of the track bar slider (also known as the thumb) that points to the right.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> this operation will use.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the size, in pixels, of the slider.</returns>
    </member>
    <member name="M:System.Windows.Forms.TrackBarRenderer.GetTopPointingThumbSize(System.Drawing.Graphics,System.Windows.Forms.VisualStyles.TrackBarThumbState)">
      <summary>Returns the size, in pixels, of the track bar slider (also known as the thumb) that points up.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> this operation will use.</param>
      <param name="state">One of the <see cref="T:System.Windows.Forms.VisualStyles.TrackBarThumbState" /> values that specifies the visual state of the slider.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that specifies the size, in pixels, of the slider.</returns>
    </member>
    <member name="P:System.Windows.Forms.TrackBarRenderer.IsSupported">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.TrackBarRenderer" /> class can be used to draw a track bar with visual styles.</summary>
      <returns>
        <see langword="true" /> if the user has enabled visual styles in the operating system and visual styles are applied to the client area of application windows; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeNode">
      <summary>Represents a node of a <see cref="T:System.Windows.Forms.TreeView" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeNode" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeNode" /> class using the specified serialization information and context.</summary>
      <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the data to deserialize the class.</param>
      <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source and destination of the serialized stream.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.#ctor(System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeNode" /> class with the specified label text.</summary>
      <param name="text">The label <see cref="P:System.Windows.Forms.TreeNode.Text" /> of the new tree node.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.#ctor(System.String,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeNode" /> class with the specified label text and images to display when the tree node is in a selected and unselected state.</summary>
      <param name="text">The label <see cref="P:System.Windows.Forms.TreeNode.Text" /> of the new tree node.</param>
      <param name="imageIndex">The index value of <see cref="T:System.Drawing.Image" /> to display when the tree node is unselected.</param>
      <param name="selectedImageIndex">The index value of <see cref="T:System.Drawing.Image" /> to display when the tree node is selected.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.#ctor(System.String,System.Int32,System.Int32,System.Windows.Forms.TreeNode[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeNode" /> class with the specified label text, child tree nodes, and images to display when the tree node is in a selected and unselected state.</summary>
      <param name="text">The label <see cref="P:System.Windows.Forms.TreeNode.Text" /> of the new tree node.</param>
      <param name="imageIndex">The index value of <see cref="T:System.Drawing.Image" /> to display when the tree node is unselected.</param>
      <param name="selectedImageIndex">The index value of <see cref="T:System.Drawing.Image" /> to display when the tree node is selected.</param>
      <param name="children">An array of child <see cref="T:System.Windows.Forms.TreeNode" /> objects.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.#ctor(System.String,System.Windows.Forms.TreeNode[])">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeNode" /> class with the specified label text and child tree nodes.</summary>
      <param name="text">The label <see cref="P:System.Windows.Forms.TreeNode.Text" /> of the new tree node.</param>
      <param name="children">An array of child <see cref="T:System.Windows.Forms.TreeNode" /> objects.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.BeginEdit">
      <summary>Initiates the editing of the tree node label.</summary>
      <exception cref="T:System.InvalidOperationException">
        <see cref="P:System.Windows.Forms.TreeView.LabelEdit" /> is set to <see langword="false" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.Clone">
      <summary>Copies the tree node and the entire subtree rooted at this tree node.</summary>
      <returns>The <see cref="T:System.Object" /> that represents the cloned <see cref="T:System.Windows.Forms.TreeNode" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.Collapse">
      <summary>Collapses the tree node.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.Collapse(System.Boolean)">
      <summary>Collapses the <see cref="T:System.Windows.Forms.TreeNode" /> and optionally collapses its children.</summary>
      <param name="ignoreChildren">
        <see langword="true" /> to leave the child nodes in their current state; <see langword="false" /> to collapse the child nodes.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.Deserialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Loads the state of the <see cref="T:System.Windows.Forms.TreeNode" /> from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" />.</summary>
      <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that describes the <see cref="T:System.Windows.Forms.TreeNode" />.</param>
      <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that indicates the state of the stream during deserialization.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.EndEdit(System.Boolean)">
      <summary>Ends the editing of the tree node label.</summary>
      <param name="cancel">
        <see langword="true" /> if the editing of the tree node label text was canceled without being saved; otherwise, <see langword="false" />.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.EnsureVisible">
      <summary>Ensures that the tree node is visible, expanding tree nodes and scrolling the tree view control as necessary.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.Expand">
      <summary>Expands the tree node.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.ExpandAll">
      <summary>Expands all the child tree nodes.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.FromHandle(System.Windows.Forms.TreeView,System.IntPtr)">
      <summary>Returns the tree node with the specified handle and assigned to the specified tree view control.</summary>
      <param name="tree">The <see cref="T:System.Windows.Forms.TreeView" /> that contains the tree node.</param>
      <param name="handle">The handle of the tree node.</param>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the tree node assigned to the specified <see cref="T:System.Windows.Forms.TreeView" /> control with the specified handle.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.GetNodeCount(System.Boolean)">
      <summary>Returns the number of child tree nodes.</summary>
      <param name="includeSubTrees">
        <see langword="true" /> if the resulting count includes all tree nodes indirectly rooted at this tree node; otherwise, <see langword="false" />.</param>
      <returns>The number of child tree nodes assigned to the <see cref="P:System.Windows.Forms.TreeNode.Nodes" /> collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.Remove">
      <summary>Removes the current tree node from the tree view control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.Serialize(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Saves the state of the <see cref="T:System.Windows.Forms.TreeNode" /> to the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" />.</summary>
      <param name="si">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that describes the <see cref="T:System.Windows.Forms.TreeNode" />.</param>
      <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that indicates the state of the stream during serialization.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
      <param name="si">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the data to serialize the <see cref="T:System.Windows.Forms.TreeNode" />.</param>
      <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the destination information for this serialization.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.Toggle">
      <summary>Toggles the tree node to either the expanded or collapsed state.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNode.ToString">
      <summary>Returns a string that represents the current object.</summary>
      <returns>A string that represents the current object.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.BackColor">
      <summary>Gets or sets the background color of the tree node.</summary>
      <returns>The background <see cref="T:System.Drawing.Color" /> of the tree node. The default is <see cref="F:System.Drawing.Color.Empty" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Bounds">
      <summary>Gets the bounds of the tree node.</summary>
      <returns>The <see cref="T:System.Drawing.Rectangle" /> that represents the bounds of the tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Checked">
      <summary>Gets or sets a value indicating whether the tree node is in a checked state.</summary>
      <returns>
        <see langword="true" /> if the tree node is in a checked state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.ContextMenuStrip">
      <summary>Gets or sets the shortcut menu associated with this tree node.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with the tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.FirstNode">
      <summary>Gets the first child tree node in the tree node collection.</summary>
      <returns>The first child <see cref="T:System.Windows.Forms.TreeNode" /> in the <see cref="P:System.Windows.Forms.TreeNode.Nodes" /> collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.ForeColor">
      <summary>Gets or sets the foreground color of the tree node.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.FullPath">
      <summary>Gets the path from the root tree node to the current tree node.</summary>
      <exception cref="T:System.InvalidOperationException">The node is not contained in a <see cref="T:System.Windows.Forms.TreeView" />.</exception>
      <returns>The path from the root tree node to the current tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Handle">
      <summary>Gets the handle of the tree node.</summary>
      <returns>The tree node handle.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.ImageIndex">
      <summary>Gets or sets the image list index value of the image displayed when the tree node is in the unselected state.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">.NET 5 and later: <paramref name="value" /> is less than -2.</exception>
      <returns>A zero-based index value that represents the image position in the assigned <see cref="T:System.Windows.Forms.ImageList" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.ImageKey">
      <summary>Gets or sets the key for the image associated with this tree node when the node is in an unselected state.</summary>
      <returns>The key for the image associated with this tree node when the node is in an unselected state.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Index">
      <summary>Gets the position of the tree node in the tree node collection.</summary>
      <returns>A zero-based index value that represents the position of the tree node in the <see cref="P:System.Windows.Forms.TreeNode.Nodes" /> collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.IsEditing">
      <summary>Gets a value indicating whether the tree node is in an editable state.</summary>
      <returns>
        <see langword="true" /> if the tree node is in editable state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.IsExpanded">
      <summary>Gets a value indicating whether the tree node is in the expanded state.</summary>
      <returns>
        <see langword="true" /> if the tree node is in the expanded state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.IsSelected">
      <summary>Gets a value indicating whether the tree node is in the selected state.</summary>
      <returns>
        <see langword="true" /> if the tree node is in the selected state; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.IsVisible">
      <summary>Gets a value indicating whether the tree node is visible or partially visible.</summary>
      <returns>
        <see langword="true" /> if the tree node is visible or partially visible; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.LastNode">
      <summary>Gets the last child tree node.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the last child tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Level">
      <summary>Gets the zero-based depth of the tree node in the <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
      <returns>The zero-based depth of the tree node in the <see cref="T:System.Windows.Forms.TreeView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Name">
      <summary>Gets or sets the name of the tree node.</summary>
      <returns>A <see cref="T:System.String" /> that represents the name of the tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.NextNode">
      <summary>Gets the next sibling tree node.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the next sibling tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.NextVisibleNode">
      <summary>Gets the next visible tree node.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the next visible tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.NodeFont">
      <summary>Gets or sets the font that is used to display the text on the tree node label.</summary>
      <returns>The <see cref="T:System.Drawing.Font" /> that is used to display the text on the tree node label.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Nodes">
      <summary>Gets the collection of <see cref="T:System.Windows.Forms.TreeNode" /> objects assigned to the current tree node.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNodeCollection" /> that represents the tree nodes assigned to the current tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Parent">
      <summary>Gets the parent tree node of the current tree node.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the parent of the current tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.PrevNode">
      <summary>Gets the previous sibling tree node.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the previous sibling tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.PrevVisibleNode">
      <summary>Gets the previous visible tree node.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the previous visible tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.SelectedImageIndex">
      <summary>Gets or sets the image list index value of the image that is displayed when the tree node is in the selected state.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">.NET 5 and later: <paramref name="value" /> is less than -2.</exception>
      <returns>A zero-based index value that represents the image position in an <see cref="T:System.Windows.Forms.ImageList" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.SelectedImageKey">
      <summary>Gets or sets the key of the image displayed in the tree node when it is in a selected state.</summary>
      <returns>The key of the image displayed when the tree node is in a selected state.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.StateImageIndex">
      <summary>Gets or sets the index of the image that is used to indicate the state of the <see cref="T:System.Windows.Forms.TreeNode" /> when the parent <see cref="T:System.Windows.Forms.TreeView" /> has its <see cref="P:System.Windows.Forms.TreeView.CheckBoxes" /> property set to <see langword="false" />.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified index is less than -1 or greater than 14.</exception>
      <returns>The index of the image that is used to indicate the state of the <see cref="T:System.Windows.Forms.TreeNode" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.StateImageKey">
      <summary>Gets or sets the key of the image that is used to indicate the state of the <see cref="T:System.Windows.Forms.TreeNode" /> when the parent <see cref="T:System.Windows.Forms.TreeView" /> has its <see cref="P:System.Windows.Forms.TreeView.CheckBoxes" /> property set to <see langword="false" />.</summary>
      <returns>The key of the image that is used to indicate the state of the <see cref="T:System.Windows.Forms.TreeNode" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Tag">
      <summary>Gets or sets the object that contains data about the tree node.</summary>
      <returns>An <see cref="T:System.Object" /> that contains data about the tree node. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.Text">
      <summary>Gets or sets the text displayed in the label of the tree node.</summary>
      <returns>The text displayed in the label of the tree node.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.ToolTipText">
      <summary>Gets or sets the text that appears when the mouse pointer hovers over a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
      <returns>Gets the text that appears when the mouse pointer hovers over a <see cref="T:System.Windows.Forms.TreeNode" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNode.TreeView">
      <summary>Gets the parent tree view that the tree node is assigned to.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeView" /> that represents the parent tree view that the tree node is assigned to, or <see langword="null" /> if the node has not been assigned to a tree view.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeNodeCollection">
      <summary>Represents a collection of <see cref="T:System.Windows.Forms.TreeNode" /> objects.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Add(System.String)">
      <summary>Adds a new tree node with the specified label text to the end of the current tree node collection.</summary>
      <param name="text">The label text displayed by the <see cref="T:System.Windows.Forms.TreeNode" />.</param>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the tree node being added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String)">
      <summary>Creates a new tree node with the specified key and text, and adds it to the collection.</summary>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String,System.Int32)">
      <summary>Creates a tree node with the specified key, text, and image, and adds it to the collection.</summary>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <param name="imageIndex">The index of the image to display in the tree node.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String,System.Int32,System.Int32)">
      <summary>Creates a tree node with the specified key, text, and images, and adds it to the collection.</summary>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <param name="imageIndex">The index of the image to display in the tree node.</param>
      <param name="selectedImageIndex">The index of the image to be displayed in the tree node when it is in a selected state.</param>
      <returns>The tree node that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String,System.String)">
      <summary>Creates a tree node with the specified key, text, and image, and adds it to the collection.</summary>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <param name="imageKey">The image to display in the tree node.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Add(System.String,System.String,System.String,System.String)">
      <summary>Creates a tree node with the specified key, text, and images, and adds it to the collection.</summary>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <param name="imageKey">The key of the image to display in the tree node.</param>
      <param name="selectedImageKey">The key of the image to display when the node is in a selected state.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was added to the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Add(System.Windows.Forms.TreeNode)">
      <summary>Adds a previously created tree node to the end of the tree node collection.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> to add to the collection.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="node" /> is currently assigned to another <see cref="T:System.Windows.Forms.TreeView" />.</exception>
      <returns>The zero-based index value of the <see cref="T:System.Windows.Forms.TreeNode" /> added to the tree node collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.AddRange(System.Windows.Forms.TreeNode[])">
      <summary>Adds an array of previously created tree nodes to the collection.</summary>
      <param name="nodes">An array of <see cref="T:System.Windows.Forms.TreeNode" /> objects representing the tree nodes to add to the collection.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="nodes" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="nodes" /> is the child of another <see cref="T:System.Windows.Forms.TreeView" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Clear">
      <summary>Removes all tree nodes from the collection.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Contains(System.Windows.Forms.TreeNode)">
      <summary>Determines whether the specified tree node is a member of the collection.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> to locate in the collection.</param>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.TreeNode" /> is a member of the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.ContainsKey(System.String)">
      <summary>Determines whether the collection contains a tree node with the specified key.</summary>
      <param name="key">The name of the <see cref="T:System.Windows.Forms.TreeNode" /> to search for.</param>
      <returns>
        <see langword="true" /> to indicate the collection contains a <see cref="T:System.Windows.Forms.TreeNode" /> with the specified key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.CopyTo(System.Array,System.Int32)">
      <summary>Copies the entire collection into an existing array at a specified location within the array.</summary>
      <param name="dest">The destination array.</param>
      <param name="index">The index in the destination array at which storing begins.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Find(System.String,System.Boolean)">
      <summary>Finds the tree nodes with specified key, optionally searching subnodes.</summary>
      <param name="key">The name of the tree node to search for.</param>
      <param name="searchAllChildren">
        <see langword="true" /> to search child nodes of tree nodes; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="key" /> is <see langword="null" /> or empty.</exception>
      <returns>An array of <see cref="T:System.Windows.Forms.TreeNode" /> objects whose <see cref="P:System.Windows.Forms.TreeNode.Name" /> property matches the specified key.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.GetEnumerator">
      <summary>Returns an enumerator that can be used to iterate through the tree node collection.</summary>
      <returns>An <see cref="T:System.Collections.IEnumerator" /> that represents the tree node collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.IndexOf(System.Windows.Forms.TreeNode)">
      <summary>Returns the index of the specified tree node in the collection.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> to locate in the collection.</param>
      <returns>The zero-based index of the item found in the tree node collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.IndexOfKey(System.String)">
      <summary>Returns the index of the first occurrence of a tree node with the specified key.</summary>
      <param name="key">The name of the tree node to search for.</param>
      <returns>The zero-based index of the first occurrence of a tree node with the specified key, if found; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String)">
      <summary>Creates a tree node with the specified text and inserts it at the specified index.</summary>
      <param name="index">The location within the collection to insert the node.</param>
      <param name="text">The text to display in the tree node.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was inserted in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String)">
      <summary>Creates a tree node with the specified text and key, and inserts it into the collection.</summary>
      <param name="index">The location within the collection to insert the node.</param>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was inserted in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String,System.Int32)">
      <summary>Creates a tree node with the specified key, text, and image, and inserts it into the collection at the specified index.</summary>
      <param name="index">The location within the collection to insert the node.</param>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <param name="imageIndex">The index of the image to display in the tree node.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was inserted in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String,System.Int32,System.Int32)">
      <summary>Creates a tree node with the specified key, text, and images, and inserts it into the collection at the specified index.</summary>
      <param name="index">The location within the collection to insert the node.</param>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <param name="imageIndex">The index of the image to display in the tree node.</param>
      <param name="selectedImageIndex">The index of the image to display in the tree node when it is in a selected state.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was inserted in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String,System.String)">
      <summary>Creates a tree node with the specified key, text, and image, and inserts it into the collection at the specified index.</summary>
      <param name="index">The location within the collection to insert the node.</param>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <param name="imageKey">The key of the image to display in the tree node.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was inserted in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.String,System.String,System.String,System.String)">
      <summary>Creates a tree node with the specified key, text, and images, and inserts it into the collection at the specified index.</summary>
      <param name="index">The location within the collection to insert the node.</param>
      <param name="key">The name of the tree node.</param>
      <param name="text">The text to display in the tree node.</param>
      <param name="imageKey">The key of the image to display in the tree node.</param>
      <param name="selectedImageKey">The key of the image to display in the tree node when it is in a selected state.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was inserted in the collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Insert(System.Int32,System.Windows.Forms.TreeNode)">
      <summary>Inserts an existing tree node into the tree node collection at the specified location.</summary>
      <param name="index">The indexed location within the collection to insert the tree node.</param>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> to insert into the collection.</param>
      <exception cref="T:System.ArgumentException">The <paramref name="node" /> is currently assigned to another <see cref="T:System.Windows.Forms.TreeView" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.Remove(System.Windows.Forms.TreeNode)">
      <summary>Removes the specified tree node from the tree node collection.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.RemoveAt(System.Int32)">
      <summary>Removes a tree node from the tree node collection at a specified index.</summary>
      <param name="index">The index of the <see cref="T:System.Windows.Forms.TreeNode" /> to remove.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.RemoveByKey(System.String)">
      <summary>Removes the tree node with the specified key from the collection.</summary>
      <param name="key">The name of the tree node to remove from the collection.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Add(System.Object)">
      <summary>Adds an object to the end of the tree node collection.</summary>
      <param name="node">The object to add to the tree node collection.</param>
      <exception cref="T:System.Exception">
        <paramref name="node" /> is currently assigned to another <see cref="T:System.Windows.Forms.TreeView" /> control.</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="node" /> is <see langword="null" />.</exception>
      <returns>The zero-based index value of the <see cref="T:System.Windows.Forms.TreeNode" /> that was added to the tree node collection.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Contains(System.Object)">
      <summary>Determines whether the specified tree node is a member of the collection.</summary>
      <param name="node">The object to find in the collection.</param>
      <returns>
        <see langword="true" /> if <paramref name="node" /> is a member of the collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#IndexOf(System.Object)">
      <summary>Returns the index of the specified tree node in the collection.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> to locate in the collection.</param>
      <returns>The zero-based index of the item found in the tree node collection; otherwise, -1.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
      <summary>Inserts an existing tree node in the tree node collection at the specified location.</summary>
      <param name="index">The indexed location within the collection to insert the tree node.</param>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> to insert into the collection.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="node" /> is currently assigned to another <see cref="T:System.Windows.Forms.TreeView" />.  
  
 -or-  
  
 <paramref name="node" /> is not a <see cref="T:System.Windows.Forms.TreeNode" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Remove(System.Object)">
      <summary>Removes the specified tree node from the tree node collection.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> to remove from the collection.</param>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeCollection.Count">
      <summary>Gets the total number of <see cref="T:System.Windows.Forms.TreeNode" /> objects in the collection.</summary>
      <returns>The total number of <see cref="T:System.Windows.Forms.TreeNode" /> objects in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeCollection.IsReadOnly">
      <summary>Gets a value indicating whether the collection is read-only.</summary>
      <returns>
        <see langword="true" /> if the collection is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeCollection.Item(System.Int32)">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.TreeNode" /> at the specified indexed location in the collection.</summary>
      <param name="index">The indexed location of the <see cref="T:System.Windows.Forms.TreeNode" /> in the collection.</param>
      <exception cref="T:System.ArgumentNullException">.NET 6 and later versions: <paramref name="index" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="index" /> value is less than 0 or is greater than the last index in the collection.</exception>
      <exception cref="T:System.ArgumentException">The <see cref="T:System.Windows.Forms.TreeNode" /> that's being assigned to this index is already assigned to a different index or to a different <see cref="T:System.Windows.Forms.TreeView" /> control.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> at the specified indexed location in the collection.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeCollection.Item(System.String)">
      <summary>Gets the tree node with the specified key from the collection.</summary>
      <param name="key">The name of the <see cref="T:System.Windows.Forms.TreeNode" /> to retrieve from the collection.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> with the specified key.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeCollection.System#Collections#ICollection#IsSynchronized">
      <summary>Gets a value indicating whether access to the collection is synchronized (thread safe).</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeCollection.System#Collections#ICollection#SyncRoot">
      <summary>Gets an object that can be used to synchronize access to the collection.</summary>
      <returns>An object that can be used to synchronize access to the <see cref="T:System.Windows.Forms.TreeNodeCollection" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#IsFixedSize">
      <summary>Gets a value indicating whether the tree node collection has a fixed size.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeCollection.System#Collections#IList#Item(System.Int32)">
      <summary>Gets or sets the tree node at the specified index in the collection.</summary>
      <param name="index">The zero-based index at which to get or set the item.</param>
      <exception cref="T:System.ArgumentException">The value set is not a <see cref="T:System.Windows.Forms.TreeNode" />.</exception>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> at the specified index in the <see cref="T:System.Windows.Forms.TreeNodeCollection" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeNodeConverter">
      <summary>Provides a type converter to convert <see cref="T:System.Windows.Forms.TreeNode" /> objects to and from various other representations.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeNodeConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
      <summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to.</param>
      <returns>
        <see langword="true" /> if this converter can perform the conversion; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the given value object to the specified type, using the specified context and culture information.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" />. If null is passed, the current culture is assumed.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <param name="destinationType">The <see cref="T:System.Type" /> to convert the value parameter to.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeNodeMouseClickEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TreeView.NodeMouseClick" /> and <see cref="E:System.Windows.Forms.TreeView.NodeMouseDoubleClick" /> events.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeMouseClickEventArgs.#ctor(System.Windows.Forms.TreeNode,System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeNodeMouseClickEventArgs" /> class.</summary>
      <param name="node">The node that was clicked.</param>
      <param name="button">One of the <see cref="T:System.Windows.Forms.MouseButtons" /> members.</param>
      <param name="clicks">The number of clicks that occurred.</param>
      <param name="x">The x-coordinate where the click occurred.</param>
      <param name="y">The y-coordinate where the click occurred.</param>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeMouseClickEventArgs.Node">
      <summary>Gets the node that was clicked.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that was clicked.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeNodeMouseClickEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.TreeView.NodeMouseClick" /> and <see cref="E:System.Windows.Forms.TreeView.NodeMouseDoubleClick" /> events of a <see cref="T:System.Windows.Forms.TreeView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeNodeMouseClickEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.TreeNodeMouseHoverEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TreeView.NodeMouseHover" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeNodeMouseHoverEventArgs.#ctor(System.Windows.Forms.TreeNode)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeNodeMouseHoverEventArgs" /> class.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> the mouse pointer is currently resting on.</param>
    </member>
    <member name="P:System.Windows.Forms.TreeNodeMouseHoverEventArgs.Node">
      <summary>Gets the node the mouse pointer is currently resting on.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> the mouse pointer is currently resting on.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeNodeMouseHoverEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.TreeView.NodeMouseHover" /> event of a <see cref="T:System.Windows.Forms.TreeView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeNodeMouseHoverEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.TreeNodeStates">
      <summary>Defines constants that represent the possible states of a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeNodeStates.Checked">
      <summary>The node is checked.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeNodeStates.Default">
      <summary>The node is in its default state.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeNodeStates.Focused">
      <summary>The node has focus.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeNodeStates.Grayed">
      <summary>The node is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeNodeStates.Hot">
      <summary>The node is hot. This state occurs when the <see cref="P:System.Windows.Forms.TreeView.HotTracking" /> property is set to <see langword="true" /> and the mouse pointer is over the node.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeNodeStates.Indeterminate">
      <summary>The node in an indeterminate state.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeNodeStates.Marked">
      <summary>The node is marked.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeNodeStates.Selected">
      <summary>The node is selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeNodeStates.ShowKeyboardCues">
      <summary>The node should indicate a keyboard shortcut.</summary>
    </member>
    <member name="T:System.Windows.Forms.TreeView">
      <summary>Displays a hierarchical collection of labeled items, each represented by a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.AfterCheck">
      <summary>Occurs after the tree node check box is checked.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.AfterCollapse">
      <summary>Occurs after the tree node is collapsed.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.AfterExpand">
      <summary>Occurs after the tree node is expanded.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.AfterLabelEdit">
      <summary>Occurs after the tree node label text is edited.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.AfterSelect">
      <summary>Occurs after the tree node is selected.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.BackgroundImageChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TreeView.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.BackgroundImageLayoutChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TreeView.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.BeforeCheck">
      <summary>Occurs before the tree node check box is checked.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.BeforeCollapse">
      <summary>Occurs before the tree node is collapsed.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.BeforeExpand">
      <summary>Occurs before the tree node is expanded.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.BeforeLabelEdit">
      <summary>Occurs before the tree node label text is edited.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.BeforeSelect">
      <summary>Occurs before the tree node is selected.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.DrawNode">
      <summary>Occurs when a <see cref="T:System.Windows.Forms.TreeView" /> is drawn and the <see cref="P:System.Windows.Forms.TreeView.DrawMode" /> property is set to a <see cref="T:System.Windows.Forms.TreeViewDrawMode" /> value other than <see cref="F:System.Windows.Forms.TreeViewDrawMode.Normal" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.ItemDrag">
      <summary>Occurs when the user begins dragging a node.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.NodeMouseClick">
      <summary>Occurs when the user clicks a <see cref="T:System.Windows.Forms.TreeNode" /> with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.NodeMouseDoubleClick">
      <summary>Occurs when the user double-clicks a <see cref="T:System.Windows.Forms.TreeNode" /> with the mouse.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.NodeMouseHover">
      <summary>Occurs when the mouse hovers over a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TreeView.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.Paint">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.TreeView" /> is drawn.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.RightToLeftLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.TreeView.RightToLeftLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.TreeView.TextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.TreeView.Text" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeView.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeView" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeView.BeginUpdate">
      <summary>Disables any redrawing of the tree view.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeView.CollapseAll">
      <summary>Collapses all the tree nodes.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeView.CreateAccessibilityInstance">
      <summary>Creates the new instance of AccessibleObject for this TreeView control.</summary>
      <returns>The AccessibleObject for this TreeView instance.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeView.CreateHandle">
      <summary>Creates a handle for the control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeView.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.TreeView" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.EndUpdate">
      <summary>Enables the redrawing of the tree view.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeView.ExpandAll">
      <summary>Expands all the tree nodes.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeView.GetItemRenderStyles(System.Windows.Forms.TreeNode,System.Int32)">
      <summary>Returns an <see cref="T:System.Windows.Forms.OwnerDrawPropertyBag" /> for the specified <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> for which to return an <see cref="T:System.Windows.Forms.OwnerDrawPropertyBag" />.</param>
      <param name="state">The visible state of the <see cref="T:System.Windows.Forms.TreeNode" />.</param>
      <returns>An <see cref="T:System.Windows.Forms.OwnerDrawPropertyBag" /> for the specified <see cref="T:System.Windows.Forms.TreeNode" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeView.GetNodeAt(System.Drawing.Point)">
      <summary>Retrieves the tree node that is at the specified point.</summary>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> to evaluate and retrieve the node from.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> at the specified point, in tree view (client) coordinates, or <see langword="null" /> if there is no node at that location.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeView.GetNodeAt(System.Int32,System.Int32)">
      <summary>Retrieves the tree node at the point with the specified coordinates.</summary>
      <param name="x">The <see cref="P:System.Drawing.Point.X" /> position to evaluate and retrieve the node from.</param>
      <param name="y">The <see cref="P:System.Drawing.Point.Y" /> position to evaluate and retrieve the node from.</param>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> at the specified location, in tree view (client) coordinates, or <see langword="null" /> if there is no node at that location.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeView.GetNodeCount(System.Boolean)">
      <summary>Retrieves the number of tree nodes, optionally including those in all subtrees, assigned to the tree view control.</summary>
      <param name="includeSubTrees">
        <see langword="true" /> to count the <see cref="T:System.Windows.Forms.TreeNode" /> items that the subtrees contain; otherwise, <see langword="false" />.</param>
      <returns>The number of tree nodes, optionally including those in all subtrees, assigned to the tree view control.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeView.HitTest(System.Drawing.Point)">
      <summary>Provides node information, given a point.</summary>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> at which to retrieve node information.</param>
      <returns>The node information.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeView.HitTest(System.Int32,System.Int32)">
      <summary>Provides node information, given x- and y-coordinates.</summary>
      <param name="x">The x-coordinate at which to retrieve node information.</param>
      <param name="y">The y-coordinate at which to retrieve node information.</param>
      <returns>The node information.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeView.IsInputKey(System.Windows.Forms.Keys)">
      <summary>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</summary>
      <param name="keyData">One of the Keys values.</param>
      <returns>
        <see langword="true" /> if the specified key is a regular input key; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnAfterCheck(System.Windows.Forms.TreeViewEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.AfterCheck" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnAfterCollapse(System.Windows.Forms.TreeViewEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.AfterCollapse" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnAfterExpand(System.Windows.Forms.TreeViewEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.AfterExpand" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnAfterLabelEdit(System.Windows.Forms.NodeLabelEditEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.AfterLabelEdit" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.NodeLabelEditEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnAfterSelect(System.Windows.Forms.TreeViewEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.AfterSelect" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnBeforeCheck(System.Windows.Forms.TreeViewCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.BeforeCheck" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnBeforeCollapse(System.Windows.Forms.TreeViewCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.BeforeCollapse" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnBeforeExpand(System.Windows.Forms.TreeViewCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.BeforeExpand" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnBeforeLabelEdit(System.Windows.Forms.NodeLabelEditEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.BeforeLabelEdit" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.NodeLabelEditEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnBeforeSelect(System.Windows.Forms.TreeViewCancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.BeforeSelect" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnDrawNode(System.Windows.Forms.DrawTreeNodeEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.DrawNode" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.DrawTreeNodeEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnGotFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnHandleCreated(System.EventArgs)">
      <summary>Overrides <see cref="M:System.Windows.Forms.Control.OnHandleCreated(System.EventArgs)" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnHandleDestroyed(System.EventArgs)">
      <summary>Overrides <see cref="M:System.Windows.Forms.Control.OnHandleDestroyed(System.EventArgs)" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnItemDrag(System.Windows.Forms.ItemDragEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.ItemDrag" /> event.</summary>
      <param name="e">An <see cref="T:System.Windows.Forms.ItemDragEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnKeyUp(System.Windows.Forms.KeyEventArgs)">
      <summary>Overrides <see cref="M:System.Windows.Forms.Control.OnKeyUp(System.Windows.Forms.KeyEventArgs)" />.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnLostFocus(System.EventArgs)">
      <param name="e" />
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnMouseHover(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseHover" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnMouseLeave(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnNodeMouseClick(System.Windows.Forms.TreeNodeMouseClickEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.NodeMouseClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeNodeMouseClickEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnNodeMouseDoubleClick(System.Windows.Forms.TreeNodeMouseClickEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.NodeMouseDoubleClick" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeNodeMouseClickEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnNodeMouseHover(System.Windows.Forms.TreeNodeMouseHoverEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.NodeMouseHover" /> event.</summary>
      <param name="e">The <see cref="T:System.Windows.Forms.TreeNodeMouseHoverEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.OnRightToLeftLayoutChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.TreeView.RightToLeftLayoutChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeView.Sort">
      <summary>Sorts the items in <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeView.ToString">
      <summary>Returns a <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any. This method should not be overridden.</summary>
      <returns>A <see cref="T:System.String" /> containing the name of the <see cref="T:System.ComponentModel.Component" />, if any, or <see langword="null" /> if the <see cref="T:System.ComponentModel.Component" /> is unnamed.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeView.WndProc(System.Windows.Forms.Message@)">
      <summary>Overrides <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" />.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.TreeView.BackColor">
      <summary>Gets or sets the background color for the control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultBackColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.BackgroundImage">
      <summary>Gets or set the background image for the <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
      <returns>The <see cref="T:System.Drawing.Image" /> that is the background image for the <see cref="T:System.Windows.Forms.TreeView" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.BackgroundImageLayout">
      <summary>Gets or sets the layout of the background image for the <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values. The default is <see cref="F:System.Windows.Forms.ImageLayout.Tile" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.BorderStyle">
      <summary>Gets or sets the border style of the tree view control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see cref="F:System.Windows.Forms.BorderStyle.Fixed3D" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.CheckBoxes">
      <summary>Gets or sets a value indicating whether check boxes are displayed next to the tree nodes in the tree view control.</summary>
      <returns>
        <see langword="true" /> if a check box is displayed next to each tree node in the tree view control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>The creation parameters.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.DoubleBuffered">
      <summary>Gets or sets a value indicating whether the control should redraw its surface using a secondary buffer. The <see cref="P:System.Windows.Forms.TreeView.DoubleBuffered" /> property does not affect the <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
      <returns>
        <see langword="true" /> if the control uses a secondary buffer; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.DrawMode">
      <summary>Gets or sets the mode in which the control is drawn.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The property value is not a valid <see cref="T:System.Windows.Forms.TreeViewDrawMode" /> value.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.TreeViewDrawMode" /> values. The default is <see cref="F:System.Windows.Forms.TreeViewDrawMode.Normal" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.ForeColor">
      <summary>Gets or sets the foreground color of the control.</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the control. The default is the value of the <see cref="P:System.Windows.Forms.Control.DefaultForeColor" /> property.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.FullRowSelect">
      <summary>Gets or sets a value indicating whether the selection highlight spans the width of the tree view control.</summary>
      <returns>
        <see langword="true" /> if the selection highlight spans the width of the tree view control; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.HideSelection">
      <summary>Gets or sets a value indicating whether the selected tree node remains highlighted even when the tree view has lost the focus.</summary>
      <returns>
        <see langword="true" /> if the selected tree node is not highlighted when the tree view has lost the focus; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.HotTracking">
      <summary>Gets or sets a value indicating whether a tree node label takes on the appearance of a hyperlink as the mouse pointer passes over it.</summary>
      <returns>
        <see langword="true" /> if a tree node label takes on the appearance of a hyperlink as the mouse pointer passes over it; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.ImageIndex">
      <summary>Gets or sets the image-list index value of the default image that is displayed by the tree nodes.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The specified index is less than 0.</exception>
      <returns>A zero-based index that represents the position of an <see cref="T:System.Drawing.Image" /> in an <see cref="T:System.Windows.Forms.ImageList" />. The default is zero.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.ImageKey">
      <summary>Gets or sets the key of the default image for each node in the <see cref="T:System.Windows.Forms.TreeView" /> control when it is in an unselected state.</summary>
      <returns>The key of the default image shown for each node <see cref="T:System.Windows.Forms.TreeView" /> control when the node is in an unselected state.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.ImageList">
      <summary>Gets or sets the <see cref="T:System.Windows.Forms.ImageList" /> that contains the <see cref="T:System.Drawing.Image" /> objects that are used by the tree nodes.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ImageList" /> that contains the <see cref="T:System.Drawing.Image" /> objects that are used by the tree nodes. The default value is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.Indent">
      <summary>Gets or sets the distance to indent each child tree node level.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than 0.  
  
 -or-  
  
 The assigned value is greater than 32,000.</exception>
      <returns>The distance, in pixels, to indent each child tree node level. The default value is 19.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.ItemHeight">
      <summary>Gets or sets the height of each tree node in the tree view control.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">The assigned value is less than one.  
  
 -or-  
  
 The assigned value is greater than the <see cref="F:System.Int16.MaxValue">Int16.MaxValue</see> value.</exception>
      <returns>The height, in pixels, of each tree node in the tree view.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.LabelEdit">
      <summary>Gets or sets a value indicating whether the label text of the tree nodes can be edited.</summary>
      <returns>
        <see langword="true" /> if the label text of the tree nodes can be edited; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.LineColor">
      <summary>Gets or sets the color of the lines connecting the nodes of the <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
      <returns>The <see cref="T:System.Drawing.Color" /> of the lines connecting the tree nodes.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.Nodes">
      <summary>Gets the collection of tree nodes that are assigned to the tree view control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNodeCollection" /> that represents the tree nodes assigned to the tree view control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.Padding">
      <summary>Gets or sets the spacing between the <see cref="T:System.Windows.Forms.TreeView" /> control's contents and its edges.</summary>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> indicating the space between the control edges and its contents.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.PathSeparator">
      <summary>Gets or sets the delimiter string that the tree node path uses.</summary>
      <returns>The delimiter string that the tree node <see cref="P:System.Windows.Forms.TreeNode.FullPath" /> property uses. The default is the backslash character (\).</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.RightToLeftLayout">
      <summary>Gets or sets a value that indicates whether the <see cref="T:System.Windows.Forms.TreeView" /> should be laid out from right-to-left.</summary>
      <returns>
        <see langword="true" /> if the control should be laid out from right-to-left; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.Scrollable">
      <summary>Gets or sets a value indicating whether the tree view control displays scroll bars when they are needed.</summary>
      <returns>
        <see langword="true" /> if the tree view control displays scroll bars when they are needed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.SelectedImageIndex">
      <summary>Gets or sets the image list index value of the image that is displayed when a tree node is selected.</summary>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="value" /> is less than -1.</exception>
      <returns>A zero-based index value that represents the position of an <see cref="T:System.Drawing.Image" /> in an <see cref="T:System.Windows.Forms.ImageList" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.SelectedImageKey">
      <summary>Gets or sets the key of the default image shown when a <see cref="T:System.Windows.Forms.TreeNode" /> is in a selected state.</summary>
      <returns>The key of the default image shown when a <see cref="T:System.Windows.Forms.TreeNode" /> is in a selected state.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.SelectedNode">
      <summary>Gets or sets the tree node that is currently selected in the tree view control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that is currently selected in the tree view control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.ShowLines">
      <summary>Gets or sets a value indicating whether lines are drawn between tree nodes in the tree view control.</summary>
      <returns>
        <see langword="true" /> if lines are drawn between tree nodes in the tree view control; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.ShowNodeToolTips">
      <summary>Gets or sets a value indicating ToolTips are shown when the mouse pointer hovers over a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
      <returns>
        <see langword="true" /> if ToolTips are shown when the mouse pointer hovers over a <see cref="T:System.Windows.Forms.TreeNode" />; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.ShowPlusMinus">
      <summary>Gets or sets a value indicating whether plus-sign (+) and minus-sign (-) buttons are displayed next to tree nodes that contain child tree nodes.</summary>
      <returns>
        <see langword="true" /> if plus sign and minus sign buttons are displayed next to tree nodes that contain child tree nodes; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.ShowRootLines">
      <summary>Gets or sets a value indicating whether lines are drawn between the tree nodes that are at the root of the tree view.</summary>
      <returns>
        <see langword="true" /> if lines are drawn between the tree nodes that are at the root of the tree view; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.Sorted">
      <summary>Gets or sets a value indicating whether the tree nodes in the tree view are sorted.</summary>
      <returns>
        <see langword="true" /> if the tree nodes in the tree view are sorted; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.StateImageList">
      <summary>Gets or sets the image list that is used to indicate the state of the <see cref="T:System.Windows.Forms.TreeView" /> and its nodes.</summary>
      <returns>The <see cref="T:System.Windows.Forms.ImageList" /> used for indicating the state of the <see cref="T:System.Windows.Forms.TreeView" /> and its nodes.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.Text">
      <summary>Gets or sets the text of the <see cref="T:System.Windows.Forms.TreeView" />.</summary>
      <returns>
        <see langword="Null" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.TopNode">
      <summary>Gets or sets the first fully-visible tree node in the tree view control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.TreeNode" /> that represents the first fully-visible tree node in the tree view control.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.TreeViewNodeSorter">
      <summary>Gets or sets the implementation of <see cref="T:System.Collections.IComparer" /> to perform a custom sort of the <see cref="T:System.Windows.Forms.TreeView" /> nodes.</summary>
      <returns>The <see cref="T:System.Collections.IComparer" /> to perform the custom sort.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeView.VisibleCount">
      <summary>Gets the number of tree nodes that can be fully visible in the tree view control.</summary>
      <returns>The number of <see cref="T:System.Windows.Forms.TreeNode" /> items that can be fully visible in the <see cref="T:System.Windows.Forms.TreeView" /> control.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeViewAction">
      <summary>Specifies the action that raised a <see cref="T:System.Windows.Forms.TreeViewEventArgs" /> event.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewAction.ByKeyboard">
      <summary>The event was caused by a keystroke.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewAction.ByMouse">
      <summary>The event was caused by a mouse operation.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewAction.Collapse">
      <summary>The event was caused by the <see cref="T:System.Windows.Forms.TreeNode" /> collapsing.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewAction.Expand">
      <summary>The event was caused by the <see cref="T:System.Windows.Forms.TreeNode" /> expanding.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewAction.Unknown">
      <summary>The action that caused the event is unknown.</summary>
    </member>
    <member name="T:System.Windows.Forms.TreeViewCancelEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TreeView.BeforeCheck" />, <see cref="E:System.Windows.Forms.TreeView.BeforeCollapse" />, <see cref="E:System.Windows.Forms.TreeView.BeforeExpand" />, and <see cref="E:System.Windows.Forms.TreeView.BeforeSelect" /> events of a <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeViewCancelEventArgs.#ctor(System.Windows.Forms.TreeNode,System.Boolean,System.Windows.Forms.TreeViewAction)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeViewCancelEventArgs" /> class with the specified tree node, a value specifying whether the event is to be canceled, and the type of tree view action that raised the event.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> that the event is responding to.</param>
      <param name="cancel">
        <see langword="true" /> to cancel the event; otherwise, <see langword="false" />.</param>
      <param name="action">One of the <see cref="T:System.Windows.Forms.TreeViewAction" /> values indicating the type of action that raised the event.</param>
    </member>
    <member name="P:System.Windows.Forms.TreeViewCancelEventArgs.Action">
      <summary>Gets the type of <see cref="T:System.Windows.Forms.TreeView" /> action that raised the event.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.TreeViewAction" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeViewCancelEventArgs.Node">
      <summary>Gets the tree node to be checked, expanded, collapsed, or selected.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> to be checked, expanded, collapsed, or selected.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeViewCancelEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.TreeView.BeforeCheck" />, <see cref="E:System.Windows.Forms.TreeView.BeforeCollapse" />, <see cref="E:System.Windows.Forms.TreeView.BeforeExpand" />, or <see cref="E:System.Windows.Forms.TreeView.BeforeSelect" /> event of a <see cref="T:System.Windows.Forms.TreeView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewCancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.TreeViewDrawMode">
      <summary>Defines constants that represent the ways a <see cref="T:System.Windows.Forms.TreeView" /> can be drawn.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewDrawMode.Normal">
      <summary>The <see cref="T:System.Windows.Forms.TreeView" /> is drawn by the operating system.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll">
      <summary>All elements of a <see cref="T:System.Windows.Forms.TreeView" /> node are drawn manually, including icons, checkboxes, plus and minus signs, and lines connecting the nodes.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewDrawMode.OwnerDrawText">
      <summary>The label portion of the <see cref="T:System.Windows.Forms.TreeView" /> nodes are drawn manually. Other node elements are drawn by the operating system, including icons, checkboxes, plus and minus signs, and lines connecting the nodes.</summary>
    </member>
    <member name="T:System.Windows.Forms.TreeViewEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.TreeView.AfterCheck" />, <see cref="E:System.Windows.Forms.TreeView.AfterCollapse" />, <see cref="E:System.Windows.Forms.TreeView.AfterExpand" />, or <see cref="E:System.Windows.Forms.TreeView.AfterSelect" /> events of a <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeViewEventArgs.#ctor(System.Windows.Forms.TreeNode)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeViewEventArgs" /> class for the specified tree node.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> that the event is responding to.</param>
    </member>
    <member name="M:System.Windows.Forms.TreeViewEventArgs.#ctor(System.Windows.Forms.TreeNode,System.Windows.Forms.TreeViewAction)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeViewEventArgs" /> class for the specified tree node and with the specified type of action that raised the event.</summary>
      <param name="node">The <see cref="T:System.Windows.Forms.TreeNode" /> that the event is responding to.</param>
      <param name="action">The type of <see cref="T:System.Windows.Forms.TreeViewAction" /> that raised the event.</param>
    </member>
    <member name="P:System.Windows.Forms.TreeViewEventArgs.Action">
      <summary>Gets the type of action that raised the event.</summary>
      <returns>The type of <see cref="T:System.Windows.Forms.TreeViewAction" /> that raised the event.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeViewEventArgs.Node">
      <summary>Gets the tree node that has been checked, expanded, collapsed, or selected.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> that has been checked, expanded, collapsed, or selected.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeViewEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.TreeView.AfterCheck" />, <see cref="E:System.Windows.Forms.TreeView.AfterCollapse" />, <see cref="E:System.Windows.Forms.TreeView.AfterExpand" />, or <see cref="E:System.Windows.Forms.TreeView.AfterSelect" /> event of a <see cref="T:System.Windows.Forms.TreeView" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.TreeViewEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.TreeViewHitTestInfo">
      <summary>Contains information about an area of a <see cref="T:System.Windows.Forms.TreeView" /> control or a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeViewHitTestInfo.#ctor(System.Windows.Forms.TreeNode,System.Windows.Forms.TreeViewHitTestLocations)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeViewHitTestInfo" /> class.</summary>
      <param name="hitNode">The tree node located at the position indicated by the hit test.</param>
      <param name="hitLocation">One of the <see cref="T:System.Windows.Forms.TreeViewHitTestLocations" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.TreeViewHitTestInfo.Location">
      <summary>Gets the location of a hit test on a <see cref="T:System.Windows.Forms.TreeView" /> control, in relation to the <see cref="T:System.Windows.Forms.TreeView" /> and the nodes it contains.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.TreeViewHitTestLocations" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeViewHitTestInfo.Node">
      <summary>Gets the <see cref="T:System.Windows.Forms.TreeNode" /> at the position indicated by a hit test of a <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
      <returns>The <see cref="T:System.Windows.Forms.TreeNode" /> at the position indicated by a hit test of a <see cref="T:System.Windows.Forms.TreeView" /> control.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeViewHitTestLocations">
      <summary>Defines constants that represent areas of a <see cref="T:System.Windows.Forms.TreeView" /> or <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.AboveClientArea">
      <summary>A position above the client portion of a <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.BelowClientArea">
      <summary>A position below the client portion of a <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.Image">
      <summary>A position within the bounds of an image contained on a <see cref="T:System.Windows.Forms.TreeView" /> or <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.Indent">
      <summary>A position in the indentation area for a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.Label">
      <summary>A position on the text portion of a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.LeftOfClientArea">
      <summary>A position to the left of the client area of a <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.None">
      <summary>A position in the client area of the <see cref="T:System.Windows.Forms.TreeView" /> control, but not on a node or a portion of a node.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.PlusMinus">
      <summary>A position on the plus/minus area of a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.RightOfClientArea">
      <summary>A position to the right of the client area of the <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.RightOfLabel">
      <summary>A position to the right of the text area of a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.TreeViewHitTestLocations.StateImage">
      <summary>A position within the bounds of a state image for a <see cref="T:System.Windows.Forms.TreeNode" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.TreeViewImageIndexConverter">
      <summary>Provides a type converter to convert data for an image index to and from one data type to another for use by the <see cref="T:System.Windows.Forms.TreeView" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeViewImageIndexConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeViewImageIndexConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeViewImageIndexConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
      <summary>Converts the specified value object to a 32-bit signed integer object.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> to provide locale information.</param>
      <param name="value">The <see cref="T:System.Object" /> to convert.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeViewImageIndexConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the specified object to the specified destination type.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that provides locale information.</param>
      <param name="value">The object to convert, typically an index represented as an <see cref="T:System.Int32" />.</param>
      <param name="destinationType">The type to convert the object to, often a <see cref="T:System.String" />.</param>
      <returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
    </member>
    <member name="M:System.Windows.Forms.TreeViewImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
      <summary>Returns a collection of standard index values for the image list associated with the specified format context.</summary>
      <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <returns>A <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> that holds a standard set of valid index values. If no image list is found, this collection will contain a single object with a value of -1.</returns>
    </member>
    <member name="P:System.Windows.Forms.TreeViewImageIndexConverter.IncludeNoneAsStandardValue">
      <summary>Gets a value indicating <see langword="null" /> is valid in the <see cref="T:System.ComponentModel.TypeConverter.StandardValuesCollection" /> collection.</summary>
      <returns>
        <see langword="true" /> if <see langword="null" /> is valid in the standard values collection; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TreeViewImageKeyConverter">
      <summary>Provides a type converter to convert data for an image key to and from another data type.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeViewImageKeyConverter.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TreeViewImageKeyConverter" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.TreeViewImageKeyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
      <summary>Converts the specified object to an object of the specified type using the specified culture information and context.</summary>
      <param name="context">A <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context, which can be used to extract additional information about the environment this type converter is being invoked from. This parameter or properties of this parameter can be <see langword="null" />.</param>
      <param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that provides locale information.</param>
      <param name="value">The object to convert, typically an image key.</param>
      <param name="destinationType">The type to convert the object to.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destinationType" /> is <see langword="null" />.</exception>
      <exception cref="T:System.NotSupportedException">The specified <paramref name="value" /> cannot be converted to the specified <paramref name="destinationType" />.</exception>
      <returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TypeValidationEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.MaskedTextBox.TypeValidationCompleted" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.TypeValidationEventArgs.#ctor(System.Type,System.Boolean,System.Object,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.TypeValidationEventArgs" /> class.</summary>
      <param name="validatingType">The <see cref="T:System.Type" /> that the formatted input string was being validated against.</param>
      <param name="isValidInput">A <see cref="T:System.Boolean" /> value indicating whether the formatted string was successfully converted to the validating type.</param>
      <param name="returnValue">An <see cref="T:System.Object" /> that is the result of the formatted string being converted to the target type.</param>
      <param name="message">A <see cref="T:System.String" /> containing a description of the conversion process.</param>
    </member>
    <member name="P:System.Windows.Forms.TypeValidationEventArgs.Cancel">
      <summary>Gets or sets a value indicating whether the event should be canceled.</summary>
      <returns>
        <see langword="true" /> if the event should be canceled and focus retained by the <see cref="T:System.Windows.Forms.MaskedTextBox" /> control; otherwise, <see langword="false" /> to continue validation processing.</returns>
    </member>
    <member name="P:System.Windows.Forms.TypeValidationEventArgs.IsValidInput">
      <summary>Gets a value indicating whether the formatted input string was successfully converted to the validating type.</summary>
      <returns>
        <see langword="true" /> if the formatted input string can be converted into the type specified by the <see cref="P:System.Windows.Forms.TypeValidationEventArgs.ValidatingType" /> property; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TypeValidationEventArgs.Message">
      <summary>Gets a text message describing the conversion process.</summary>
      <returns>A <see cref="T:System.String" /> containing a description of the conversion process.</returns>
    </member>
    <member name="P:System.Windows.Forms.TypeValidationEventArgs.ReturnValue">
      <summary>Gets the object that results from the conversion of the formatted input string.</summary>
      <returns>If the validation is successful, an <see cref="T:System.Object" /> that represents the converted type; otherwise, <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.TypeValidationEventArgs.ValidatingType">
      <summary>Gets the type that the formatted input string is being validated against.</summary>
      <returns>The target <see cref="T:System.Type" /> of the conversion process. This should never be <see langword="null" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.TypeValidationEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.MaskedTextBox.TypeValidationCompleted" /> event of the <see cref="T:System.Windows.Forms.MaskedTextBox" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.TypeValidationEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.UICues">
      <summary>Specifies the state of the user interface.</summary>
    </member>
    <member name="F:System.Windows.Forms.UICues.Changed">
      <summary>The state of the focus cues and keyboard cues has changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.UICues.ChangeFocus">
      <summary>The state of the focus cues has changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.UICues.ChangeKeyboard">
      <summary>The state of the keyboard cues has changed.</summary>
    </member>
    <member name="F:System.Windows.Forms.UICues.None">
      <summary>No change was made.</summary>
    </member>
    <member name="F:System.Windows.Forms.UICues.ShowFocus">
      <summary>Focus rectangles are displayed after the change.</summary>
    </member>
    <member name="F:System.Windows.Forms.UICues.ShowKeyboard">
      <summary>Keyboard cues are underlined after the change.</summary>
    </member>
    <member name="F:System.Windows.Forms.UICues.Shown">
      <summary>Focus rectangles are displayed and keyboard cues are underlined after the change.</summary>
    </member>
    <member name="T:System.Windows.Forms.UICuesEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.Control.ChangeUICues" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.UICuesEventArgs.#ctor(System.Windows.Forms.UICues)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.UICuesEventArgs" /> class with the specified <see cref="T:System.Windows.Forms.UICues" />.</summary>
      <param name="uicues">A bitwise combination of the <see cref="T:System.Windows.Forms.UICues" /> values.</param>
    </member>
    <member name="P:System.Windows.Forms.UICuesEventArgs.Changed">
      <summary>Gets the bitwise combination of the <see cref="T:System.Windows.Forms.UICues" /> values.</summary>
      <returns>A bitwise combination of the <see cref="T:System.Windows.Forms.UICues" /> values. The default is <see cref="F:System.Windows.Forms.UICues.Changed" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UICuesEventArgs.ChangeFocus">
      <summary>Gets a value indicating whether the state of the focus cues has changed.</summary>
      <returns>
        <see langword="true" /> if the state of the focus cues has changed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UICuesEventArgs.ChangeKeyboard">
      <summary>Gets a value indicating whether the state of the keyboard cues has changed.</summary>
      <returns>
        <see langword="true" /> if the state of the keyboard cues has changed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UICuesEventArgs.ShowFocus">
      <summary>Gets a value indicating whether focus rectangles are shown after the change.</summary>
      <returns>
        <see langword="true" /> if focus rectangles are shown after the change; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UICuesEventArgs.ShowKeyboard">
      <summary>Gets a value indicating whether keyboard cues are underlined after the change.</summary>
      <returns>
        <see langword="true" /> if keyboard cues are underlined after the change; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.UICuesEventHandler">
      <summary>Represents a method that will handle the <see cref="E:System.Windows.Forms.Control.ChangeUICues" /> event of a <see cref="T:System.Windows.Forms.Control" />.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.UICuesEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.UnhandledExceptionMode">
      <summary>Defines where a Windows Forms application should send unhandled exceptions.</summary>
    </member>
    <member name="F:System.Windows.Forms.UnhandledExceptionMode.Automatic">
      <summary>Route all exceptions to the <see cref="E:System.Windows.Forms.Application.ThreadException" /> handler, unless the application's configuration file specifies otherwise.</summary>
    </member>
    <member name="F:System.Windows.Forms.UnhandledExceptionMode.CatchException">
      <summary>Always route exceptions to the <see cref="E:System.Windows.Forms.Application.ThreadException" /> handler. Ignore the application configuration file.</summary>
    </member>
    <member name="F:System.Windows.Forms.UnhandledExceptionMode.ThrowException">
      <summary>Never route exceptions to the <see cref="E:System.Windows.Forms.Application.ThreadException" /> handler. Ignore the application configuration file.</summary>
    </member>
    <member name="T:System.Windows.Forms.UpDownBase">
      <summary>Implements the basic functionality required by a spin box (also known as an up-down control).</summary>
    </member>
    <member name="E:System.Windows.Forms.UpDownBase.AutoSizeChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.UpDownBase.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.UpDownBase.BackgroundImageChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.UpDownBase.BackgroundImage" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.UpDownBase.BackgroundImageLayoutChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.UpDownBase.BackgroundImageLayout" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.UpDownBase.MouseEnter">
      <summary>Occurs when the mouse pointer enters the <see cref="T:System.Windows.Forms.UpDownBase" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.UpDownBase.MouseHover">
      <summary>Occurs when the mouse pointer rests on the <see cref="T:System.Windows.Forms.UpDownBase" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.UpDownBase.MouseLeave">
      <summary>Occurs when the mouse pointer leaves the <see cref="T:System.Windows.Forms.UpDownBase" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.UpDownBase.MouseMove">
      <summary>Occurs when the user moves the mouse pointer over the <see cref="T:System.Windows.Forms.UpDownBase" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.UpDownBase" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.UpDownBase.DownButton">
      <summary>When overridden in a derived class, handles the clicking of the down button on the spin box (also known as an up-down control).</summary>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnChanged(System.Object,System.EventArgs)">
      <summary>When overridden in a derived class, raises the Changed event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnHandleDestroyed(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnLayout(System.Windows.Forms.LayoutEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</summary>
      <param name="mevent">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnPaint(System.Windows.Forms.PaintEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnTextBoxKeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnTextBoxKeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnTextBoxLostFocus(System.Object,System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnTextBoxResize(System.Object,System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.OnTextBoxTextChanged(System.Object,System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.RescaleConstantsForDpi(System.Int32,System.Int32)">
      <summary>Provides constants for rescaling the control when a DPI change occurs.</summary>
      <param name="deviceDpiOld">The DPI value prior to the change.</param>
      <param name="deviceDpiNew">The DPI value after the change.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.Select(System.Int32,System.Int32)">
      <summary>Selects a range of text in the spin box (also known as an up-down control) specifying the starting position and number of characters to select.</summary>
      <param name="start">The position of the first character to be selected.</param>
      <param name="length">The total number of characters to be selected.</param>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.UpButton">
      <summary>When overridden in a derived class, handles the clicking of the up button on the spin box (also known as an up-down control).</summary>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.UpdateEditText">
      <summary>When overridden in a derived class, updates the text displayed in the spin box (also known as an up-down control).</summary>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.ValidateEditText">
      <summary>When overridden in a derived class, validates the text displayed in the spin box (also known as an up-down control).</summary>
    </member>
    <member name="M:System.Windows.Forms.UpDownBase.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.AutoScroll">
      <summary>Gets a value indicating whether the container will allow the user to scroll to any controls placed outside of its visible boundaries.</summary>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.AutoScrollMargin">
      <summary>Gets or sets the size of the auto-scroll margin.</summary>
      <exception cref="T:System.ArgumentException">The <see cref="P:System.Drawing.Size.Height" /> or <see cref="P:System.Drawing.Size.Width" /> is less than 0.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the height and width, in pixels, of the auto-scroll margin.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.AutoScrollMinSize">
      <summary>Gets or sets the minimum size of the auto-scroll area.</summary>
      <returns>A <see cref="T:System.Drawing.Size" /> that represents the minimum height and width, in pixels, of the scroll bars.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.AutoSize">
      <summary>Gets or sets a value indicating whether the control should automatically resize based on its contents.</summary>
      <returns>
        <see langword="true" /> to indicate the control should automatically resize based on its contents; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.BackColor">
      <summary>Gets or sets the background color for the text box portion of the spin box (also known as an up-down control).</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background color of the text box portion of the spin box.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.BackgroundImage">
      <summary>Gets or sets the background image for the <see cref="T:System.Windows.Forms.UpDownBase" />.</summary>
      <returns>The background image for the <see cref="T:System.Windows.Forms.UpDownBase" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.BackgroundImageLayout">
      <summary>Gets or sets the layout of the <see cref="P:System.Windows.Forms.UpDownBase.BackgroundImage" /> of the <see cref="T:System.Windows.Forms.UpDownBase" />.</summary>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.BorderStyle">
      <summary>Gets or sets the border style for the spin box (also known as an up-down control).</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default value is <see cref="F:System.Windows.Forms.BorderStyle.Fixed3D" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.ChangingText">
      <summary>Gets or sets a value indicating whether the text property is being changed internally by its parent class.</summary>
      <returns>
        <see langword="true" /> if the <see cref="P:System.Windows.Forms.UpDownBase.Text" /> property is being changed internally by the <see cref="T:System.Windows.Forms.UpDownBase" /> class; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.ContextMenuStrip">
      <summary>Gets or sets the shortcut menu for the spin box (also known as an up-down control).</summary>
      <returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>The creation parameters.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.DockPadding">
      <summary>Gets the dock padding settings for all edges of the <see cref="T:System.Windows.Forms.UpDownBase" /> control.</summary>
      <returns>The dock paddings settings for this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.Focused">
      <summary>Gets a value indicating whether the control has input focus.</summary>
      <returns>
        <see langword="true" /> if the control has focus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.ForeColor">
      <summary>Gets or sets the foreground color of the spin box (also known as an up-down control).</summary>
      <returns>The foreground <see cref="T:System.Drawing.Color" /> of the spin box.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.InterceptArrowKeys">
      <summary>Gets or sets a value indicating whether the user can use the UP ARROW and DOWN ARROW keys to select values.</summary>
      <returns>
        <see langword="true" /> if the control allows the use of the UP ARROW and DOWN ARROW keys to select values; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.MaximumSize">
      <summary>Gets or sets the maximum size of the spin box (also known as an up-down control).</summary>
      <returns>The <see cref="T:System.Drawing.Size" />, which is the maximum size of the spin box.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.MinimumSize">
      <summary>Gets or sets the minimum size of the spin box (also known as an up-down control).</summary>
      <returns>The <see cref="T:System.Drawing.Size" />, which is the minimum size of the spin box.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.PreferredHeight">
      <summary>Gets the height of the spin box (also known as an up-down control).</summary>
      <returns>The height, in pixels, of the spin box.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.ReadOnly">
      <summary>Gets or sets a value indicating whether the text can be changed by the use of the up or down buttons only.</summary>
      <returns>
        <see langword="true" /> if the text can be changed by the use of the up or down buttons only; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.Text">
      <summary>Gets or sets the text displayed in the spin box (also known as an up-down control).</summary>
      <returns>The string value displayed in the spin box.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.TextAlign">
      <summary>Gets or sets the alignment of the text in the spin box (also known as an up-down control).</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.HorizontalAlignment" /> values. The default value is <see cref="F:System.Windows.Forms.HorizontalAlignment.Left" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.UpDownAlign">
      <summary>Gets or sets the alignment of the up and down buttons on the spin box (also known as an up-down control).</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.LeftRightAlignment" /> values. The default value is <see cref="F:System.Windows.Forms.LeftRightAlignment.Right" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UpDownBase.UserEdit">
      <summary>Gets or sets a value indicating whether a value has been entered by the user.</summary>
      <returns>
        <see langword="true" /> if the user has changed the <see cref="P:System.Windows.Forms.UpDownBase.Text" /> property; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.UpDownEventArgs">
      <summary>Provides data for controls that derive from the <see cref="T:System.Windows.Forms.UpDownBase" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.UpDownEventArgs.#ctor(System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.UpDownEventArgs" /> class.</summary>
      <param name="buttonPushed">The button that was clicked on the <see cref="T:System.Windows.Forms.UpDownBase" /> control.</param>
    </member>
    <member name="P:System.Windows.Forms.UpDownEventArgs.ButtonID">
      <summary>Gets a value that represents which button the user clicked.</summary>
      <returns>A value that represents which button the user clicked.</returns>
    </member>
    <member name="T:System.Windows.Forms.UpDownEventHandler">
      <summary>Represents the method that will handle an event for an internal class.</summary>
      <param name="source">The source of the event.</param>
      <param name="e">An <see cref="T:System.Windows.Forms.UpDownEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.UserControl">
      <summary>Provides an empty control that can be used to create other controls.</summary>
    </member>
    <member name="E:System.Windows.Forms.UserControl.AutoSizeChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.UserControl.AutoSize" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.UserControl.AutoValidateChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.UserControl.AutoValidate" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.UserControl.Load">
      <summary>Occurs before the control becomes visible for the first time.</summary>
    </member>
    <member name="E:System.Windows.Forms.UserControl.TextChanged">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.TextChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.UserControl.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.UserControl" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.UserControl.OnCreateControl">
      <summary>Raises the <see langword="CreateControl" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.UserControl.OnLoad(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.UserControl.Load" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UserControl.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UserControl.OnResize(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.UserControl.ValidateChildren">
      <summary>Causes all of the child controls within a control that support validation to validate their data.</summary>
      <returns>
        <see langword="true" /> if all of the children validated successfully; otherwise, <see langword="false" />. If called from the <see cref="E:System.Windows.Forms.Control.Validating" /> or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers, this method will always return <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.UserControl.ValidateChildren(System.Windows.Forms.ValidationConstraints)">
      <summary>Causes all of the child controls within a control that support validation to validate their data.</summary>
      <param name="validationConstraints">Places restrictions on which controls have their <see cref="E:System.Windows.Forms.Control.Validating" /> event raised.</param>
      <returns>
        <see langword="true" /> if all of the children validated successfully; otherwise, <see langword="false" />. If called from the <see cref="E:System.Windows.Forms.Control.Validating" /> or <see cref="E:System.Windows.Forms.Control.Validated" /> event handlers, this method will always return <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.UserControl.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.UserControl.AutoSize">
      <summary>This property is not relevant for this class.</summary>
      <returns>
        <see langword="true" /> if enabled; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UserControl.AutoSizeMode">
      <summary>Gets or sets how the control will resize itself.</summary>
      <returns>A value from the <see cref="T:System.Windows.Forms.AutoSizeMode" /> enumeration. The default is <see cref="F:System.Windows.Forms.AutoSizeMode.GrowOnly" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UserControl.AutoValidate">
      <summary>Gets or sets how the control performs validation when the user changes focus to another control.</summary>
      <returns>A member of the <see cref="T:System.Windows.Forms.AutoValidate" /> enumeration. The default value for <see cref="T:System.Windows.Forms.UserControl" /> is <see cref="F:System.Windows.Forms.AutoValidate.EnablePreventFocusChange" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UserControl.BorderStyle">
      <summary>Gets or sets the border style of the user control.</summary>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The assigned value is not one of the <see cref="T:System.Windows.Forms.BorderStyle" /> values.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.BorderStyle" /> values. The default is <see cref="F:System.Windows.Forms.BorderStyle.Fixed3D" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.UserControl.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.UserControl.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.UserControl.Text">
      <summary>Gets or sets the text associated with this control.</summary>
      <returns>The text associated with this control.</returns>
    </member>
    <member name="T:System.Windows.Forms.ValidationConstraints">
      <summary>Defines constants that inform <see cref="M:System.Windows.Forms.ContainerControl.ValidateChildren(System.Windows.Forms.ValidationConstraints)" /> about how it should validate a container's child controls.</summary>
    </member>
    <member name="F:System.Windows.Forms.ValidationConstraints.Enabled">
      <summary>Validates child controls whose <see cref="P:System.Windows.Forms.Control.Enabled" /> property is set to <see langword="true" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ValidationConstraints.ImmediateChildren">
      <summary>Validates child controls that are directly hosted within the container. Does not validate any of the children of these children. For example, if you have a <see cref="T:System.Windows.Forms.Form" /> that contains a custom <see cref="T:System.Windows.Forms.UserControl" />, and the <see cref="T:System.Windows.Forms.UserControl" /> contains a <see cref="T:System.Windows.Forms.Button" />, using <see cref="F:System.Windows.Forms.ValidationConstraints.ImmediateChildren" /> will cause the <see cref="E:System.Windows.Forms.Control.Validating" /> event of the <see cref="T:System.Windows.Forms.UserControl" /> to occur, but not the <see cref="E:System.Windows.Forms.Control.Validating" /> event of the <see cref="T:System.Windows.Forms.Button" />.</summary>
    </member>
    <member name="F:System.Windows.Forms.ValidationConstraints.None">
      <summary>Validates all child controls, and all children of these child controls, regardless of their property settings.</summary>
    </member>
    <member name="F:System.Windows.Forms.ValidationConstraints.Selectable">
      <summary>Validates child controls that can be selected.</summary>
    </member>
    <member name="F:System.Windows.Forms.ValidationConstraints.TabStop">
      <summary>Validates child controls that have a <see cref="P:System.Windows.Forms.Control.TabStop" /> value set, which means that the user can navigate to the control using the TAB key.</summary>
    </member>
    <member name="F:System.Windows.Forms.ValidationConstraints.Visible">
      <summary>Validates child controls whose <see cref="P:System.Windows.Forms.Control.Visible" /> property is set to <see langword="true" />.</summary>
    </member>
    <member name="T:System.Windows.Forms.View">
      <summary>Specifies how list items are displayed in a <see cref="T:System.Windows.Forms.ListView" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.View.Details">
      <summary>Each item appears on a separate line with further information about each item arranged in columns. The left-most column contains a small icon and label, and subsequent columns contain sub items as specified by the application. A column displays a header which can display a caption for the column. The user can resize each column at run time.</summary>
    </member>
    <member name="F:System.Windows.Forms.View.LargeIcon">
      <summary>Each item appears as a full-sized icon with a label below it.</summary>
    </member>
    <member name="F:System.Windows.Forms.View.List">
      <summary>Each item appears as a small icon with a label to its right. Items are arranged in columns with no column headers.</summary>
    </member>
    <member name="F:System.Windows.Forms.View.SmallIcon">
      <summary>Each item appears as a small icon with a label to its right.</summary>
    </member>
    <member name="F:System.Windows.Forms.View.Tile">
      <summary>Each item appears as a full-sized icon with the item label and subitem information to the right of it. The subitem information that appears is specified by the application. This view is available only on Windows XP and the Windows Server 2003 family. On earlier operating systems, this value is ignored and the <see cref="T:System.Windows.Forms.ListView" /> control displays in the <see cref="F:System.Windows.Forms.View.LargeIcon" /> view.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.BackgroundType">
      <summary>Specifies the source of a visual style element's background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BackgroundType.BorderFill">
      <summary>The background of the element is a rectangle filled with a color or pattern.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BackgroundType.ImageFile">
      <summary>The background of the element is a bitmap. If this value is set, then the property corresponding to the <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile" /> value will contain the name of a valid image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BackgroundType.None">
      <summary>The element has no background.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.BooleanProperty">
      <summary>Identifies the Boolean properties of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.AlwaysShowSizingBar">
      <summary>The sizing handle will always be displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.AutoSize">
      <summary>The width of nonclient captions varies with the extent of the text.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.BackgroundFill">
      <summary>The background of a fixed-size element is a filled rectangle.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.BorderOnly">
      <summary>Only the border of an image is drawn.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.Composited">
      <summary>The control will handle composite drawing.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.GlyphOnly">
      <summary>Only the glyph should be drawn, not the background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.GlyphTransparent">
      <summary>The glyph has transparent areas.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.IntegralSizing">
      <summary>The scaling factor must be an integer for fixed-size elements.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.MirrorImage">
      <summary>The image is mirrored in right-to-left display modes.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.SourceGrow">
      <summary>The source image will scale larger when needed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.SourceShrink">
      <summary>The source image will scale smaller when needed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.Transparent">
      <summary>The image has transparent areas.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BooleanProperty.UniformSizing">
      <summary>The height and width must be sized equally.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.BorderType">
      <summary>Specifies the border type of a visual style element with a filled-border background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BorderType.Ellipse">
      <summary>An elliptical border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BorderType.Rectangle">
      <summary>A rectangular border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.BorderType.RoundedRectangle">
      <summary>A rectangular border with rounded corners.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.CheckBoxState">
      <summary>Specifies the visual state of a check box that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.CheckedDisabled">
      <summary>The check box is checked and disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.CheckedHot">
      <summary>The check box is checked and hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.CheckedNormal">
      <summary>The check box is checked.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.CheckedPressed">
      <summary>The check box is checked and pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.MixedDisabled">
      <summary>The check box is three-state and disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.MixedHot">
      <summary>The check box is three-state and hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.MixedNormal">
      <summary>The check box is three-state.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.MixedPressed">
      <summary>The check box is three-state and pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedDisabled">
      <summary>The check box is unchecked and disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedHot">
      <summary>The check box is unchecked and hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedNormal">
      <summary>The check box is unchecked.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedPressed">
      <summary>The check box is unchecked and pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.ColorProperty">
      <summary>Identifies the color properties of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.AccentColorHint">
      <summary>A recommended companion color for the accent color of the visual style.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.BorderColor">
      <summary>The border color of an element with a filled-border background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.BorderColorHint">
      <summary>A recommended companion color for the border color of the visual style.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeDarkShadowColor">
      <summary>The dark shadow color for edges.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeFillColor">
      <summary>The fill color for edges.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeHighlightColor">
      <summary>The highlight color for edges.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeLightColor">
      <summary>The light color for edges.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.EdgeShadowColor">
      <summary>The shadow color for edges.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.FillColor">
      <summary>The fill color of an element with a filled-border background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.FillColorHint">
      <summary>A recommended companion color for the fill color of the visual style.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.GlowColor">
      <summary>The glow color.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.GlyphTextColor">
      <summary>The color that a font-based glyph is drawn with.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.GlyphTransparentColor">
      <summary>The color of pixels in a glyph that are treated as transparent.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor1">
      <summary>The first color in a gradient.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor2">
      <summary>The second color in a gradient.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor3">
      <summary>The third color in a gradient.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor4">
      <summary>The fourth color in a gradient.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor5">
      <summary>The fifth color in a gradient.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.ShadowColor">
      <summary>The color of the shadow.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.TextBorderColor">
      <summary>The color of the text border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.TextColor">
      <summary>The text color.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.TextShadowColor">
      <summary>The color of the text shadow.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ColorProperty.TransparentColor">
      <summary>The color of pixels that are treated as transparent.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.ComboBoxState">
      <summary>Specifies the visual state of a combo box that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ComboBoxState.Disabled">
      <summary>The combo box is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ComboBoxState.Hot">
      <summary>The combo box is hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ComboBoxState.Normal">
      <summary>The combo box has the default appearance.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ComboBoxState.Pressed">
      <summary>The combo box is pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.ContentAlignment">
      <summary>Specifies how text is aligned in a window caption.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ContentAlignment.Center">
      <summary>The text is centered.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ContentAlignment.Left">
      <summary>The text is aligned to the left side.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ContentAlignment.Right">
      <summary>The text is aligned to the right side.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.EdgeEffects">
      <summary>Specifies the visual effects that can be applied to the edges of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EdgeEffects.FillInterior">
      <summary>The area within the element borders is filled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EdgeEffects.Flat">
      <summary>The border is flat.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EdgeEffects.Mono">
      <summary>The border is one-dimensional.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EdgeEffects.None">
      <summary>The border is drawn without any effects.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EdgeEffects.Soft">
      <summary>The border is soft.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.Edges">
      <summary>Specifies which edges of a visual style element to draw.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.Edges.Bottom">
      <summary>The bottom edge of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.Edges.Diagonal">
      <summary>A diagonal border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.Edges.Left">
      <summary>The left edge of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.Edges.Right">
      <summary>The right edge of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.Edges.Top">
      <summary>The top edge of the element.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.EdgeStyle">
      <summary>Specifies the styles that can be applied to the edges of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EdgeStyle.Bump">
      <summary>The edges are drawn to appear raised on the outside and sunken on the inside.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EdgeStyle.Etched">
      <summary>The edges are drawn to appear sunken on the outside and raised on the inside.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EdgeStyle.Raised">
      <summary>The edges are drawn to make the element seem raised.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EdgeStyle.Sunken">
      <summary>The edges are drawn to make the element seem sunken.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.EnumProperty">
      <summary>Identifies the enumerated type properties of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.BackgroundType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.BackgroundType" /> values that specifies how the element's background is drawn.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.BorderType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.BorderType" /> values that specifies the border type for elements with a filled-border background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.ContentAlignment">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.ContentAlignment" /> values that specifies how text is aligned in a window caption.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.FillType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.FillType" /> values that specifies the fill type for elements with a filled-border background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.GlyphFontSizingType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.GlyphFontSizingType" /> values that specifies when the visual style selects a different glyph font size.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.GlyphType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.GlyphType" /> values that specifies the type of glyph for elements with a bitmap background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.HorizontalAlignment">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.HorizontalAlign" /> values that specifies the horizontal alignment for elements with a fixed size.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.IconEffect">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.IconEffect" /> values that specifies the effect that the visual style will apply to an icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.ImageLayout">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.ImageOrientation" /> values that specifies how multiple images are arranged in a single image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.ImageSelectType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.ImageSelectType" /> values that specifies when the visual style selects a different multiple-image file to draw an element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.OffsetType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.OffsetType" /> values that specifies where an offset is applied to a window element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.SizingType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.SizingType" /> values that specifies how elements with a bitmap background will adjust to fill the bounds.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.TextShadowType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.TextShadowType" /> values that specifies the type of shadow to add to text.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.TrueSizeScalingType">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.TrueSizeScalingType" /> values that specifies when the visual style rescales an element with a fixed size.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.EnumProperty.VerticalAlignment">
      <summary>One of the <see cref="T:System.Windows.Forms.VisualStyles.VerticalAlignment" /> values that specifies the vertical alignment for elements with a fixed size.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.FilenameProperty">
      <summary>Identifies the names of the image files that are used to draw a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FilenameProperty.GlyphImageFile">
      <summary>The name of the glyph image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile">
      <summary>The name of the background image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile1">
      <summary>The name of the first multiple-image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile2">
      <summary>The name of the second multiple-image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile3">
      <summary>The name of the third multiple-image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile4">
      <summary>The name of the fourth multiple-image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile5">
      <summary>The name of the fifth multiple-image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FilenameProperty.StockImageFile">
      <summary>The name of the stock image file.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.FillType">
      <summary>Specifies the interior of visual style elements with a filled border background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FillType.HorizontalGradient">
      <summary>The interior of the element is a horizontal gradient.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FillType.RadialGradient">
      <summary>The interior of the element is a radial gradient.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FillType.Solid">
      <summary>The interior of the element is solid.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FillType.TileImage">
      <summary>The interior of the element is a tiled image.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FillType.VerticalGradient">
      <summary>The interior of the element is a vertical gradient.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.FontProperty">
      <summary>Identifies the font properties of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FontProperty.GlyphFont">
      <summary>The font that a glyph is drawn with.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.FontProperty.TextFont">
      <summary>The font that will be used to draw text within the context of this part.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.GlyphFontSizingType">
      <summary>Specifies when the visual style selects a different glyph font size.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.GlyphFontSizingType.Dpi">
      <summary>Glyph font size changes are based on dots per inch (DPI) settings.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.GlyphFontSizingType.None">
      <summary>Glyph font sizes do not change.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.GlyphFontSizingType.Size">
      <summary>Glyph font size changes are based on font size settings.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.GlyphType">
      <summary>Specifies the type of glyph for elements with a bitmap background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.GlyphType.FontGlyph">
      <summary>The glyph is a font.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.GlyphType.ImageGlyph">
      <summary>The glyph is a bitmap.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.GlyphType.None">
      <summary>The element does not include a glyph.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.GroupBoxState">
      <summary>Specifies the visual state of a group box that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.GroupBoxState.Disabled">
      <summary>The group box is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.GroupBoxState.Normal">
      <summary>The group box has the default appearance.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.HitTestCode">
      <summary>Describes the location of a point in the background specified by a visual style.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.Bottom">
      <summary>The hit test succeeded in the bottom border segment.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.BottomLeft">
      <summary>The hit test succeeded in the bottom and left border intersection.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.BottomRight">
      <summary>The hit test succeeded in the bottom and right border intersection.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.Client">
      <summary>The hit test succeeded in the middle background segment.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.Left">
      <summary>The hit test succeeded in the left border segment.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.Nowhere">
      <summary>The hit test succeeded outside the control or on a transparent area.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.Right">
      <summary>The hit test succeeded in the right border segment.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.Top">
      <summary>The hit test succeeded in the top border segment.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.TopLeft">
      <summary>The hit test succeeded in the top and left border intersection.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestCode.TopRight">
      <summary>The hit test succeeded in the top and right border intersection.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.HitTestOptions">
      <summary>Specifies the options that can be used when performing a hit test on the background specified by a visual style.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.BackgroundSegment">
      <summary>The hit test option for the background segment.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.Caption">
      <summary>The hit test option for the caption.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.FixedBorder">
      <summary>The hit test option for the fixed border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorder">
      <summary>The hit test option for the resizing border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderBottom">
      <summary>The hit test option for the bottom resizing border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderLeft">
      <summary>The hit test option for the left resizing border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderRight">
      <summary>The hit test option for the right resizing border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderTop">
      <summary>The hit test option for the top resizing border.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.SizingTemplate">
      <summary>The resizing border is specified as a template, not just window edges. This option is mutually exclusive with <see cref="F:System.Windows.Forms.VisualStyles.HitTestOptions.SystemSizingMargins" />; <see cref="F:System.Windows.Forms.VisualStyles.HitTestOptions.SizingTemplate" /> takes precedence.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HitTestOptions.SystemSizingMargins">
      <summary>The system resizing border width is used instead of visual style content margins. This option is mutually exclusive with <see cref="F:System.Windows.Forms.VisualStyles.HitTestOptions.SizingTemplate" />; <see cref="F:System.Windows.Forms.VisualStyles.HitTestOptions.SizingTemplate" /> takes precedence.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.HorizontalAlign">
      <summary>Specifies the horizontal alignment for visual style elements with a fixed size.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HorizontalAlign.Center">
      <summary>The element is centered horizontally.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HorizontalAlign.Left">
      <summary>The element is aligned to the left side.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.HorizontalAlign.Right">
      <summary>The element is aligned to the right side.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.IconEffect">
      <summary>Specifies the visual effect that the visual style will apply to an icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IconEffect.Alpha">
      <summary>The icon is alpha-blended.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IconEffect.Glow">
      <summary>The icon glows.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IconEffect.None">
      <summary>No visual effect is applied to the icon.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IconEffect.Pulse">
      <summary>The icon pulses.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IconEffect.Shadow">
      <summary>The icon has a shadow.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.ImageOrientation">
      <summary>Specifies how multiple images are arranged in a single image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ImageOrientation.Horizontal">
      <summary>Images are arranged horizontally in the multiple-image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ImageOrientation.Vertical">
      <summary>Images are arranged vertically in the multiple-image file.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.ImageSelectType">
      <summary>Specifies when the visual style selects a different multiple-image file to draw an element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ImageSelectType.Dpi">
      <summary>Image file changes are based on dots per inch (DPI) settings.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ImageSelectType.None">
      <summary>The image file does not change.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ImageSelectType.Size">
      <summary>Image file changes are based on size settings.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.IntegerProperty">
      <summary>Identifies the integer properties of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.AlphaLevel">
      <summary>The alpha value for an icon, between 0 and 255.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.AlphaThreshold">
      <summary>The minimum alpha value of a solid pixel, between 0 and 255.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.BorderSize">
      <summary>The size of the border line for elements with a filled-border background.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.GlyphIndex">
      <summary>The index into the font for font-based glyphs.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio1">
      <summary>The amount of <see cref="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor1" /> to use in a color gradient. The sum of the five <see langword="GradientRatio" /> properties must equal 255.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio2">
      <summary>The amount of <see cref="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor2" /> to use in a color gradient. The sum of the five <see langword="GradientRatio" /> properties must equal 255.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio3">
      <summary>The amount of <see cref="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor3" /> to use in a color gradient. The sum of the five <see langword="GradientRatio" /> properties must equal 255.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio4">
      <summary>The amount of <see cref="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor4" /> to use in a color gradient. The sum of the five <see langword="GradientRatio" /> properties must equal 255.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio5">
      <summary>The amount of <see cref="F:System.Windows.Forms.VisualStyles.ColorProperty.GradientColor5" /> to use in a color gradient. The sum of the five <see langword="GradientRatio" /> properties must equal 255.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.Height">
      <summary>The height of an element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.ImageCount">
      <summary>The number of state images in multiple-image file.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi1">
      <summary>The minimum dots per inch (DPI) that <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile1" /> was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi2">
      <summary>The minimum DPI that <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile2" /> was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi3">
      <summary>The minimum DPI that <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile3" /> was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi4">
      <summary>The minimum DPI that <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile4" /> was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi5">
      <summary>The minimum DPI that <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile5" /> was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.ProgressChunkSize">
      <summary>The size of progress bar elements.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.ProgressSpaceSize">
      <summary>The size of spaces between progress bar elements.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.RoundCornerHeight">
      <summary>A percentage value that represents the height of a rounded corner, from 0 to 100.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.RoundCornerWidth">
      <summary>A percentage value that represents the width of a rounded corner, from 0 to 100.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.Saturation">
      <summary>The amount of saturation for an image, between 0 and 255.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.TextBorderSize">
      <summary>The size of the border around text characters.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.TrueSizeStretchMark">
      <summary>A percentage value indicating how far a fixed-size element will stretch when the target exceeds the source.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.IntegerProperty.Width">
      <summary>The width of an element.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.MarginProperty">
      <summary>Identifies the margin properties of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.MarginProperty.CaptionMargins">
      <summary>Specifies where caption text can be placed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.MarginProperty.ContentMargins">
      <summary>Specifies where content can be placed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.MarginProperty.SizingMargins">
      <summary>Specifies a margin used for nine-grid sizing.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.OffsetType">
      <summary>Specifies where an offset is applied to a window element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.AboveLastButton">
      <summary>The offset is applied from above the last button.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.BelowLastButton">
      <summary>The offset is applied from below the last button.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.BottomLeft">
      <summary>The offset is applied from the bottom left of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.BottomMiddle">
      <summary>The offset is applied from the bottom middle of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.BottomRight">
      <summary>The offset is applied from the bottom right of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.LeftOfCaption">
      <summary>The offset is applied from the left of the caption.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.LeftOfLastButton">
      <summary>The offset is applied from the left of the last button.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.MiddleLeft">
      <summary>The offset is applied from the middle left of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.MiddleRight">
      <summary>The offset is applied from the middle right of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.RightOfCaption">
      <summary>The offset is applied from the right of the caption.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.RightOfLastButton">
      <summary>The offset is applied from the right of the last button.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.TopLeft">
      <summary>The offset is applied from the top left of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.TopMiddle">
      <summary>The offset is applied from the top middle of the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.OffsetType.TopRight">
      <summary>The offset is applied from the top right of the element.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.PointProperty">
      <summary>Identifies the point properties of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PointProperty.MinSize">
      <summary>The smallest bounds that the image specified by the <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile" /> value was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PointProperty.MinSize1">
      <summary>The smallest bounds that the image specified by the <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile1" /> value was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PointProperty.MinSize2">
      <summary>The smallest bounds that the image specified by the <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile2" /> value was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PointProperty.MinSize3">
      <summary>The smallest bounds that the image specified by the <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile3" /> value was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PointProperty.MinSize4">
      <summary>The smallest bounds that the image specified by the <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile4" /> value was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PointProperty.MinSize5">
      <summary>The smallest bounds that the image specified by the <see cref="F:System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile5" /> value was designed for.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PointProperty.Offset">
      <summary>The offset for window element layouts.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PointProperty.TextShadowOffset">
      <summary>The location of character shadows, relative to origin characters.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.PushButtonState">
      <summary>Specifies the visual state of a button that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PushButtonState.Default">
      <summary>The button has the default appearance.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PushButtonState.Disabled">
      <summary>The button is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PushButtonState.Hot">
      <summary>The button is hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PushButtonState.Normal">
      <summary>The button has the normal appearance.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.PushButtonState.Pressed">
      <summary>The button is pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.RadioButtonState">
      <summary>Specifies the visual state of an option button (also known as a radio button) that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.RadioButtonState.CheckedDisabled">
      <summary>The option button is checked and disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.RadioButtonState.CheckedHot">
      <summary>The option button is checked and hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.RadioButtonState.CheckedNormal">
      <summary>The option button is checked and normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.RadioButtonState.CheckedPressed">
      <summary>The option button is checked and pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedDisabled">
      <summary>The option button is unchecked and disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedHot">
      <summary>The option button is unchecked and hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedNormal">
      <summary>The option button is unchecked and normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedPressed">
      <summary>The option button is unchecked and pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState">
      <summary>Specifies the visual state of a scroll arrow that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownDisabled">
      <summary>The scroll arrow points down and is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownHot">
      <summary>The scroll arrow points down and is hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownNormal">
      <summary>The scroll arrow points down and is normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownPressed">
      <summary>The scroll arrow points down and is pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftDisabled">
      <summary>The scroll arrow points left and is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftHot">
      <summary>The scroll arrow points left and is hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftNormal">
      <summary>The scroll arrow points left and is normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftPressed">
      <summary>The scroll arrow points left and is pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightDisabled">
      <summary>The scroll arrow points right and is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightHot">
      <summary>The scroll arrow points right and is hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightNormal">
      <summary>The scroll arrow points right and is normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightPressed">
      <summary>The scroll arrow points right and is pressed.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpDisabled">
      <summary>The scroll arrow points up and is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpHot">
      <summary>The scroll arrow points up and is hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpNormal">
      <summary>The scroll arrow points up and is normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpPressed">
      <summary>The scroll arrow points up and is pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState">
      <summary>Specifies the visual state of a scroll bar sizing handle that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState.LeftAlign">
      <summary>The sizing handle is aligned to the left.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState.RightAlign">
      <summary>The sizing handle is aligned to the right.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.ScrollBarState">
      <summary>Specifies the visual state of a scroll bar that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarState.Disabled">
      <summary>The scroll bar element is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarState.Hot">
      <summary>The scroll bar element is hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarState.Normal">
      <summary>The scroll bar element is normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ScrollBarState.Pressed">
      <summary>The scroll bar element is pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.SizingType">
      <summary>Specifies how elements with a bitmap background will adjust to fill a bounds.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.SizingType.FixedSize">
      <summary>The element cannot be resized.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.SizingType.Stretch">
      <summary>The background image stretches to fill the bounds.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.SizingType.Tile">
      <summary>The background image repeats the pattern to fill the bounds.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.StringProperty">
      <summary>Identifies the string properties of a visual style element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.StringProperty.Text">
      <summary>The text that will be displayed with the element.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.TabItemState">
      <summary>Specifies the visual state of a tab item that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TabItemState.Disabled">
      <summary>The tab item is disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TabItemState.Hot">
      <summary>The tab item is hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TabItemState.Normal">
      <summary>The tab item is normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TabItemState.Selected">
      <summary>The tab item is selected.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.TextBoxState">
      <summary>Specifies the visual state of a text box that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TextBoxState.Assist">
      <summary>The text box appears in assist mode.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TextBoxState.Disabled">
      <summary>The text box appears disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TextBoxState.Hot">
      <summary>The text box appears hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TextBoxState.Normal">
      <summary>The text box appears normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TextBoxState.Readonly">
      <summary>The text box appears read-only.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TextBoxState.Selected">
      <summary>The text box appears selected.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.TextShadowType">
      <summary>Specifies the type of shadow to add to text.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TextShadowType.Continuous">
      <summary>A continuous shadow is drawn.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TextShadowType.None">
      <summary>No shadow is drawn.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TextShadowType.Single">
      <summary>A single shadow is drawn.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.ToolBarState">
      <summary>Specifies the visual state of a toolbar item that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ToolBarState.Checked">
      <summary>The item is in the checked state.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ToolBarState.Disabled">
      <summary>The item is in the disabled state.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ToolBarState.Hot">
      <summary>The item is in the hot state.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ToolBarState.HotChecked">
      <summary>The item is in the hot and checked states.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ToolBarState.Normal">
      <summary>The item is in the normal state.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.ToolBarState.Pressed">
      <summary>The item is in the pressed state.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.TrackBarThumbState">
      <summary>Specifies the visual state of a track bar slider (also known as a thumb) that is drawn with visual styles.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TrackBarThumbState.Disabled">
      <summary>The slider appears disabled.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TrackBarThumbState.Hot">
      <summary>The slider appears hot.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TrackBarThumbState.Normal">
      <summary>The slider appears normal.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TrackBarThumbState.Pressed">
      <summary>The slider appears pressed.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.TrueSizeScalingType">
      <summary>Specifies the scaling type of a visual style element with a fixed size.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TrueSizeScalingType.Dpi">
      <summary>The element is scaled to dots per inch (DPI) settings.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TrueSizeScalingType.None">
      <summary>No scaling type is specified for the element.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.TrueSizeScalingType.Size">
      <summary>The element is scaled to size settings.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VerticalAlignment">
      <summary>Specifies the vertical alignment for visual style elements with a fixed size.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.VerticalAlignment.Bottom">
      <summary>The element is aligned to the bottom.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.VerticalAlignment.Center">
      <summary>The element is centered vertically.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.VerticalAlignment.Top">
      <summary>The element is aligned to the top.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement">
      <summary>Identifies a control or user interface (UI) element that is drawn with visual styles.</summary>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleElement.CreateElement(System.String,System.Int32,System.Int32)">
      <summary>Creates a new visual style element from the specified class, part, and state values.</summary>
      <param name="className">A string that represents the class name of the visual style element to be created.</param>
      <param name="part">A value that represents the part of the visual style element to be created.</param>
      <param name="state">A value that represents the state of the visual style element to be created.</param>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> with the <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ClassName" />, <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Part" />, and <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleElement.State" /> properties initialized to the <paramref name="className" />, <paramref name="part" />, and <paramref name="state" /> parameters.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ClassName">
      <summary>Gets the class name of the visual style element that this <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> represents.</summary>
      <returns>A string that represents the class name of a visual style element.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Part">
      <summary>Gets a value indicating the part of the visual style element that this <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> represents.</summary>
      <returns>A value that represents the part of a visual style element.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.State">
      <summary>Gets a value indicating the state of the visual style element that this <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> represents.</summary>
      <returns>A value that represents the state of a visual style element.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for button-related controls. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the different states of the check box control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedDisabled">
      <summary>Gets a visual style element that represents a disabled check box in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled check box in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedHot">
      <summary>Gets a visual style element that represents a hot check box in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot check box in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedNormal">
      <summary>Gets a visual style element that represents a normal check box in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal check box in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedPressed">
      <summary>Gets a visual style element that represents a pressed check box in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed check box in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedDisabled">
      <summary>Gets a visual style element that represents a disabled check box in the indeterminate state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled check box in the indeterminate state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedHot">
      <summary>Gets a visual style element that represents a hot check box in the indeterminate state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot check box in the indeterminate state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedNormal">
      <summary>Gets a visual style element that represents a normal check box in the indeterminate state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal check box in the indeterminate state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedPressed">
      <summary>Gets a visual style element that represents a pressed check box in the indeterminate state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed check box in the indeterminate state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedDisabled">
      <summary>Gets a visual style element that represents a disabled check box in the unchecked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled check box in the unchecked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedHot">
      <summary>Gets a visual style element that represents a hot check box in the unchecked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot check box in the unchecked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedNormal">
      <summary>Gets a visual style element that represents a normal check box in the unchecked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal check box in the unchecked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedPressed">
      <summary>Gets a visual style element that represents a pressed check box in the unchecked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed check box in the unchecked state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the different states of the group box control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox.Disabled">
      <summary>Gets a visual style element that represents a disabled group box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled group box.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox.Normal">
      <summary>Gets a visual style element that represents a normal group box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal group box.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the different states of the button control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Default">
      <summary>Gets a visual style element that represents a default button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a default button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Disabled">
      <summary>Gets a visual style element that represents a disabled button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Hot">
      <summary>Gets a visual style element that represents a hot button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Normal">
      <summary>Gets a visual style element that represents a normal button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Pressed">
      <summary>Gets a visual style element that represents a pressed button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed button.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the different states of the radio button control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedDisabled">
      <summary>Gets a visual style element that represents a disabled radio button in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled radio button in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedHot">
      <summary>Gets a visual style element that represents a hot radio button in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot radio button in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedNormal">
      <summary>Gets a visual style element that represents a normal radio button in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal radio button in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedPressed">
      <summary>Gets a visual style element that represents a pressed radio button in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed radio button in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedDisabled">
      <summary>Gets a visual style element that represents a disabled radio button in the unchecked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled radio button in the unchecked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedHot">
      <summary>Gets a visual style element that represents a hot radio button in the unchecked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot radio button in the unchecked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedNormal">
      <summary>Gets a visual style element that represents a normal radio button in the unchecked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal radio button in the unchecked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedPressed">
      <summary>Gets a visual style element that represents a pressed radio button in the unchecked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed radio button in the unchecked state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a user button. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton.Normal">
      <summary>Gets a visual style element that represents a user button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a user button.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox">
      <summary>Contains a class that provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the drop-down arrow of the combo box control. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the different states of the drop-down arrow of the combo box control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Disabled">
      <summary>Gets a visual style element that represents a drop-down arrow in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down arrow in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Hot">
      <summary>Gets a visual style element that represents a drop-down arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Normal">
      <summary>Gets a visual style element that represents a drop-down arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Pressed">
      <summary>Gets a visual style element that represents a drop-down arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down arrow in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each part of the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground.Normal">
      <summary>Gets a visual style element that represents the background of the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of the Explorer Bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Close button of the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Hot">
      <summary>Gets a visual style element that represents a Close button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Close button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Normal">
      <summary>Gets a visual style element that represents a Close button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Close button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Pressed">
      <summary>Gets a visual style element that represents a Close button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Close button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Auto Hide button (which is displayed as a push pin) of the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Hot">
      <summary>Gets a visual style element that represents an Auto Hide button (which is displayed as a push pin) in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an Auto Hide button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Normal">
      <summary>Gets a visual style element that represents an Auto Hide button (which is displayed as a push pin) in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an Auto Hide button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Pressed">
      <summary>Gets a visual style element that represents an Auto Hide button (which is displayed as a push pin) in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an Auto Hide button in the pressed state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedHot">
      <summary>Gets a visual style element that represents a selected Auto Hide button (which is displayed as a push pin) in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a selected Auto Hide button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedNormal">
      <summary>Gets a visual style element that represents a selected Auto Hide button (which is displayed as a push pin) in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a selected Auto Hide button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedPressed">
      <summary>Gets a visual style element that represents a selected Auto Hide button (which is displayed as a push pin) in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a selected Auto Hide button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the expanded-menu arrow of the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Hot">
      <summary>Gets a visual style element that represents a hot menu button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot menu button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Normal">
      <summary>Gets a visual style element that represents a normal menu button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal menu button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Pressed">
      <summary>Gets a visual style element that represents a pressed menu button.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed menu button.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of a common group of items in the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground.Normal">
      <summary>Gets a visual style element that represents the background of a common group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of a common group of items in the Explorer Bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the collapse button of a common group of items in the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Hot">
      <summary>Gets a visual style element that represents a hot collapse button of a common group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot collapse button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Normal">
      <summary>Gets a visual style element that represents a normal collapse button of a common group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal collapse button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Pressed">
      <summary>Gets a visual style element that represents a pressed collapse button of a common group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed collapse button.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the expand button of a common group of items in the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Hot">
      <summary>Gets a visual style element that represents a hot expand button of a common group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot expand button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Normal">
      <summary>Gets a visual style element that represents a normal expand button of a common group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal expand button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Pressed">
      <summary>Gets a visual style element that represents a pressed expand button of a common group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed expand button.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the title bar of a common group of items in the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead.Normal">
      <summary>Gets a visual style element that represents the title bar of a common group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a common group of items in the Explorer Bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of a special group of items in the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground.Normal">
      <summary>Gets a visual style element that represents the background of a special group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of a special group of items in the Explorer Bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the collapse button of a special group of items in the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Hot">
      <summary>Gets a visual style element that represents a hot collapse button of a special group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot collapse button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Normal">
      <summary>Gets a visual style element that represents a normal collapse button of a special group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal collapse button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Pressed">
      <summary>Gets a visual style element that represents a pressed collapse button of a special group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed collapse button.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the expand button of a special group of items in the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Hot">
      <summary>Gets a visual style element that represents a hot expand button of a special group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot expand button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Normal">
      <summary>Gets a visual style element that represents a normal expand button of a special group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal expand button.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Pressed">
      <summary>Gets a visual style element that represents a pressed expand button of a special group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed expand button.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the title bar of a special group of items in the Explorer Bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead.Normal">
      <summary>Gets a visual style element that represents the title bar of a special group of items in the Explorer Bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a special group of items in the Explorer Bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each part of the header control. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of an item of the header control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Hot">
      <summary>Gets a visual style element that represents a hot header item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot header item.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Normal">
      <summary>Gets a visual style element that represents a normal header item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal header item.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Pressed">
      <summary>Gets a visual style element that represents a pressed header item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed header item.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the leftmost item of the header control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Hot">
      <summary>Gets a visual style element that represents the leftmost header item in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the leftmost header item in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Normal">
      <summary>Gets a visual style element that represents the leftmost header item in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the leftmost header item in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Pressed">
      <summary>Gets a visual style element that represents the leftmost header item in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the leftmost header item in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the rightmost item of the header control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Hot">
      <summary>Gets a visual style element that represents the rightmost header item in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the rightmost header item in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Normal">
      <summary>Gets a visual style element that represents the rightmost header item in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the rightmost header item in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Pressed">
      <summary>Gets a visual style element that represents the rightmost header item in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the rightmost header item in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the sort arrow of a header item. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow.SortedDown">
      <summary>Gets a visual style element that represents a downward-pointing sort arrow.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing sort arrow.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow.SortedUp">
      <summary>Gets a visual style element that represents an upward-pointing sort arrow.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing sort arrow.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of the list view control. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a list view in detail view. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail.Normal">
      <summary>Gets a visual style element that represents a list view in detail view.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a list view in detail view.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the text area of a list view that contains no items. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText.Normal">
      <summary>Gets a visual style element that represents the text area of a list view that contains no items.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the text area that accompanies an empty list view.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a list view item group. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group.Normal">
      <summary>Gets a visual style element that represents a list view item group.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a group of list view items.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of an item of the list view control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Disabled">
      <summary>Gets a visual style element that represents a disabled list view item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled list view item.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Hot">
      <summary>Gets a visual style element that represents a hot list view item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot list view item.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Normal">
      <summary>Gets a visual style element that represents a normal list view item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal list view item.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Selected">
      <summary>Gets a visual style element that represents a selected list view item that has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a selected list view item that has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.SelectedNotFocus">
      <summary>Gets a visual style element that represents a selected list view item without focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a selected list view item without focus.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a sorted list view control in detail view This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail.Normal">
      <summary>Gets a visual style element that represents a sorted list view control in detail view.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a sorted list view control in detail view.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of a menu. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the drop-down arrow of a menu bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown.Normal">
      <summary>Gets a visual style element that represents the drop-down arrow of a menu bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the drop-down arrow of a menu bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a menu bar item. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem.Normal">
      <summary>Gets a visual style element that represents a menu bar item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a menu bar item.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the chevron of a menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron.Normal">
      <summary>Gets a visual style element that represents a menu chevron.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a menu chevron.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the drop-down arrow of a menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown.Normal">
      <summary>Gets a visual style element that represents the drop-down arrow of a menu.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the drop-down arrow of a menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a menu item. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Demoted">
      <summary>Gets a visual style element that represents a menu item that has been demoted.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a menu item that has been demoted.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Normal">
      <summary>Gets a visual style element that represents a menu item in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a menu item in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Selected">
      <summary>Gets a visual style element that represents a menu item in the selected state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a menu item in the selected state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a menu item separator. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator.Normal">
      <summary>Gets a visual style element that represents a menu item separator.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a menu item separator.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of a menu band. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the new application button of a menu band. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Checked">
      <summary>Gets a visual style element that represents the new application button in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the new application button in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Disabled">
      <summary>Gets a visual style element that represents the new application button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the new application button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Hot">
      <summary>Gets a visual style element that represents the new application button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the new application button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.HotChecked">
      <summary>Gets a visual style element that represents the new application button in the hot and checked states.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the new application button in the hot and checked states.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Normal">
      <summary>Gets a visual style element that represents the new application button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the new application button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Pressed">
      <summary>Gets a visual style element that represents the new application button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the new application button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a menu band separator. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator.Normal">
      <summary>Gets a visual style element that represents a separator between items in a menu band.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a separator between items in a menu band.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of a page. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a down indicator in an up-down or spin box control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Disabled">
      <summary>Gets a visual style element that represents the disabled state of the down indicator in an up-down or spin box control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a down indicator of an up-down or spin box control in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Hot">
      <summary>Gets a visual style element that represents a down indicator of an up-down or spin box control in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the down indicator of an up-down or spin box in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Normal">
      <summary>Gets a visual style element that represents the down indicator of an up-down or spin box control in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a down indicator up an up-down or spin box control in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Pressed">
      <summary>Gets a visual style element that represents the down indicator of an up-down or spin box in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a down indicator of an up-down or spin box in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a page backward indicator in a pager control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Disabled">
      <summary>Gets a visual style element that represents a page backward indicator of a pager control in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page backward indicator of a pager control in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Hot">
      <summary>Gets a visual style element that represents a page backward indicator of a pager control in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page backward indicator of a pager control in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Normal">
      <summary>Gets a visual style element that represents a page backward indicator of a pager control in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page backward indicator of a pager control in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Pressed">
      <summary>Gets a visual style element that represents a page backward indicator of a pager control in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents page backward indicator of a pager control in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a page up indicator of an up-down or spin box control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Disabled">
      <summary>Gets a visual style element that represents a page up indicator of an up-down or spin box control in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page up indicator of an up-down or spin box control in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Hot">
      <summary>Gets a visual style element that represents a page up indicator of an up-down or spin box control in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page up indicator of an up-down or spin box control in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Normal">
      <summary>Gets a visual style element that represents a page up indicator of an up-down or spin box control in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page up indicator of an up-down or spin box control in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Pressed">
      <summary>Gets a visual style element that represents a page up indicator of an up-down or spin box control in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page up indicator of an up-down or spin box control in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a page forward indicator of a pager control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Disabled">
      <summary>Gets a visual style element that represents a page forward indicator of a pager control in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page forward indicator of a pager control in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Hot">
      <summary>Gets a visual style element that represents a page forward indicator of a pager control in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page forward indicator of a pager control in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Normal">
      <summary>Gets a visual style element that represents a page forward indicator of a pager control in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page forward indicator of a pager control in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Pressed">
      <summary>Gets a visual style element that represents a page forward indicator of a pager control in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a page forward indicator of a pager control in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of the progress bar control. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the frame of a horizontal progress bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar.Normal">
      <summary>Gets a visual style element that represents a horizontal progress bar frame.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal progress bar frame.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the frame of a vertical progress bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical.Normal">
      <summary>Gets a visual style element that represents a vertical progress bar frame.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical progress bar frame.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the pieces that fill a horizontal progress bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk.Normal">
      <summary>Gets a visual style element that represents the pieces that fill a horizontal progress bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the pieces that fill a horizontal progress bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the pieces that fill a vertical progress bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical.Normal">
      <summary>Gets a visual style element that represents the pieces that fill a vertical progress bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the pieces that fill a vertical progress bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of the rebar control. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a rebar band. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band.Normal">
      <summary>Gets a visual style element that represents a rebar band.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a rebar band.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a horizontal chevron. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Hot">
      <summary>Gets a visual style element that represents a hot chevron.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot chevron.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Normal">
      <summary>Gets a visual style element that represents a normal chevron.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal chevron.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Pressed">
      <summary>Gets a visual style element that represents a pressed chevron.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed chevron.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a chevron. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Hot">
      <summary>Gets a visual style element that represents a hot chevron.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot chevron.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Normal">
      <summary>Gets a visual style element that represents a normal chevron.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal chevron.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Pressed">
      <summary>Gets a visual style element that represents a pressed chevron.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed chevron.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the gripper bar of a horizontal rebar control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper.Normal">
      <summary>Gets a visual style element that represents a gripper bar for a horizontal rebar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a gripper bar for a horizontal rebar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the gripper bar of a vertical rebar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical.Normal">
      <summary>Gets a visual style element that represents a gripper bar for a vertical rebar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a gripper bar for a vertical rebar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of the scroll bar control. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state and direction of a scroll arrow. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownDisabled">
      <summary>Gets a visual style element that represents a downward-pointing scroll arrow in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing scroll arrow in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownHot">
      <summary>Gets a visual style element that represents a downward-pointing scroll arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing scroll arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownNormal">
      <summary>Gets a visual style element that represents a downward-pointing scroll arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing scroll arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownPressed">
      <summary>Gets a visual style element that represents a downward-pointing scroll arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing scroll arrow in the pressed state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftDisabled">
      <summary>Gets a visual style element that represents a left-pointing scroll arrow in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing scroll arrow in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftHot">
      <summary>Gets a visual style element that represents a left-pointing scroll arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing scroll arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftNormal">
      <summary>Gets a visual style element that represents a left-pointing scroll arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing scroll arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftPressed">
      <summary>Gets a visual style element that represents a left-pointing scroll arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing scroll arrow in the pressed state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightDisabled">
      <summary>Gets a visual style element that represents a right-pointing scroll arrow in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing scroll arrow in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightHot">
      <summary>Gets a visual style element that represents a right-pointing scroll arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing scroll arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightNormal">
      <summary>Gets a visual style element that represents a right-pointing scroll arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing scroll arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightPressed">
      <summary>Gets a visual style element that represents a right-pointing scroll arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing scroll arrow in the pressed state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpDisabled">
      <summary>Gets a visual style element that represents an upward-pointing scroll arrow in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing scroll arrow in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpHot">
      <summary>Gets a visual style element that represents an upward-pointing scroll arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing scroll arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpNormal">
      <summary>Gets a visual style element that represents an upward-pointing scroll arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing scroll arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpPressed">
      <summary>Gets a visual style element that represents an upward-pointing scroll arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing scroll arrow in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the grip of a horizontal scroll box (also known as the thumb). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal.Normal">
      <summary>Gets a visual style element that represents a grip for a horizontal scroll box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a grip for a horizontal scroll box.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the grip of a vertical scroll box (also known as the thumb). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical.Normal">
      <summary>Gets a visual style element that represents a grip for a vertical scroll box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a grip for a vertical scroll box.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the left part of a horizontal scroll bar track. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Disabled">
      <summary>Gets a visual style element that represents the left part of a horizontal scroll bar track in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the left part of a horizontal scroll bar track in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Hot">
      <summary>Gets a visual style element that represents the left part of a horizontal scroll bar track in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the left part of a horizontal scroll bar track in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Normal">
      <summary>Gets a visual style element that represents the left part of a horizontal scroll bar track in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the left part of a horizontal scroll bar track in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Pressed">
      <summary>Gets a visual style element that represents the left part of a horizontal scroll bar track in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the left part of a horizontal scroll bar track in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the lower part of a vertical scroll bar track. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Disabled">
      <summary>Gets a visual style element that represents the lower part of a vertical scroll bar track in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the lower part of a vertical scroll bar track in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Hot">
      <summary>Gets a visual style element that represents the lower part of a vertical scroll bar track in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the lower part of a vertical scroll bar track in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Normal">
      <summary>Gets a visual style element that represents the lower part of a vertical scroll bar track in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the lower part of a vertical scroll bar track in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Pressed">
      <summary>Gets a visual style element that represents the lower part of a vertical scroll bar track in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the lower part of a vertical scroll bar track in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the right part of a horizontal scroll bar track. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Disabled">
      <summary>Gets a visual style element that represents the right part of a horizontal scroll bar track in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the right part of a horizontal scroll bar track in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Hot">
      <summary>Gets a visual style element that represents the right part of a horizontal scroll bar track in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the right part of a horizontal scroll bar track in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Normal">
      <summary>Gets a visual style element that represents the right part of a horizontal scroll bar track in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the right part of a horizontal scroll bar track in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Pressed">
      <summary>Gets a visual style element that represents the right part of a horizontal scroll bar track in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the right part of a horizontal scroll bar track in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the sizing handle of a scroll bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox.LeftAlign">
      <summary>Gets a visual style element that represents a sizing handle that is aligned to the left.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a sizing handle that is aligned to the left.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox.RightAlign">
      <summary>Gets a visual style element that represents a sizing handle that is aligned to the right.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a sizing handle that is aligned to the right.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a horizontal scroll box (also known as the thumb). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Disabled">
      <summary>Gets a visual style element that represents a horizontal scroll box in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll box in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Hot">
      <summary>Gets a visual style element that represents a horizontal scroll box in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll box in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Normal">
      <summary>Gets a visual style element that represents a horizontal scroll box in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll box in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Pressed">
      <summary>Gets a visual style element that represents a horizontal scroll box in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll box in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a vertical scroll box (also known as the thumb). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Disabled">
      <summary>Gets a visual style element that represents a vertical scroll box in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll box in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Hot">
      <summary>Gets a visual style element that represents a vertical scroll box in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll box in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Normal">
      <summary>Gets a visual style element that represents a vertical scroll box in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll box in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Pressed">
      <summary>Gets a visual style element that represents a vertical scroll box in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll box in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the upper part of a vertical scroll bar track. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Disabled">
      <summary>Gets a visual style element that represents the upper part of a vertical scroll bar track in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the upper part of a vertical scroll bar track in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Hot">
      <summary>Gets a visual style element that represents the upper part of a vertical scroll bar track in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the upper part of a vertical scroll bar track in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Normal">
      <summary>Gets a visual style element that represents the upper part of a vertical scroll bar track in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the upper part of a vertical scroll bar track in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Pressed">
      <summary>Gets a visual style element that represents the upper part of a vertical scroll bar track in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the upper part of a vertical scroll bar track in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the arrows of a spin button control (also known as an up-down control). This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the downward-pointing arrow for a spin button control (also known as an up-down control). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Disabled">
      <summary>Gets a visual style element that represents a downward-pointing spin button arrow in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing spin button arrow in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Hot">
      <summary>Gets a visual style element that represents a downward-pointing spin button arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing spin button arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Normal">
      <summary>Gets a visual style element that represents a downward-pointing spin button arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing spin button arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Pressed">
      <summary>Gets a visual style element that represents a downward-pointing spin button arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing spin button arrow in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the left-pointing arrow for a spin button control (also known as an up-down control). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Disabled">
      <summary>Gets a visual style element that represents a left-pointing spin button arrow in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing spin button arrow in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Hot">
      <summary>Gets a visual style element that represents a left-pointing spin button arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing spin button arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Normal">
      <summary>Gets a visual style element that represents a left-pointing spin button arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing spin button arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Pressed">
      <summary>Gets a visual style element that represents a left-pointing spin button arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing spin button arrow in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the upward-pointing arrow for a spin button control (also known as an up-down control). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Disabled">
      <summary>Gets a visual style element that represents an upward-pointing spin button arrow in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing spin button arrow in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Hot">
      <summary>Gets a visual style element that represents an upward-pointing spin button arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing spin button arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Normal">
      <summary>Gets a visual style element that represents an upward-pointing spin button arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing spin button arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Pressed">
      <summary>Gets a visual style element that represents an upward-pointing spin button arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing spin button arrow in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the right-pointing arrow for a spin button control (also known as an up-down control). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Disabled">
      <summary>Gets a visual style element that represents a right-pointing spin button arrow in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing spin button arrow in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Hot">
      <summary>Gets a visual style element that represents a right-pointing spin button arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing spin button arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Normal">
      <summary>Gets a visual style element that represents a right-pointing spin button arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing spin button arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Pressed">
      <summary>Gets a visual style element that represents a right-pointing spin button arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing spin button arrow in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the bottom border of the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff.Normal">
      <summary>Gets a visual style element that represents the bottom border of the Start menu.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the bottom border of the Start menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Log Off and Shut Down buttons in the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Hot">
      <summary>Gets a visual style element that represents the Log Off and Shut Down buttons in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Log Off and Shut Down buttons in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Normal">
      <summary>Gets a visual style element that represents the Log Off and Shut Down buttons in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Log Off and Shut Down buttons in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Pressed">
      <summary>Gets a visual style element that represents the Log Off and Shut Down buttons in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Log Off and Shut Down buttons in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of the All Programs item in the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms.Normal">
      <summary>Gets a visual style element that represents the background of the All Programs menu item.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of the All Programs menu item.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the All Programs arrow in the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Hot">
      <summary>Gets a visual style element that represents the All Programs arrow in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the All Programs arrow in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Normal">
      <summary>Gets a visual style element that represents the All Programs arrow in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the All Programs arrow in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Pressed">
      <summary>Gets a visual style element that represents the All Programs arrow in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the All Programs arrow in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of the right side of the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList.Normal">
      <summary>Gets a visual style element that represents the background of the right side of the Start menu.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of the right side of the Start menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the bar that separates groups of items in the right side of the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator.Normal">
      <summary>Gets a visual style element that represents the bar that separates groups of items in the right side of the Start menu.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the bar that separates groups of items in the right side of the Start menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the preview area of the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview.Normal">
      <summary>Gets a visual style element that represents the preview area of the Start menu.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the preview area of the Start menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of the left side of the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList.Normal">
      <summary>Gets a visual style element that represents the background of the left side of the Start menu.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of the left side of the Start menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the bar that separates groups of items in the left side of the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator.Normal">
      <summary>Gets a visual style element that represents the bar that separates groups of items in the left side of the Start menu.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the bar that separates groups of items in the left side of the Start menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the top border of the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane.Normal">
      <summary>Gets a visual style element that represents the top border of the Start menu.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the top border of the Start menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of the user picture on the Start menu. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture.Normal">
      <summary>Gets a visual style element that represents the background of the user picture on the Start menu.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of the user picture on the Start menu.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of the status bar. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of the status bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar.Normal">
      <summary>Gets a visual style element that represents the background of the status bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of the status bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the grip of the status bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper.Normal">
      <summary>Gets a visual style element that represents the status bar grip.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the status bar grip.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the pane of the grip in the status bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane.Normal">
      <summary>Gets a visual style element that represents a pane for the status bar grip.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pane for the status bar grip.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a status bar pane. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane.Normal">
      <summary>Gets a visual style element that represents a status bar pane.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a status bar pane.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of a tab control. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the interior of a tab control page. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body.Normal">
      <summary>Gets a visual style element that represents the interior of a tab control page.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the interior of a tab control page.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the border of a tab control page. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane.Normal">
      <summary>Gets a visual style element that represents the border of a tab control page.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the border of a tab control page.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a tab control that shares its top, left, and right borders with other tab controls. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Disabled">
      <summary>Gets a visual style element that represents a disabled tab control that shares its top, left, and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled tab control that shares its top, left, and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Hot">
      <summary>Gets a visual style element that represents a hot tab control that shares its top, left, and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot tab control that shares its top, left, and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Normal">
      <summary>Gets a visual style element that represents a normal tab control that shares its top, left, and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal tab control that shares its top, left, and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Pressed">
      <summary>Gets a visual style element that represents a pressed tab control that shares its top, left, and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed tab control that shares its top, left, and right borders with other tab controls.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a tab control that shares its top border with another tab control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges.Normal">
      <summary>Gets a visual style element that represents a tab control that shares its top border with another tab control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a tab control that shares its top border with another tab control.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a tab control that shares its top and right borders with other tab controls. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Disabled">
      <summary>Gets a visual style element that represents a disabled tab control that shares its top and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled tab control that shares its top and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Hot">
      <summary>Gets a visual style element that represents a hot tab control that shares its top and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot tab control that shares its top and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Normal">
      <summary>Gets a visual style element that represents a normal tab control that shares its top and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal tab control that shares its top and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Pressed">
      <summary>Gets a visual style element that represents a pressed tab control that shares its top and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed tab control that shares its top and right borders with other tab controls.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a tab control that shares its top and left borders with other tab controls. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Disabled">
      <summary>Gets a visual style element that represents a disabled tab control that shares its top and left borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled tab control that shares its top and left borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Hot">
      <summary>Gets a visual style element that represents a hot tab control that shares its top and left borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot tab control that shares its top and left borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Normal">
      <summary>Gets a visual style element that represents a normal tab control that shares its top and left borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal tab control that shares its top and left borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Pressed">
      <summary>Gets a visual style element that represents a pressed tab control that shares its top and left borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed tab control that shares its top and left borders with other tab controls.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a tab control that shares its bottom, left, and right borders with other tab controls. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Disabled">
      <summary>Gets a visual style element that represents a disabled tab control that shares its bottom, left, and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled tab control that shares its bottom, left, and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Hot">
      <summary>Gets a visual style element that represents a hot tab control that shares its bottom, left, and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot tab control that shares its bottom, left, and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Normal">
      <summary>Gets a visual style element that represents a normal tab control that shares its bottom, left, and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal tab control that shares its bottom, left, and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Pressed">
      <summary>Gets a visual style element that represents a pressed tab control that shares its bottom, left, and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed tab control that shares its bottom, left, and right borders with other tab controls.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a tab control that shares its bottom border with another tab control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges.Normal">
      <summary>Gets a visual style element that represents a tab control that shares its bottom border with another tab control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a tab control that shares its bottom border with another tab control.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a tab control that shares its bottom and right borders with other tab controls. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Disabled">
      <summary>Gets a visual style element that represents a disabled tab control that shares its bottom and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled tab control that shares its bottom and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Hot">
      <summary>Gets a visual style element that represents a hot tab control that shares its bottom and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot tab control that shares its bottom and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Normal">
      <summary>Gets a visual style element that represents a normal tab control that shares its bottom and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal tab control that shares its bottom and right borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Pressed">
      <summary>Gets a visual style element that represents a pressed tab control that shares its bottom and right borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed tab control that shares its bottom and right borders with other tab controls.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a tab control that shares its bottom and left borders with other tab controls. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Disabled">
      <summary>Gets a visual style element that represents a disabled tab control that shares its bottom and left borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled tab control that shares its bottom and left borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Hot">
      <summary>Gets a visual style element that represents a hot tab control that shares its bottom and left borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot tab control that shares its bottom and left borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Normal">
      <summary>Gets a visual style element that represents a normal tab control that shares its bottom and left borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal tab control that shares its bottom and left borders with other tab controls.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Pressed">
      <summary>Gets a visual style element that represents a pressed tab control that shares its bottom and left borders with other tab controls.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a pressed tab control that shares its bottom and left borders with other tab controls.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for parts of the taskbar. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a flashing window button in the taskbar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton.Normal">
      <summary>Gets a visual style element that represents a flashing window button in the taskbar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a flashing window button in the taskbar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a flashing menu item of a window button in the taskbar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu.Normal">
      <summary>Gets a visual style element that represents a flashing menu item for a window button in the taskbar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a flashing menu item for a window button in the taskbar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a group counter of the taskbar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount.Normal">
      <summary>Gets a visual style element that represents a group counter for the taskbar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a group counter for the taskbar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of the taskbar. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of a taskbar that is docked on the bottom of the screen. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom.Normal">
      <summary>Gets a visual style element that represents the background of a taskbar that is docked on the bottom of the screen.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of a taskbar that is docked on the bottom of the screen.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of a taskbar that is docked on the left side of the screen. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft.Normal">
      <summary>Gets a visual style element that represents the background of a taskbar that is docked on the left side of the screen.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of a taskbar that is docked on the left side of the screen.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of a taskbar that is docked on the right side of the screen. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight.Normal">
      <summary>Gets a visual style element that represents the background of a taskbar that is docked on the right side of the screen.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of a taskbar that is docked on the right side of the screen.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of a taskbar that is docked on the top of the screen. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop.Normal">
      <summary>Gets a visual style element that represents the background of a taskbar that is docked on the top of the screen.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of a taskbar that is docked on the top of the screen.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the sizing bar of a taskbar that is docked on the bottom of the screen. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom.Normal">
      <summary>Gets a visual style element that represents the sizing bar for a taskbar that is docked on the bottom of the screen.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing bar for a taskbar that is docked on the bottom of the screen.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the sizing bar of a taskbar that is docked on the left side of the screen. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft.Normal">
      <summary>Gets a visual style element that represents the sizing bar for a taskbar that is docked on the left side of the screen.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing bar for a taskbar that is docked on the left side of the screen.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the sizing bar of a taskbar that is docked on the right side of the screen. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight.Normal">
      <summary>Gets a visual style element that represents the sizing bar for a taskbar that is docked on the right side of the screen.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing bar for a taskbar that is docked on the right side of the screen.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the sizing bar of a taskbar that is docked on the top of the screen. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop.Normal">
      <summary>Gets a visual style element that represents the sizing bar for a taskbar that is docked on the top of the screen.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing bar for a taskbar that is docked on the top of the screen.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock">
      <summary>Contains a class that provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of the taskbar clock. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of the taskbar clock. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time.Normal">
      <summary>Gets a visual style element that represents the background of the taskbar clock.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of the taskbar clock.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of a text box. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the caret of a text box. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret.Normal">
      <summary>Gets a visual style element that represents a text box caret.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the insertion point of a text box.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a text box. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Assist">
      <summary>Gets a visual style element that represents a text box in assist mode.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a text box in assist mode.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Disabled">
      <summary>Gets a visual style element that represents a disabled text box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a disabled text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Focused">
      <summary>Gets a visual style element that represents a text box that has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a text box that has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Hot">
      <summary>Gets a visual style element that represents a hot text box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a hot text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Normal">
      <summary>Gets a visual style element that represents a normal text box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a normal text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.ReadOnly">
      <summary>Gets a visual style element that represents a read-only text box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a read-only text box.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Selected">
      <summary>Gets a visual style element that represents a selected text box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a selected text box.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of a toolbar. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a toolbar button. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Checked">
      <summary>Gets a visual style element that represents a toolbar button in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a toolbar button in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Disabled">
      <summary>Gets a visual style element that represents a toolbar button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a toolbar button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Hot">
      <summary>Gets a visual style element that represents a toolbar button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a toolbar button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.HotChecked">
      <summary>Gets a visual style element that represents a toolbar button in the hot and checked states.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a toolbar button in the hot and checked states.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Normal">
      <summary>Gets a visual style element that represents a toolbar button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a toolbar button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Pressed">
      <summary>Gets a visual style element that represents a toolbar button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a toolbar button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a drop-down toolbar button. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Checked">
      <summary>Gets a visual style element that represents a drop-down toolbar button in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down toolbar button in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Disabled">
      <summary>Gets a visual style element that represents a drop-down toolbar button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down toolbar button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Hot">
      <summary>Gets a visual style element that represents a drop-down toolbar button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down toolbar button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.HotChecked">
      <summary>Gets a visual style element that represents a drop-down toolbar button in the hot and checked states.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down toolbar button in the hot and checked states.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Normal">
      <summary>Gets a visual style element that represents a drop-down toolbar button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down toolbar button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Pressed">
      <summary>Gets a visual style element that represents a drop-down toolbar button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a drop-down toolbar button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a horizontal separator of the toolbar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal.Normal">
      <summary>Gets a visual style element that represents a horizontal separator of the toolbar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal separator of the toolbar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a vertical separator of the toolbar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical.Normal">
      <summary>Gets a visual style element that represents a vertical separator of the toolbar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical separator of the toolbar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the regular button portion of a combined regular button and drop-down button. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Checked">
      <summary>Gets a visual style element that represents a split button in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split button in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Disabled">
      <summary>Gets a visual style element that represents a split button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Hot">
      <summary>Gets a visual style element that represents a split button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.HotChecked">
      <summary>Gets a visual style element that represents a split button in the hot and checked states.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split button in the hot and checked states.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Normal">
      <summary>Gets a visual style element that represents a split button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Pressed">
      <summary>Gets a visual style element that represents a split button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the drop-down portion of a combined regular button and drop-down button. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Checked">
      <summary>Gets a visual style element that represents a split drop-down button in the checked state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split drop-down button in the checked state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Disabled">
      <summary>Gets a visual style element that represents a split drop-down button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split drop-down button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Hot">
      <summary>Gets a visual style element that represents a split drop-down button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split drop-down button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.HotChecked">
      <summary>Gets a visual style element that represents a split drop-down button in the hot and checked states.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split drop-down button in the hot and checked states.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Normal">
      <summary>Gets a visual style element that represents a split drop-down button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split drop-down button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Pressed">
      <summary>Gets a visual style element that represents a split drop-down button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a split drop-down button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of a ToolTip. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for a balloon ToolTip. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon.Link">
      <summary>Gets a visual style element that represents a balloon ToolTip that contains a link.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a balloon ToolTip that contains a link.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon.Normal">
      <summary>Gets a visual style element that represents a balloon ToolTip that contains text.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a balloon ToolTip that contains text.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the title area of a balloon ToolTip. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle.Normal">
      <summary>Gets a visual style element that represents the title area of a balloon ToolTip.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title area of a balloon ToolTip.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Close button of a ToolTip. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Hot">
      <summary>Gets a visual style element that represents the ToolTip Close button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the ToolTip Close button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Normal">
      <summary>Gets a visual style element that represents the ToolTip Close button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the ToolTip Close button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Pressed">
      <summary>Gets a visual style element that represents the ToolTip Close button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the ToolTip Close button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for a standard ToolTip. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard.Link">
      <summary>Gets a visual style element that represents a standard ToolTip that contains a link.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a standard ToolTip that contains a link.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard.Normal">
      <summary>Gets a visual style element that represents a standard ToolTip that contains text.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a standard ToolTip that contains text.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the title area of a standard ToolTip. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle.Normal">
      <summary>Gets a visual style element that represents the title area of a standard ToolTip.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title area of a standard ToolTip.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of the track bar control. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the slider (also known as the thumb) of a horizontal track bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Disabled">
      <summary>Gets a visual style element that represents the slider of a horizontal track bar in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a horizontal track bar in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Focused">
      <summary>Gets a visual style element that represents the slider of a horizontal track bar that has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a horizontal track bar that has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Hot">
      <summary>Gets a visual style element that represents the slider of a horizontal track bar in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a horizontal track bar in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Normal">
      <summary>Gets a visual style element that represents the slider of a horizontal track bar in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a horizontal track bar in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Pressed">
      <summary>Gets a visual style element that represents the slider of a horizontal track bar in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a horizontal track bar in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the downward-pointing track bar slider (also known as the thumb). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Disabled">
      <summary>Gets a visual style element that represents a downward-pointing track bar slider in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing track bar slider in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Focused">
      <summary>Gets a visual style element that represents a downward-pointing track bar slider that has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing track bar slider that has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Hot">
      <summary>Gets a visual style element that represents a downward-pointing track bar slider in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing track bar slider in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Normal">
      <summary>Gets a visual style element that represents a downward-pointing track bar slider in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing track bar slider in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Pressed">
      <summary>Gets a visual style element that represents a downward-pointing track bar slider in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a downward-pointing track bar slider in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the left-pointing track bar slider (also known as the thumb). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Disabled">
      <summary>Gets a visual style element that represents a left-pointing track bar slider in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing track bar slider in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Focused">
      <summary>Gets a visual style element that represents a left-pointing track bar slider that has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing track bar slider that has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Hot">
      <summary>Gets a visual style element that represents a left-pointing track bar slider in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing track bar slider in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Normal">
      <summary>Gets a visual style element that represents a left-pointing track bar slider in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing track bar slider in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Pressed">
      <summary>Gets a visual style element that represents a left-pointing track bar slider in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a left-pointing track bar slider in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the right-pointing track bar slider (also known as the thumb). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Disabled">
      <summary>Gets a visual style element that represents a right-pointing track bar slider in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing track bar slider in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Focused">
      <summary>Gets a visual style element that represents a right-pointing track bar slider that has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing track bar slider that has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Hot">
      <summary>Gets a visual style element that represents a right-pointing track bar slider in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing track bar slider in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Normal">
      <summary>Gets a visual style element that represents a right-pointing track bar slider in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing track bar slider in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Pressed">
      <summary>Gets a visual style element that represents a right-pointing track bar slider in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a right-pointing track bar slider in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the upward-pointing track bar slider (also known as the thumb). This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Disabled">
      <summary>Gets a visual style element that represents an upward-pointing track bar slider in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing track bar slider in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Focused">
      <summary>Gets a visual style element that represents an upward-pointing track bar slider that has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing track bar slider that has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Hot">
      <summary>Gets a visual style element that represents an upward-pointing track bar slider in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing track bar slider in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Normal">
      <summary>Gets a visual style element that represents an upward-pointing track bar slider in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing track bar slider in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Pressed">
      <summary>Gets a visual style element that represents an upward-pointing track bar slider in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an upward-pointing track bar slider in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the slider (also known as the thumb) of a vertical track bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Disabled">
      <summary>Gets a visual style element that represents the slider of a vertical track bar in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a vertical track bar in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Focused">
      <summary>Gets a visual style element that represents the slider of a vertical track bar that has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a vertical track bar that has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Hot">
      <summary>Gets a visual style element that represents the slider of a vertical track bar in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a vertical track bar in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Normal">
      <summary>Gets a visual style element that represents the slider of a vertical track bar in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a vertical track bar in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Pressed">
      <summary>Gets a visual style element that represents the slider of a vertical track bar in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the slider of a vertical track bar in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a single tick of a horizontal track bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks.Normal">
      <summary>Gets a visual style element that represents a single tick of a horizontal track bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a single tick of a horizontal track bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a single tick of a vertical track bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical.Normal">
      <summary>Gets a visual style element that represents a single tick of a vertical track bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a single tick of a vertical track bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the track for a horizontal track bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track.Normal">
      <summary>Gets a visual style element that represents the track for a horizontal track bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the track for a horizontal track bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the track for a vertical track bar. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical.Normal">
      <summary>Gets a visual style element that represents the track for a vertical track bar.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the track for a vertical track bar.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the background of the notification area, which is located at the far right of the taskbar. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for an animated background of the notification area. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground.Normal">
      <summary>Gets a visual style element that represents an animated background of the notification area.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents an animated background of the notification area.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of the notification area. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background.Normal">
      <summary>Gets a visual style element that represents the background of the notification area.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of the notification area.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of the tree view control. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for a tree view branch. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch.Normal">
      <summary>Gets a visual style element that represents a tree view branch.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a tree view branch.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the plus sign (+) and minus sign (-) buttons of a tree view control. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph.Closed">
      <summary>Gets a visual style element that represents a minus sign (-) button of a tree view node.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a minus sign button of a tree view node.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph.Opened">
      <summary>Gets a visual style element that represents a plus sign (+) button of a tree view node.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a plus sign button of a tree view node.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of a tree view item. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Disabled">
      <summary>Gets a visual style element that represents a tree view item in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a tree view item in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Hot">
      <summary>Gets a visual style element that represents a tree view item in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a tree view item in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Normal">
      <summary>Gets a visual style element that represents a tree view item in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a tree view item in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Selected">
      <summary>Gets a visual style element that represents a tree view item that is in the selected state and has focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a tree view item that is in the selected state and has focus.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.SelectedNotFocus">
      <summary>Gets a visual style element that represents a tree view item that is in the selected state but does not have focus.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a tree view item that is in the selected state but does not have focus.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window">
      <summary>Contains classes that provide <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for the parts of a window. This class cannot be inherited.</summary>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the title bar of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Active">
      <summary>Gets a visual style element that represents the title bar of an active window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of an active window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Disabled">
      <summary>Gets a visual style element that represents the title bar of a disabled window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a disabled window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Inactive">
      <summary>Gets a visual style element that represents the title bar of an inactive window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of an inactive window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the title bar of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate.Normal">
      <summary>Gets a visual style element that represents the sizing template of the title bar of a window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the title bar of a window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Close button of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Disabled">
      <summary>Gets a visual style element that represents a Close button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Close button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Hot">
      <summary>Gets a visual style element that represents a Close button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Close button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Normal">
      <summary>Gets a visual style element that represents a Close button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Close button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Pressed">
      <summary>Gets a visual style element that represents a Close button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Close button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the background of a dialog box. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog.Normal">
      <summary>Gets a visual style element that represents the background of a dialog box.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the background of a dialog box.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the bottom border of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom.Active">
      <summary>Gets a visual style element that represents the bottom border of an active window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the bottom border of an active window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom.Inactive">
      <summary>Gets a visual style element that represents the bottom border of an inactive window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the bottom border of an inactive window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the bottom border of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate.Normal">
      <summary>Gets a visual style element that represents the sizing template of the bottom border of a window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the bottom border of a window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the left border of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft.Active">
      <summary>Gets a visual style element that represents the left border of an active window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the left border of an active window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft.Inactive">
      <summary>Gets a visual style element that represents the left border of an inactive window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the left border of an inactive window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the left border of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate.Normal">
      <summary>Gets a visual style element that represents the sizing template of the left border of a window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the left border of a window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the right border of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight.Active">
      <summary>Gets a visual style element that represents the right border of an active window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the right border of an active window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight.Inactive">
      <summary>Gets a visual style element that represents the right border of an inactive window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the right border of an inactive window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the right border of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate.Normal">
      <summary>Gets a visual style element that represents the sizing template of the right border of a window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the right border of a window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Help button of a window or dialog box. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Disabled">
      <summary>Gets a visual style element that represents a Help button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Help button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Hot">
      <summary>Gets a visual style element that represents a Help button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Help button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Normal">
      <summary>Gets a visual style element that represents a Help button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Help button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Pressed">
      <summary>Gets a visual style element that represents a Help button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Help button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the horizontal scroll bar of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Disabled">
      <summary>Gets a visual style element that represents a horizontal scroll bar in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll bar in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Hot">
      <summary>Gets a visual style element that represents a horizontal scroll bar in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll bar in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Normal">
      <summary>Gets a visual style element that represents a horizontal scroll bar in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll bar in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Pressed">
      <summary>Gets a visual style element that represents a horizontal scroll bar in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll bar in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the horizontal scroll box (also known as the thumb) of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Disabled">
      <summary>Gets a visual style element that represents a horizontal scroll box in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll box in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Hot">
      <summary>Gets a visual style element that represents a horizontal scroll box in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll box in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Normal">
      <summary>Gets a visual style element that represents a horizontal scroll box in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll box in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Pressed">
      <summary>Gets a visual style element that represents a horizontal scroll box in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a horizontal scroll box in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Maximize button of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Disabled">
      <summary>Gets a visual style element that represents a Maximize button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Maximize button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Hot">
      <summary>Gets a visual style element that represents a Maximize button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Maximize button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Normal">
      <summary>Gets a visual style element that represents a Maximize button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Maximize button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Pressed">
      <summary>Gets a visual style element that represents a Maximize button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Maximize button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the title bar of a maximized window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Active">
      <summary>Gets a visual style element that represents the title bar of a maximized active window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a maximized active window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Disabled">
      <summary>Gets a visual style element that represents the title bar of a maximized disabled window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a maximized disabled window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Inactive">
      <summary>Gets a visual style element that represents the title bar of a maximized inactive window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a maximized inactive window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Close button of a multiple-document interface (MDI) child window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Disabled">
      <summary>Gets a visual style element that represents the Close button of a multiple-document interface (MDI) child window in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Close button of an MDI child window in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Hot">
      <summary>Gets a visual style element that represents the Close button of a multiple-document interface (MDI) child window in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Close button of an MDI child window in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Normal">
      <summary>Gets a visual style element that represents the Close button of a multiple-document interface (MDI) child window in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Close button of an MDI child window in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Pressed">
      <summary>Gets a visual style element that represents the Close button of a multiple-document interface (MDI) child window in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Close button of an MDI child window in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Help button of a multiple-document interface (MDI) child window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Disabled">
      <summary>Gets a visual style element that represents the Help button of a multiple-document interface (MDI) child window in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Help button of an MDI child window in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Hot">
      <summary>Gets a visual style element that represents the Help button of a multiple-document interface (MDI) child window in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Help button of an MDI child window in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Normal">
      <summary>Gets a visual style element that represents the Help button of a multiple-document interface (MDI) child window in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Help button of an MDI child window in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Pressed">
      <summary>Gets a visual style element that represents the Help button of a multiple-document interface (MDI) child window in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Help button of an MDI child window in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Minimize button of a multiple-document interface (MDI) child window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Disabled">
      <summary>Gets a visual style element that represents the Minimize button of a multiple-document interface (MDI) child window in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Minimize button of an MDI child window in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Hot">
      <summary>Gets a visual style element that represents the Minimize button of a multiple-document interface (MDI) child window in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Minimize button of an MDI child window in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Normal">
      <summary>Gets a visual style element that represents the Minimize button of a multiple-document interface (MDI) child window in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Minimize button of an MDI child window in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Pressed">
      <summary>Gets a visual style element that represents the Minimize button of a multiple-document interface (MDI) child window in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Minimize button of an MDI child window in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Restore button of a multiple-document interface (MDI) child window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Disabled">
      <summary>Gets a visual style element that represents the Restore button of a multiple-document interface (MDI) child window in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Restore button of an MDI child window in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Hot">
      <summary>Gets a visual style element that represents the Restore button of a multiple-document interface (MDI) child window in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Restore button of an MDI child window in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Normal">
      <summary>Gets a visual style element that represents the Restore button of a multiple-document interface (MDI) child window in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Restore button of an MDI child window in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Pressed">
      <summary>Gets a visual style element that represents the Restore button of a multiple-document interface (MDI) child window in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the Restore button of an MDI child window in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the System button of a multiple-document interface (MDI) child window with visual styles. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Disabled">
      <summary>Gets a visual style element that represents the System button of a multiple-document interface (MDI) child window in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the System button of an MDI child window in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Hot">
      <summary>Gets a visual style element that represents the System button of a multiple-document interface (MDI) child window in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the System button of an MDI child window in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Normal">
      <summary>Gets a visual style element that represents the System button of a multiple-document interface (MDI) child window in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the System button of an MDI child window in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Pressed">
      <summary>Gets a visual style element that represents the System button of a multiple-document interface (MDI) child window in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the System button of an MDI child window in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Minimize button of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Disabled">
      <summary>Gets a visual style element that represents a Minimize button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Minimize button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Hot">
      <summary>Gets a visual style element that represents a Minimize button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Minimize button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Normal">
      <summary>Gets a visual style element that represents a Minimize button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Minimize button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Pressed">
      <summary>Gets a visual style element that represents a Minimize button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Minimize button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the title bar of a minimized window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Active">
      <summary>Gets a visual style element that represents the title bar of a minimized active window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a minimized active window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Disabled">
      <summary>Gets a visual style element that represents the title bar of a minimized disabled window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a minimized disabled window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Inactive">
      <summary>Gets a visual style element that represents the title bar of a minimized inactive window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a minimized inactive window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Restore button of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Disabled">
      <summary>Gets a visual style element that represents a Restore button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Restore button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Hot">
      <summary>Gets a visual style element that represents a Restore button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Restore button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Normal">
      <summary>Gets a visual style element that represents a Restore button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Restore button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Pressed">
      <summary>Gets a visual style element that represents a Restore button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a Restore button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the title bar of a small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Active">
      <summary>Gets a visual style element that represents the title bar of an active small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of an active small window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Disabled">
      <summary>Gets a visual style element that represents the title bar of a disabled small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a disabled small window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Inactive">
      <summary>Gets a visual style element that represents the title bar of an inactive small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of an inactive small window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the title bar of a small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate.Normal">
      <summary>Gets a visual style element that represents the sizing template of the title bar of a small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the title bar of a small window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the Close button of a small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Disabled">
      <summary>Gets a visual style element that represents the small Close button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the small Close button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Hot">
      <summary>Gets a visual style element that represents the small Close button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the small Close button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Normal">
      <summary>Gets a visual style element that represents the small Close button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the small Close button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Pressed">
      <summary>Gets a visual style element that represents the small Close button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the small Close button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the bottom border of a small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom.Active">
      <summary>Gets a visual style element that represents the bottom border of an active small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the bottom border of an active small window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom.Inactive">
      <summary>Gets a visual style element that represents the bottom border of an inactive small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the bottom border of an inactive small window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the bottom border of a small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate.Normal">
      <summary>Gets a visual style element that represents the sizing template of the bottom border of a small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the bottom border of a small window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the left border of a small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft.Active">
      <summary>Gets a visual style element that represents the left border of an active small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the left border of an active small window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft.Inactive">
      <summary>Gets a visual style element that represents the left border of an inactive small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the left border of an inactive small window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the left border of a small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate.Normal">
      <summary>Gets a visual style element that represents the sizing template of the left border of a small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the left border of a small window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the right border of a small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight.Active">
      <summary>Gets a visual style element that represents the right border of an active small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the right border of an active small window.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight.Inactive">
      <summary>Gets a visual style element that represents the right border of an inactive small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the right border of an inactive small window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate">
      <summary>Provides a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> for the sizing template of the right border of a small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate.Normal">
      <summary>Gets a visual style element that represents the sizing template of the right border of a small window.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the sizing template of the right border of a small window.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the title bar of a maximized small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Active">
      <summary>Gets a visual style element that represents the title bar of an active small window that is maximized.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of an active small window that is maximized.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Disabled">
      <summary>Gets a visual style element that represents the title bar of a disabled small window that is maximized.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a disabled small window that is maximized.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Inactive">
      <summary>Gets a visual style element that represents the title bar of an inactive small window that is maximized.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of an inactive small window that is maximized.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the title bar of a minimized small window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Active">
      <summary>Gets a visual style element that represents the title bar of an active small window that is minimized.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of an active small window that is minimized.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Disabled">
      <summary>Gets a visual style element that represents the title bar of a disabled small window that is minimized.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of a disabled small window that is minimized.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Inactive">
      <summary>Gets a visual style element that represents the title bar of an inactive small window that is minimized.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents the title bar of an inactive small window that is minimized.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the System button of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Disabled">
      <summary>Gets a visual style element that represents a System button in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a System button in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Hot">
      <summary>Gets a visual style element that represents a System button in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a System button in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Normal">
      <summary>Gets a visual style element that represents a System button in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a System button in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Pressed">
      <summary>Gets a visual style element that represents a System button in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a System button in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the vertical scroll bar of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Disabled">
      <summary>Gets a visual style element that represents a vertical scroll bar in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll bar in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Hot">
      <summary>Gets a visual style element that represents a vertical scroll bar in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll bar in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Normal">
      <summary>Gets a visual style element that represents a vertical scroll bar in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll bar in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Pressed">
      <summary>Gets a visual style element that represents a vertical scroll bar in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll bar in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb">
      <summary>Provides <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> objects for each state of the vertical scroll box (also known as the thumb) of a window. This class cannot be inherited.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Disabled">
      <summary>Gets a visual style element that represents a vertical scroll box in the disabled state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll box in the disabled state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Hot">
      <summary>Gets a visual style element that represents a vertical scroll box in the hot state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll box in the hot state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Normal">
      <summary>Gets a visual style element that represents a vertical scroll box in the normal state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll box in the normal state.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Pressed">
      <summary>Gets a visual style element that represents a vertical scroll box in the pressed state.</summary>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that represents a vertical scroll box in the pressed state.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleInformation">
      <summary>Provides information about the current visual style of the operating system.</summary>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Author">
      <summary>Gets the author of the current visual style.</summary>
      <returns>A string that specifies the author of the current visual style if visual styles are enabled; otherwise, an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.ColorScheme">
      <summary>Gets the color scheme of the current visual style.</summary>
      <returns>A string that specifies the color scheme of the current visual style if visual styles are enabled; otherwise, an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Company">
      <summary>Gets the company that created the current visual style.</summary>
      <returns>A string that specifies the company that created the current visual style if visual styles are enabled; otherwise, an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.ControlHighlightHot">
      <summary>Gets the color that the current visual style uses to indicate the hot state of a control.</summary>
      <returns>If visual styles are enabled, the <see cref="T:System.Drawing.Color" /> used to paint a highlight on a control in the hot state; otherwise, <see cref="P:System.Drawing.SystemColors.ButtonHighlight" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Copyright">
      <summary>Gets the copyright of the current visual style.</summary>
      <returns>A string that specifies the copyright of the current visual style if visual styles are enabled; otherwise, an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Description">
      <summary>Gets a description of the current visual style.</summary>
      <returns>A string that describes the current visual style if visual styles are enabled; otherwise, an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.DisplayName">
      <summary>Gets the display name of the current visual style.</summary>
      <returns>A string that specifies the display name of the current visual style if visual styles are enabled; otherwise, an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.IsEnabledByUser">
      <summary>Gets a value indicating whether the user has enabled visual styles in the operating system.</summary>
      <returns>
        <see langword="true" /> if the user has enabled visual styles in an operating system that supports them; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.IsSupportedByOS">
      <summary>Gets a value indicating whether the operating system supports visual styles.</summary>
      <returns>
        <see langword="true" /> if the operating system supports visual styles; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.MinimumColorDepth">
      <summary>Gets the minimum color depth for the current visual style.</summary>
      <returns>The minimum color depth for the current visual style if visual styles are enabled; otherwise, 0.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Size">
      <summary>Gets a string that describes the size of the current visual style.</summary>
      <returns>A string that describes the size of the current visual style if visual styles are enabled; otherwise, an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.SupportsFlatMenus">
      <summary>Gets a value indicating whether the current visual style supports flat menus.</summary>
      <returns>
        <see langword="true" /> if visual styles are enabled and the current visual style supports flat menus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.TextControlBorder">
      <summary>Gets the color that the current visual style uses to paint the borders of controls that contain text.</summary>
      <returns>If visual styles are enabled, the <see cref="T:System.Drawing.Color" /> that the current visual style uses to paint the borders of controls that contain text; otherwise, <see cref="P:System.Drawing.SystemColors.ControlDarkDark" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Url">
      <summary>Gets a URL provided by the author of the current visual style.</summary>
      <returns>A string that specifies a URL provided by the author of the current visual style if visual styles are enabled; otherwise, an empty string ("").</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleInformation.Version">
      <summary>Gets the version of the current visual style.</summary>
      <returns>A string that indicates the version of the current visual style if visual styles are enabled; otherwise, an empty string ("").</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer">
      <summary>Provides methods for drawing and getting information about a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" />. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.#ctor(System.String,System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> class using the given class, part, and state values.</summary>
      <param name="className">The class name of the element that this <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> will represent.</param>
      <param name="part">The part of the element that this <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> will represent.</param>
      <param name="state">The state of the element that this <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> will represent.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <exception cref="T:System.ArgumentException">The combination of <paramref name="className" />, <paramref name="part" />, and <paramref name="state" /> is not defined by the current visual style.</exception>
      <exception cref="T:System.ArgumentNullException">.NET 5 and later: <paramref name="className" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.#ctor(System.Windows.Forms.VisualStyles.VisualStyleElement)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> class using the given <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" />.</summary>
      <param name="element">A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that this <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> will represent.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="element" /> is not defined by the current visual style.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle)">
      <summary>Draws the background image of the current visual style element within the specified bounding rectangle.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> used to draw the background image.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> in which the background image is drawn.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Drawing.Rectangle)">
      <summary>Draws the background image of the current visual style element within the specified bounding rectangle and clipped to the specified clipping rectangle.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> used to draw the background image.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> in which the background image is drawn.</param>
      <param name="clipRectangle">A <see cref="T:System.Drawing.Rectangle" /> that defines a clipping rectangle for the drawing operation.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawEdge(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.Edges,System.Windows.Forms.VisualStyles.EdgeStyle,System.Windows.Forms.VisualStyles.EdgeEffects)">
      <summary>Draws one or more edges of the specified bounding rectangle.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> used to draw the edges.</param>
      <param name="bounds">The <see cref="T:System.Drawing.Rectangle" /> whose bounds define the edges to draw.</param>
      <param name="edges">A bitwise combination of the <see cref="T:System.Windows.Forms.VisualStyles.Edges" /> values.</param>
      <param name="style">A bitwise combination of the <see cref="T:System.Windows.Forms.VisualStyles.EdgeStyle" /> values.</param>
      <param name="effects">A bitwise combination of the <see cref="T:System.Windows.Forms.VisualStyles.EdgeEffects" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the interior of the <paramref name="bounds" /> parameter, minus the edges that were drawn.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawImage(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Image)">
      <summary>Draws the specified image within the specified bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the image.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> in which the image is drawn.</param>
      <param name="image">The <see cref="T:System.Drawing.Image" /> to draw.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="g" /> or <paramref name="image" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawImage(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ImageList,System.Int32)">
      <summary>Draws the image from the specified <see cref="T:System.Windows.Forms.ImageList" /> within the specified bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> used to draw the image.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> in which the image is drawn.</param>
      <param name="imageList">An <see cref="T:System.Windows.Forms.ImageList" /> that contains the <see cref="T:System.Drawing.Image" /> to draw.</param>
      <param name="imageIndex">The index of the <see cref="T:System.Drawing.Image" /> within <paramref name="imageList" /> to draw.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="g" /> or <paramref name="image" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="imageIndex" /> is less than 0, or greater than or equal to the number of images in <paramref name="imageList" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawParentBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Windows.Forms.Control)">
      <summary>Draws the background of a control's parent in the specified area.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> used to draw the background of the parent of <paramref name="childControl" />. This object typically belongs to the child control.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> in which to draw the parent control's background. This rectangle should be inside the child control's bounds.</param>
      <param name="childControl">The control whose parent's background will be drawn.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.String)">
      <summary>Draws text in the specified bounds using default formatting.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> used to draw the text.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> in which to draw the text.</param>
      <param name="textToDraw">The text to draw.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.String,System.Boolean)">
      <summary>Draws text in the specified bounds with the option of displaying disabled text.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> used to draw the text.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> in which to draw the text.</param>
      <param name="textToDraw">The text to draw.</param>
      <param name="drawDisabled">
        <see langword="true" /> to draw grayed-out text; otherwise, <see langword="false" />.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.String,System.Boolean,System.Windows.Forms.TextFormatFlags)">
      <summary>Draws text in the specified bounding rectangle with the option of displaying disabled text and applying other text formatting.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> used to draw the text.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> in which to draw the text.</param>
      <param name="textToDraw">The text to draw.</param>
      <param name="drawDisabled">
        <see langword="true" /> to draw grayed-out text; otherwise, <see langword="false" />.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundContentRectangle(System.Drawing.IDeviceContext,System.Drawing.Rectangle)">
      <summary>Returns the content area for the background of the current visual style element.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the entire background area of the current visual style element.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that contains the content area for the background of the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundExtent(System.Drawing.IDeviceContext,System.Drawing.Rectangle)">
      <summary>Returns the entire background area for the current visual style element.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="contentBounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the content area of the current visual style element.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that contains the entire background area of the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundRegion(System.Drawing.IDeviceContext,System.Drawing.Rectangle)">
      <summary>Returns the region for the background of the current visual style element.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the entire background area of the current visual style element.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>The <see cref="T:System.Drawing.Region" /> that contains the background of the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBoolean(System.Windows.Forms.VisualStyles.BooleanProperty)">
      <summary>Returns the value of the specified Boolean property for the current visual style element.</summary>
      <param name="prop">One of the <see cref="T:System.Windows.Forms.VisualStyles.BooleanProperty" /> values that specifies which property value to retrieve for the current visual style element.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.BooleanProperty" /> values.</exception>
      <returns>
        <see langword="true" /> if the property specified by the <paramref name="prop" /> parameter is <see langword="true" /> for the current visual style element; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetColor(System.Windows.Forms.VisualStyles.ColorProperty)">
      <summary>Returns the value of the specified color property for the current visual style element.</summary>
      <param name="prop">One of the <see cref="T:System.Windows.Forms.VisualStyles.ColorProperty" /> values that specifies which property value to retrieve for the current visual style element.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.ColorProperty" /> values.</exception>
      <returns>A <see cref="T:System.Drawing.Color" /> that contains the value of the property specified by the <paramref name="prop" /> parameter for the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetEnumValue(System.Windows.Forms.VisualStyles.EnumProperty)">
      <summary>Returns the value of the specified enumerated type property for the current visual style element.</summary>
      <param name="prop">One of the <see cref="T:System.Windows.Forms.VisualStyles.EnumProperty" /> values that specifies which property value to retrieve for the current visual style element.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.EnumProperty" /> values.</exception>
      <returns>The integer value of the property specified by the <paramref name="prop" /> parameter for the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetFilename(System.Windows.Forms.VisualStyles.FilenameProperty)">
      <summary>Returns the value of the specified file name property for the current visual style element.</summary>
      <param name="prop">One of the <see cref="T:System.Windows.Forms.VisualStyles.FilenameProperty" /> values that specifies which property value to retrieve for the current visual style element.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.FilenameProperty" /> values.</exception>
      <returns>A <see cref="T:System.String" /> that contains the value of the property specified by the <paramref name="prop" /> parameter for the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetFont(System.Drawing.IDeviceContext,System.Windows.Forms.VisualStyles.FontProperty)">
      <summary>Returns the value of the specified font property for the current visual style element.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="prop">One of the <see cref="T:System.Windows.Forms.VisualStyles.FontProperty" /> values that specifies which property value to retrieve for the current visual style element.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.FontProperty" /> values.</exception>
      <returns>A <see cref="T:System.Drawing.Font" /> that contains the value of the property specified by the <paramref name="prop" /> parameter for the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetInteger(System.Windows.Forms.VisualStyles.IntegerProperty)">
      <summary>Returns the value of the specified integer property for the current visual style element.</summary>
      <param name="prop">One of the <see cref="T:System.Windows.Forms.VisualStyles.IntegerProperty" /> values that specifies which property value to retrieve for the current visual style element.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.IntegerProperty" /> values.</exception>
      <returns>The integer value of the property specified by the <paramref name="prop" /> parameter for the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetMargins(System.Drawing.IDeviceContext,System.Windows.Forms.VisualStyles.MarginProperty)">
      <summary>Returns the value of the specified margins property for the current visual style element.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="prop">One of the <see cref="T:System.Windows.Forms.VisualStyles.MarginProperty" /> values that specifies which property value to retrieve for the current visual style element.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.MarginProperty" /> values.</exception>
      <returns>A <see cref="T:System.Windows.Forms.Padding" /> that contains the value of the property specified by the <paramref name="prop" /> parameter for the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPartSize(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Windows.Forms.VisualStyles.ThemeSizeType)">
      <summary>Returns the value of the specified size property of the current visual style part using the specified drawing bounds.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> that contains the area in which the part will be drawn.</param>
      <param name="type">One of the <see cref="T:System.Windows.Forms.VisualStyles.ThemeSizeType" /> values that specifies which size value to retrieve for the part.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.ThemeSizeType" /> values.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that contains the size specified by the <paramref name="type" /> parameter for the current visual style part.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPartSize(System.Drawing.IDeviceContext,System.Windows.Forms.VisualStyles.ThemeSizeType)">
      <summary>Returns the value of the specified size property of the current visual style part.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="type">One of the <see cref="T:System.Windows.Forms.VisualStyles.ThemeSizeType" /> values that specifies which size value to retrieve for the part.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.ThemeSizeType" /> values.</exception>
      <returns>A <see cref="T:System.Drawing.Size" /> that contains the size specified by the <paramref name="type" /> parameter for the current visual style part.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPoint(System.Windows.Forms.VisualStyles.PointProperty)">
      <summary>Returns the value of the specified point property for the current visual style element.</summary>
      <param name="prop">One of the <see cref="T:System.Windows.Forms.VisualStyles.PointProperty" /> values that specifies which property value to retrieve for the current visual style element.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.PointProperty" /> values.</exception>
      <returns>A <see cref="T:System.Drawing.Point" /> that contains the value of the property specified by the <paramref name="prop" /> parameter for the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetString(System.Windows.Forms.VisualStyles.StringProperty)">
      <summary>Returns the value of the specified string property for the current visual style element.</summary>
      <param name="prop">One of the <see cref="T:System.Windows.Forms.VisualStyles.StringProperty" /> values that specifies which property value to retrieve for the current visual style element.</param>
      <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
        <paramref name="prop" /> is not one of the <see cref="T:System.Windows.Forms.VisualStyles.StringProperty" /> values.</exception>
      <returns>A <see cref="T:System.String" /> that contains the value of the property specified by the <paramref name="prop" /> parameter for the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextExtent(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.String,System.Windows.Forms.TextFormatFlags)">
      <summary>Returns the size and location of the specified string when drawn with the font of the current visual style element within the specified initial bounding rectangle.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="bounds">A <see cref="T:System.Drawing.Rectangle" /> used to control the flow and wrapping of the text.</param>
      <param name="textToDraw">The string to measure.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that contains the area required to fit the rendered text.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextExtent(System.Drawing.IDeviceContext,System.String,System.Windows.Forms.TextFormatFlags)">
      <summary>Returns the size and location of the specified string when drawn with the font of the current visual style element.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="textToDraw">The string to measure.</param>
      <param name="flags">A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Drawing.Rectangle" /> that contains the area required to fit the rendered text.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextMetrics(System.Drawing.IDeviceContext)">
      <summary>Retrieves information about the font specified by the current visual style element.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.TextMetrics" /> that provides information about the font specified by the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Region,System.Drawing.Point,System.Windows.Forms.VisualStyles.HitTestOptions)">
      <summary>Returns a hit test code indicating whether the point is contained in the background of the current visual style element and within the specified bounds.</summary>
      <param name="g">The <see cref="T:System.Drawing.Graphics" /> this operation will use.</param>
      <param name="backgroundRectangle">A <see cref="T:System.Drawing.Rectangle" /> that contains the background of the current visual style element.</param>
      <param name="region">A <see cref="T:System.Drawing.Region" /> that specifies the bounds of the hit test area within the background.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> to test.</param>
      <param name="options">A bitwise combination of the <see cref="T:System.Windows.Forms.VisualStyles.HitTestOptions" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="g" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.HitTestCode" /> that describes where <paramref name="pt" /> is located in the background of the current visual style element, if at all.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.Drawing.Point,System.Windows.Forms.VisualStyles.HitTestOptions)">
      <summary>Returns a hit test code indicating whether a point is contained in the background of the current visual style element.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="backgroundRectangle">A <see cref="T:System.Drawing.Rectangle" /> that contains the background of the current visual style element.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> to test.</param>
      <param name="options">A bitwise combination of the <see cref="T:System.Windows.Forms.VisualStyles.HitTestOptions" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.HitTestCode" /> that describes where <paramref name="pt" /> is located in the background of the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.IDeviceContext,System.Drawing.Rectangle,System.IntPtr,System.Drawing.Point,System.Windows.Forms.VisualStyles.HitTestOptions)">
      <summary>Returns a hit test code indicating whether the point is contained in the background of the current visual style element and within the specified region.</summary>
      <param name="dc">The <see cref="T:System.Drawing.IDeviceContext" /> this operation will use.</param>
      <param name="backgroundRectangle">A <see cref="T:System.Drawing.Rectangle" /> that contains the background of the current visual style element.</param>
      <param name="hRgn">A Windows handle to a <see cref="T:System.Drawing.Region" /> that specifies the bounds of the hit test area within the background.</param>
      <param name="pt">The <see cref="T:System.Drawing.Point" /> to test.</param>
      <param name="options">A bitwise combination of the <see cref="T:System.Windows.Forms.VisualStyles.HitTestOptions" /> values.</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="dc" /> is <see langword="null" />.</exception>
      <returns>A <see cref="T:System.Windows.Forms.VisualStyles.HitTestCode" /> that describes where <paramref name="pt" /> is located in the background of the current visual style element.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsBackgroundPartiallyTransparent">
      <summary>Indicates whether the background of the current visual style element has any semitransparent or alpha-blended pieces.</summary>
      <returns>
        <see langword="true" /> if the background of the current visual style element has any semitransparent or alpha-blended pieces; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsElementDefined(System.Windows.Forms.VisualStyles.VisualStyleElement)">
      <summary>Determines whether the specified visual style element is defined by the current visual style.</summary>
      <param name="element">A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> whose class and part combination will be verified.</param>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>
        <see langword="true" /> if the combination of the <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleElement.ClassName" /> and <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleElement.Part" /> properties of <paramref name="element" /> are defined; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.SetParameters(System.String,System.Int32,System.Int32)">
      <summary>Sets this <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> to the visual style element represented by the specified class, part, and state values.</summary>
      <param name="className">The new value of the <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Class" /> property.</param>
      <param name="part">The new value of the <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Part" /> property.</param>
      <param name="state">The new value of the <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.State" /> property.</param>
      <exception cref="T:System.ArgumentException">The combination of <paramref name="className" />, <paramref name="part" />, and <paramref name="state" /> is not defined by the current visual style.</exception>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="M:System.Windows.Forms.VisualStyles.VisualStyleRenderer.SetParameters(System.Windows.Forms.VisualStyles.VisualStyleElement)">
      <summary>Sets this <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> to the visual style element represented by the specified <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" />.</summary>
      <param name="element">A <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement" /> that specifies the new values of the <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Class" />, <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Part" />, and <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.State" /> properties.</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="element" /> is not defined by the current visual style.</exception>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Class">
      <summary>Gets the class name of the current visual style element.</summary>
      <returns>A string that identifies the class of the current visual style element.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Handle">
      <summary>Gets a unique identifier for the current class of visual style elements.</summary>
      <exception cref="T:System.InvalidOperationException">The operating system does not support visual styles.  
  
 -or-  
  
 Visual styles are disabled by the user in the operating system.  
  
 -or-  
  
 Visual styles are not applied to the client area of application windows.</exception>
      <returns>An <see cref="T:System.IntPtr" /> that identifies a set of data that defines the class of elements specified by <see cref="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Class" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsSupported">
      <summary>Gets a value specifying whether the operating system is using visual styles to draw controls.</summary>
      <returns>
        <see langword="true" /> if the operating system supports visual styles, the user has enabled visual styles in the operating system, and visual styles are applied to the client area of application windows; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.LastHResult">
      <summary>Gets the last error code returned by the native visual styles (UxTheme) API methods encapsulated by the <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> class.</summary>
      <returns>A value specifying the last error code returned by the native visual styles API methods that this class encapsulates.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.Part">
      <summary>Gets the part of the current visual style element.</summary>
      <returns>A value that specifies the part of the current visual style element.</returns>
    </member>
    <member name="P:System.Windows.Forms.VisualStyles.VisualStyleRenderer.State">
      <summary>Gets the state of the current visual style element.</summary>
      <returns>A value that identifies the state of the current visual style element.</returns>
    </member>
    <member name="T:System.Windows.Forms.VisualStyles.VisualStyleState">
      <summary>Specifies how visual styles are applied to the current application.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.VisualStyleState.ClientAndNonClientAreasEnabled">
      <summary>Visual styles are applied to client and nonclient areas.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.VisualStyleState.ClientAreaEnabled">
      <summary>Visual styles are applied only to the client area.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.VisualStyleState.NonClientAreaEnabled">
      <summary>Visual styles are applied only to the nonclient area.</summary>
    </member>
    <member name="F:System.Windows.Forms.VisualStyles.VisualStyleState.NoneEnabled">
      <summary>Visual styles are not applied to the application.</summary>
    </member>
    <member name="T:System.Windows.Forms.VScrollBar">
      <summary>Represents a standard Windows vertical scroll bar.</summary>
    </member>
    <member name="E:System.Windows.Forms.VScrollBar.RightToLeftChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.VScrollBar.RightToLeft" /> property changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.VScrollBar.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.VScrollBar" /> class.</summary>
    </member>
    <member name="P:System.Windows.Forms.VScrollBar.CreateParams">
      <summary>Gets the required creation parameters when the control handle is created.</summary>
      <returns>A <see cref="T:System.Windows.Forms.CreateParams" /> that contains the required creation parameters when the handle to the control is created.</returns>
    </member>
    <member name="P:System.Windows.Forms.VScrollBar.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.VScrollBar.RightToLeft">
      <summary>Gets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.</summary>
      <returns>The <see cref="F:System.Windows.Forms.RightToLeft.No" /> value.</returns>
    </member>
    <member name="T:System.Windows.Forms.VScrollProperties">
      <summary>Provides basic properties for the <see cref="T:System.Windows.Forms.VScrollBar" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.VScrollProperties.#ctor(System.Windows.Forms.ScrollableControl)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.VScrollProperties" /> class.</summary>
      <param name="container">A <see cref="T:System.Windows.Forms.ScrollableControl" /> that contains the scroll bar.</param>
    </member>
    <member name="T:System.Windows.Forms.WebBrowser">
      <summary>Enables a user to navigate Web pages inside a form.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.CanGoBackChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.WebBrowser.CanGoBack" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.CanGoForwardChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.WebBrowser.CanGoForward" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.DocumentCompleted">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.WebBrowser" /> control finishes loading a document.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.DocumentTitleChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.WebBrowser.DocumentTitle" /> property value changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.EncryptionLevelChanged">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.WebBrowser" /> control navigates to or away from a Web site that uses encryption.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.FileDownload">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.WebBrowser" /> control downloads a file.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.Navigated">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.WebBrowser" /> control has navigated to a new document and has begun loading it.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.Navigating">
      <summary>Occurs before the <see cref="T:System.Windows.Forms.WebBrowser" /> control navigates to a new document.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.NewWindow">
      <summary>Occurs before a new browser window is opened.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.PaddingChanged">
      <summary>Occurs when the value of the <see cref="P:System.Windows.Forms.WebBrowser.Padding" /> property changes.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.ProgressChanged">
      <summary>Occurs when the <see cref="T:System.Windows.Forms.WebBrowser" /> control has updated information on the download progress of a document it is navigating to.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowser.StatusTextChanged">
      <summary>Occurs when the <see cref="P:System.Windows.Forms.WebBrowser.StatusText" /> property value changes.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.WebBrowser" /> class.</summary>
      <exception cref="T:System.NotSupportedException">The <see cref="T:System.Windows.Forms.WebBrowser" /> control is hosted inside Internet Explorer.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.AttachInterfaces(System.Object)">
      <summary>Called by the control when the underlying ActiveX control is created.</summary>
      <param name="nativeActiveXObject">An object that represents the underlying ActiveX control.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.CreateAccessibilityInstance" />
    <member name="M:System.Windows.Forms.WebBrowser.CreateSink">
      <summary>Associates the underlying ActiveX control with a client that can handle control events.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.CreateWebBrowserSiteBase">
      <summary>Returns a reference to the unmanaged <see langword="WebBrowser" /> ActiveX control site, which you can extend to customize the managed <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <returns>A <see cref="T:System.Windows.Forms.WebBrowser.WebBrowserSite" /> that represents the <see langword="WebBrowser" /> ActiveX control site.</returns>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.DetachInterfaces">
      <summary>Called by the control when the underlying ActiveX control is discarded.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.DetachSink">
      <summary>Releases the event-handling client attached in the <see cref="M:System.Windows.Forms.WebBrowser.CreateSink" /> method from the underlying ActiveX control.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.WebBrowser" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.GoBack">
      <summary>Navigates the <see cref="T:System.Windows.Forms.WebBrowser" /> control to the previous page in the navigation history, if one is available.</summary>
      <returns>
        <see langword="true" /> if the navigation succeeds; <see langword="false" /> if a previous page in the navigation history is not available.</returns>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.GoForward">
      <summary>Navigates the <see cref="T:System.Windows.Forms.WebBrowser" /> control to the next page in the navigation history, if one is available.</summary>
      <returns>
        <see langword="true" /> if the navigation succeeds; <see langword="false" /> if a subsequent page in the navigation history is not available.</returns>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.GoHome">
      <summary>Navigates the <see cref="T:System.Windows.Forms.WebBrowser" /> control to the home page of the current user.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.GoSearch">
      <summary>Navigates the <see cref="T:System.Windows.Forms.WebBrowser" /> control to the default search page of the current user.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Navigate(System.String)">
      <summary>Loads the document at the specified Uniform Resource Locator (URL) into the <see cref="T:System.Windows.Forms.WebBrowser" /> control, replacing the previous document.</summary>
      <param name="urlString">The URL of the document to load.</param>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Navigate(System.String,System.Boolean)">
      <summary>Loads the document at the specified Uniform Resource Locator (URL) into a new browser window or into the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <param name="urlString">The URL of the document to load.</param>
      <param name="newWindow">
        <see langword="true" /> to load the document into a new browser window; <see langword="false" /> to load the document into the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</param>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Navigate(System.String,System.String)">
      <summary>Loads the document at the specified Uniform Resource Locator (URL) into the <see cref="T:System.Windows.Forms.WebBrowser" /> control, replacing the contents of the Web page frame with the specified name.</summary>
      <param name="urlString">The URL of the document to load.</param>
      <param name="targetFrameName">The name of the frame in which to load the document.</param>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Navigate(System.String,System.String,System.Byte[],System.String)">
      <summary>Loads the document at the specified Uniform Resource Locator (URL) into the <see cref="T:System.Windows.Forms.WebBrowser" /> control, requesting it using the specified HTTP data and replacing the contents of the Web page frame with the specified name.</summary>
      <param name="urlString">The URL of the document to load.</param>
      <param name="targetFrameName">The name of the frame in which to load the document.</param>
      <param name="postData">HTTP POST data such as form data.</param>
      <param name="additionalHeaders">HTTP headers to add to the default headers.</param>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Navigate(System.Uri)">
      <summary>Loads the document at the location indicated by the specified <see cref="T:System.Uri" /> into the <see cref="T:System.Windows.Forms.WebBrowser" /> control, replacing the previous document.</summary>
      <param name="url">A <see cref="T:System.Uri" /> representing the URL of the document to load.</param>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <exception cref="T:System.ArgumentException">The <paramref name="url" /> parameter value does not represent an absolute URI. For more information, see <see cref="P:System.Uri.IsAbsoluteUri" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Navigate(System.Uri,System.Boolean)">
      <summary>Loads the document at the location indicated by the specified <see cref="T:System.Uri" /> into a new browser window or into the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <param name="url">A <see cref="T:System.Uri" /> representing the URL of the document to load.</param>
      <param name="newWindow">
        <see langword="true" /> to load the document into a new browser window; <see langword="false" /> to load the document into the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</param>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <exception cref="T:System.ArgumentException">The <paramref name="url" /> parameter value does not represent an absolute URI. For more information, see <see cref="P:System.Uri.IsAbsoluteUri" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Navigate(System.Uri,System.String)">
      <summary>Loads the document at the location indicated by the specified <see cref="T:System.Uri" /> into the <see cref="T:System.Windows.Forms.WebBrowser" /> control, replacing the contents of the Web page frame with the specified name.</summary>
      <param name="url">A <see cref="T:System.Uri" /> representing the URL of the document to load.</param>
      <param name="targetFrameName">The name of the frame in which to load the document.</param>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <exception cref="T:System.ArgumentException">The <paramref name="url" /> parameter value does not represent an absolute URI. For more information, see <see cref="P:System.Uri.IsAbsoluteUri" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Navigate(System.Uri,System.String,System.Byte[],System.String)">
      <summary>Loads the document at the location indicated by the specified <see cref="T:System.Uri" /> into the <see cref="T:System.Windows.Forms.WebBrowser" /> control, requesting it using the specified HTTP data and replacing the contents of the Web page frame with the specified name.</summary>
      <param name="url">A <see cref="T:System.Uri" /> representing the URL of the document to load.</param>
      <param name="targetFrameName">The name of the frame in which to load the document.</param>
      <param name="postData">HTTP POST data such as form data.</param>
      <param name="additionalHeaders">HTTP headers to add to the default headers.</param>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <exception cref="T:System.ArgumentException">The <paramref name="url" /> parameter value does not represent an absolute URI. For more information, see <see cref="P:System.Uri.IsAbsoluteUri" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnCanGoBackChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.CanGoBackChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnCanGoForwardChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.CanGoForwardChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnDocumentCompleted(System.Windows.Forms.WebBrowserDocumentCompletedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.DocumentCompleted" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.WebBrowserDocumentCompletedEventArgs" /> that contains the event data.</param>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnDocumentTitleChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.DocumentTitleChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnEncryptionLevelChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.EncryptionLevelChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnFileDownload(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.FileDownload" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnNavigated(System.Windows.Forms.WebBrowserNavigatedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.Navigated" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.WebBrowserNavigatedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnNavigating(System.Windows.Forms.WebBrowserNavigatingEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.Navigating" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.WebBrowserNavigatingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnNewWindow(System.ComponentModel.CancelEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.NewWindow" /> event.</summary>
      <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnProgressChanged(System.Windows.Forms.WebBrowserProgressChangedEventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.ProgressChanged" /> event.</summary>
      <param name="e">A <see cref="T:System.Windows.Forms.WebBrowserProgressChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.OnStatusTextChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.WebBrowser.StatusTextChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Print">
      <summary>Prints the document currently displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control using the current print and page settings.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Refresh">
      <summary>Reloads the document currently displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control by checking the server for an updated version.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Refresh(System.Windows.Forms.WebBrowserRefreshOption)">
      <summary>Reloads the document currently displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control using the specified refresh options.</summary>
      <param name="opt">One of the <see cref="T:System.Windows.Forms.WebBrowserRefreshOption" /> values.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.ShowPageSetupDialog">
      <summary>Opens the Internet Explorer Page Setup dialog box.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.ShowPrintDialog">
      <summary>Opens the Internet Explorer Print dialog box without setting header and footer values.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.ShowPrintPreviewDialog">
      <summary>Opens the Internet Explorer Print Preview dialog box.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.ShowPropertiesDialog">
      <summary>Opens the Internet Explorer Properties dialog box for the current document.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.ShowSaveAsDialog">
      <summary>Opens the Internet Explorer Save Web Page dialog box or the Save dialog box of the hosted document if it is not an HTML page.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.Stop">
      <summary>Cancels any pending navigation and stops any dynamic page elements, such as background sounds and animations.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.WndProc(System.Windows.Forms.Message@)">
      <summary>Processes Windows messages.</summary>
      <param name="m">The Windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.AllowNavigation">
      <summary>Gets or sets a value indicating whether the control can navigate to another page after its initial page has been loaded.</summary>
      <returns>
        <see langword="true" /> if the control can navigate to another page; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.AllowWebBrowserDrop">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.WebBrowser" /> control navigates to documents that are dropped onto it.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>
        <see langword="true" /> if the control accepts documents that are dropped onto it; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.CanGoBack">
      <summary>Gets a value indicating whether a previous page in navigation history is available, which allows the <see cref="M:System.Windows.Forms.WebBrowser.GoBack" /> method to succeed.</summary>
      <returns>
        <see langword="true" /> if the control can navigate backward; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.CanGoForward">
      <summary>Gets a value indicating whether a subsequent page in navigation history is available, which allows the <see cref="M:System.Windows.Forms.WebBrowser.GoForward" /> method to succeed.</summary>
      <returns>
        <see langword="true" /> if the control can navigate forward; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>Gets the default size of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.Document">
      <summary>Gets an <see cref="T:System.Windows.Forms.HtmlDocument" /> representing the Web page currently displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>An <see cref="T:System.Windows.Forms.HtmlDocument" /> representing the current page, or <see langword="null" /> if no page is loaded.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.DocumentStream">
      <summary>Gets or sets a stream containing the contents of the Web page displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>A <see cref="T:System.IO.Stream" /> containing the contents of the current Web page, or <see langword="null" /> if no page is loaded. The default is <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.DocumentText">
      <summary>Gets or sets the HTML contents of the page displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>The HTML text of the displayed page, or the empty string ("") if no document is loaded.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.DocumentTitle">
      <summary>Gets the title of the document currently displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>The title of the current document, or the empty string ("") if no document is loaded.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.DocumentType">
      <summary>Gets the type of the document currently displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>The type of the current document.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.EncryptionLevel">
      <summary>Gets a value indicating the encryption method used by the document currently displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.WebBrowserEncryptionLevel" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.Focused">
      <summary>Gets a value indicating whether the control or any of its child windows has input focus.</summary>
      <returns>
        <see langword="true" /> if the control or any of its child windows has input focus; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.IsBusy">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.WebBrowser" /> control is currently loading a new document.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>
        <see langword="true" /> if the control is busy loading a document; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.IsOffline">
      <summary>Gets a value indicating whether the <see cref="T:System.Windows.Forms.WebBrowser" /> control is in offline mode.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.WebBrowser" /> control is in offline mode; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.IsWebBrowserContextMenuEnabled">
      <summary>Gets or a sets a value indicating whether the shortcut menu of the <see cref="T:System.Windows.Forms.WebBrowser" /> control is enabled.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.WebBrowser" /> control shortcut menu is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.ObjectForScripting">
      <summary>Gets or sets an object that can be accessed by scripting code that is contained within a Web page displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is an instance of a non-public type.  
  
 -or-  
  
 The specified value when setting this property is an instance of a type that is not COM-visible. For more information, see <see cref="M:System.Runtime.InteropServices.Marshal.IsTypeVisibleFromCom(System.Type)" />.</exception>
      <returns>The object being made available to the scripting code.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.Padding">
      <summary>This property is not meaningful for this control.</summary>
      <returns>
        <see cref="F:System.Windows.Forms.Padding.Empty" />
      </returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.ReadyState">
      <summary>Gets a value indicating the current state of the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.WebBrowserReadyState" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.ScriptErrorsSuppressed">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.WebBrowser" /> displays dialog boxes such as script error messages.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the IWebBrowser2 interface could not be retrieved from the underlying ActiveX WebBrowser control.</exception>
      <returns>
        <see langword="true" /> if the control does not display its dialog boxes; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.ScrollBarsEnabled">
      <summary>Gets or sets a value indicating whether scroll bars are displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <returns>
        <see langword="true" /> if scroll bars are displayed in the control; otherwise, <see langword="false" />. The default is true.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.StatusText">
      <summary>Gets the status text of the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <returns>The status text.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.Url">
      <summary>Gets or sets the URL of the current document.</summary>
      <exception cref="T:System.ObjectDisposedException">This <see cref="T:System.Windows.Forms.WebBrowser" /> instance is no longer valid.</exception>
      <exception cref="T:System.InvalidOperationException">A reference to an implementation of the <see langword="IWebBrowser2" /> interface could not be retrieved from the underlying ActiveX <see langword="WebBrowser" /> control.</exception>
      <exception cref="T:System.ArgumentException">The specified value when setting this property is not an absolute URI. For more information, see <see cref="P:System.Uri.IsAbsoluteUri" />.</exception>
      <returns>A <see cref="T:System.Uri" /> representing the URL of the current document.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.Version">
      <summary>Gets the version of Internet Explorer installed.</summary>
      <returns>The version of Internet Explorer installed.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowser.WebBrowserShortcutsEnabled">
      <summary>Gets or sets a value indicating whether keyboard shortcuts are enabled within the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <returns>
        <see langword="true" /> if keyboard shortcuts are enabled within the control; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.WebBrowser.WebBrowserSite">
      <summary>Represents the host window of a <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowser.WebBrowserSite.#ctor(System.Windows.Forms.WebBrowser)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.WebBrowser.WebBrowserSite" /> class.</summary>
      <param name="host">The <see cref="T:System.Windows.Forms.WebBrowser" />.</param>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserBase">
      <summary>Provides a wrapper for a generic ActiveX control for use as a base class by the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.BackColorChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.BackgroundImageChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.BackgroundImageLayoutChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.BindingContextChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.ChangeUICues">
      <summary>Occurs when the focus or keyboard user interface (UI) cues change.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.Click">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.CursorChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.DoubleClick">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.DragDrop">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.DragEnter">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.DragLeave">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.DragOver">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.EnabledChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.Enter">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.FontChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.ForeColorChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.GiveFeedback">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.HelpRequested">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.ImeModeChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.KeyDown">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.KeyPress">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.KeyUp">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.Layout">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.Leave">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseCaptureChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseClick">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseDoubleClick">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseDown">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseEnter">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseHover">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseLeave">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseMove">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseUp">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.MouseWheel">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.Paint">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.QueryAccessibilityHelp">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.QueryContinueDrag">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.RightToLeftChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.StyleChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="E:System.Windows.Forms.WebBrowserBase.TextChanged">
      <summary>This event is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">A handler is being added to this event.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.AttachInterfaces(System.Object)">
      <summary>Called by the control when the underlying ActiveX control is created.</summary>
      <param name="nativeActiveXObject">An object that represents the underlying ActiveX control.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.CreateSink">
      <summary>Called by the control to prepare it for listening to events.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.CreateWebBrowserSiteBase">
      <summary>Returns a reference to the unmanaged ActiveX control site.</summary>
      <returns>A <see cref="T:System.Windows.Forms.WebBrowserSiteBase" /> that represents the site of the underlying ActiveX control.</returns>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.DetachInterfaces">
      <summary>Called by the control when the underlying ActiveX control is discarded.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.DetachSink">
      <summary>Called by the control when it stops listening to events.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control" /> and its child controls and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)">
      <summary>This method is not supported by this control.</summary>
      <param name="bitmap">A <see cref="T:System.Drawing.Bitmap" />.</param>
      <param name="targetBounds">A <see cref="T:System.Drawing.Rectangle" />.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.IsInputChar(System.Char)">
      <summary>Determines if a character is an input character that the control recognizes.</summary>
      <param name="charCode">The character to test.</param>
      <returns>
        <see langword="true" /> if the character should be sent directly to the control and not preprocessed; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.OnBackColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.BackColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.OnFontChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.OnForeColorChanged(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.ForeColorChanged" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.OnGotFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.GotFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.OnHandleCreated(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
      <exception cref="T:System.Threading.ThreadStateException">The <see cref="P:System.Threading.Thread.ApartmentState" /> property of the application is not set to <see cref="F:System.Threading.ApartmentState.STA" />.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.OnLostFocus(System.EventArgs)">
      <summary>Raises the <see cref="E:System.Windows.Forms.Control.LostFocus" /> event.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.OnParentChanged(System.EventArgs)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.OnParentChanged(System.EventArgs)" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
      <exception cref="T:System.Reflection.TargetInvocationException">Unable to get the window handle for the ActiveX control. Windowless ActiveX controls are not supported.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.OnRightToLeftChanged(System.EventArgs)">
      <summary>This method is not meaningful for this control.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> object.</param>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.OnVisibleChanged(System.EventArgs)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.OnVisibleChanged(System.EventArgs)" />.</summary>
      <param name="e">An <see cref="T:System.EventArgs" /> that contains the event data.</param>
      <exception cref="T:System.Reflection.TargetInvocationException">Unable to get the window handle for the ActiveX control. Windowless ActiveX controls are not supported.</exception>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.PreProcessMessage(System.Windows.Forms.Message@)">
      <summary>Preprocesses keyboard or input messages within the message loop before they are dispatched.</summary>
      <param name="msg">A <see cref="T:System.Windows.Forms.Message" />, passed by reference, that represents the message to process. The possible values are WM_KEYDOWN, WM_SYSKEYDOWN, WM_CHAR, and WM_SYSCHAR.</param>
      <returns>
        <see langword="true" /> if the message was processed by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.ProcessDialogKey(System.Windows.Forms.Keys)">
      <summary>Processes a dialog key if the WebBrowser ActiveX control does not process it.</summary>
      <param name="keyData">One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
      <returns>
        <see langword="true" /> if the key was processed by the <see cref="T:System.Windows.Forms.WebBrowserBase" />; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.ProcessMnemonic(System.Char)">
      <summary>Processes a mnemonic character.</summary>
      <param name="charCode">The character to process.</param>
      <returns>
        <see langword="true" /> if the character was processed as a mnemonic by the control; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserBase.WndProc(System.Windows.Forms.Message@)">
      <summary>This member overrides <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" />.</summary>
      <param name="m">The windows <see cref="T:System.Windows.Forms.Message" /> to process.</param>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.ActiveXInstance">
      <summary>Gets the underlying ActiveX <see langword="WebBrowser" /> control.</summary>
      <returns>An <see cref="T:System.Object" /> representing the underlying ActiveX <see langword="WebBrowser" /> control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.AllowDrop">
      <summary>This property is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">This property is being set.</exception>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.BackColor">
      <summary>This property is not meaningful for this control.</summary>
      <returns>A <see cref="T:System.Drawing.Color" /> that represents the background of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.BackgroundImage">
      <summary>This property is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">This property is being set.</exception>
      <returns>
        <see langword="null" />.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.BackgroundImageLayout">
      <summary>This property is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">This property is being set.</exception>
      <returns>One of the <see cref="T:System.Windows.Forms.ImageLayout" /> values.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.Cursor">
      <summary>This property is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">This property is being set.</exception>
      <returns>The value of this property is not meaningful for this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.DefaultSize">
      <summary>Gets the default size of the control.</summary>
      <returns>The default <see cref="T:System.Drawing.Size" /> of the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.Enabled">
      <summary>This property is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">This property is being set.</exception>
      <returns>
        <see langword="true" /> in all cases.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.Font">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The value of this property is not meaningful for this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.ForeColor">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The value of this property is not meaningful for this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.ImeMode">
      <summary>This property is not meaningful for this control.</summary>
      <returns>The value of this property is not meaningful for this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.RightToLeft">
      <summary>This property is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">This property is being set.</exception>
      <returns>The value of this property is not meaningful for this control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.Site">
      <summary>Gets or sets the site of the control.</summary>
      <returns>The <see cref="T:System.ComponentModel.ISite" /> associated with the <see cref="T:System.Windows.Forms.Control" />, if any.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.Text">
      <summary>This property is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">This property is being set.</exception>
      <returns>The text displayed in the control.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserBase.UseWaitCursor">
      <summary>This property is not supported by this control.</summary>
      <exception cref="T:System.NotSupportedException">This property is being set.</exception>
      <returns>
        <see langword="false" /> in all cases.</returns>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserDocumentCompletedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.WebBrowser.DocumentCompleted" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserDocumentCompletedEventArgs.#ctor(System.Uri)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.WebBrowserDocumentCompletedEventArgs" /> class.</summary>
      <param name="url">A <see cref="T:System.Uri" /> representing the location of the document that was loaded.</param>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserDocumentCompletedEventArgs.Url">
      <summary>Gets the location of the document to which the <see cref="T:System.Windows.Forms.WebBrowser" /> control has navigated.</summary>
      <returns>A <see cref="T:System.Uri" /> representing the location of the document that was loaded.</returns>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserDocumentCompletedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.WebBrowser.DocumentCompleted" /> event of a <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.WebBrowserDocumentCompletedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserEncryptionLevel">
      <summary>Specifies constants that define the encryption methods used by documents displayed in the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserEncryptionLevel.Bit128">
      <summary>128-bit security encryption.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserEncryptionLevel.Bit40">
      <summary>40-bit security encryption.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserEncryptionLevel.Bit56">
      <summary>56-bit security encryption.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserEncryptionLevel.Fortezza">
      <summary>Fortezza security encryption.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserEncryptionLevel.Insecure">
      <summary>No security encryption.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserEncryptionLevel.Mixed">
      <summary>Multiple security encryption methods in different Web page frames.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserEncryptionLevel.Unknown">
      <summary>Unknown security encryption.</summary>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserNavigatedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.WebBrowser.Navigated" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserNavigatedEventArgs.#ctor(System.Uri)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.WebBrowserNavigatedEventArgs" /> class.</summary>
      <param name="url">A <see cref="T:System.Uri" /> representing the location of the document to which the <see cref="T:System.Windows.Forms.WebBrowser" /> control has navigated.</param>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserNavigatedEventArgs.Url">
      <summary>Gets the location of the document to which the <see cref="T:System.Windows.Forms.WebBrowser" /> control has navigated.</summary>
      <returns>A <see cref="T:System.Uri" /> representing the location of the document to which the <see cref="T:System.Windows.Forms.WebBrowser" /> control has navigated.</returns>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserNavigatedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.WebBrowser.Navigated" /> event of a <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.WebBrowserNavigatedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserNavigatingEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.WebBrowser.Navigating" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserNavigatingEventArgs.#ctor(System.Uri,System.String)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.WebBrowserNavigatingEventArgs" /> class.</summary>
      <param name="url">A <see cref="T:System.Uri" /> representing the location of the document to which the <see cref="T:System.Windows.Forms.WebBrowser" /> control is navigating.</param>
      <param name="targetFrameName">The name of the Web page frame in which the new document will be loaded.</param>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserNavigatingEventArgs.TargetFrameName">
      <summary>Gets the name of the Web page frame in which the new document will be loaded.</summary>
      <returns>The name of the frame in which the new document will be loaded.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserNavigatingEventArgs.Url">
      <summary>Gets the location of the document to which the <see cref="T:System.Windows.Forms.WebBrowser" /> control is navigating.</summary>
      <returns>A <see cref="T:System.Uri" /> representing the location of the document to which the <see cref="T:System.Windows.Forms.WebBrowser" /> control is navigating.</returns>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserNavigatingEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.WebBrowser.Navigating" /> event of a <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.WebBrowserNavigatingEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserProgressChangedEventArgs">
      <summary>Provides data for the <see cref="E:System.Windows.Forms.WebBrowser.ProgressChanged" /> event.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserProgressChangedEventArgs.#ctor(System.Int64,System.Int64)">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.WebBrowserProgressChangedEventArgs" /> class.</summary>
      <param name="currentProgress">The number of bytes that are loaded already.</param>
      <param name="maximumProgress">The total number of bytes to be loaded.</param>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserProgressChangedEventArgs.CurrentProgress">
      <summary>Gets the number of bytes that have been downloaded.</summary>
      <returns>The number of bytes that have been loaded or -1 to indicate that the download has completed.</returns>
    </member>
    <member name="P:System.Windows.Forms.WebBrowserProgressChangedEventArgs.MaximumProgress">
      <summary>Gets the total number of bytes in the document being loaded.</summary>
      <returns>The total number of bytes to be loaded.</returns>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserProgressChangedEventHandler">
      <summary>Represents the method that will handle the <see cref="E:System.Windows.Forms.WebBrowser.ProgressChanged" /> event of a <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">A <see cref="T:System.Windows.Forms.WebBrowserProgressChangedEventArgs" /> that contains the event data.</param>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserReadyState">
      <summary>Specifies constants that define the state of the <see cref="T:System.Windows.Forms.WebBrowser" /> control.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserReadyState.Complete">
      <summary>The control has finished loading the new document and all its contents.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserReadyState.Interactive">
      <summary>The control has loaded enough of the document to allow limited user interaction, such as clicking hyperlinks that have been displayed.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserReadyState.Loaded">
      <summary>The control has loaded and initialized the new document, but has not yet received all the document data.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserReadyState.Loading">
      <summary>The control is loading a new document.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserReadyState.Uninitialized">
      <summary>No document is currently loaded.</summary>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserRefreshOption">
      <summary>Specifies constants that define how the <see cref="T:System.Windows.Forms.WebBrowser" /> control can refresh its contents.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserRefreshOption.Completely">
      <summary>A refresh that requests the latest version of the current Web page.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserRefreshOption.Continue">
      <summary>For internal use only; do not use.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserRefreshOption.IfExpired">
      <summary>A refresh that requests an update only if the current Web page has expired.</summary>
    </member>
    <member name="F:System.Windows.Forms.WebBrowserRefreshOption.Normal">
      <summary>A refresh that requests a copy of the current Web page that has been cached on the server.</summary>
    </member>
    <member name="T:System.Windows.Forms.WebBrowserSiteBase">
      <summary>Implements the interfaces of an ActiveX site for use as a base class by the <see cref="T:System.Windows.Forms.WebBrowser.WebBrowserSite" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserSiteBase.Dispose">
      <summary>Releases all resources used by the <see cref="T:System.Windows.Forms.WebBrowserSiteBase" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.WebBrowserSiteBase.Dispose(System.Boolean)">
      <summary>Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.WebBrowserSiteBase" /> and optionally releases the managed resources.</summary>
      <param name="disposing">
        <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
    </member>
    <member name="T:System.Windows.Forms.WindowsFormsSection">
      <summary>Defines a new <see cref="T:System.Configuration.ConfigurationSection" /> for parsing application settings. This class cannot be inherited.</summary>
    </member>
    <member name="M:System.Windows.Forms.WindowsFormsSection.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.WindowsFormsSection" /> class.</summary>
    </member>
    <member name="P:System.Windows.Forms.WindowsFormsSection.JitDebugging">
      <summary>Gets or sets a value indicating whether just-in-time (JIT) debugging is used.</summary>
      <returns>
        <see langword="true" /> if JIT debugging is used; otherwise, <see langword="false" />.</returns>
    </member>
    <member name="T:System.Windows.Forms.WindowsFormsSynchronizationContext">
      <summary>Provides a synchronization context for the Windows Forms application model.</summary>
    </member>
    <member name="M:System.Windows.Forms.WindowsFormsSynchronizationContext.#ctor">
      <summary>Initializes a new instance of the <see cref="T:System.Windows.Forms.WindowsFormsSynchronizationContext" /> class.</summary>
    </member>
    <member name="M:System.Windows.Forms.WindowsFormsSynchronizationContext.CreateCopy">
      <summary>Copies the synchronization context.</summary>
      <returns>A copy of the synchronization context.</returns>
    </member>
    <member name="M:System.Windows.Forms.WindowsFormsSynchronizationContext.Dispose">
      <summary>Releases all resources used by the <see cref="T:System.Windows.Forms.WindowsFormsSynchronizationContext" />.</summary>
    </member>
    <member name="M:System.Windows.Forms.WindowsFormsSynchronizationContext.Post(System.Threading.SendOrPostCallback,System.Object)">
      <summary>Dispatches an asynchronous message to a synchronization context.</summary>
      <param name="d">The <see cref="T:System.Threading.SendOrPostCallback" /> delegate to call.</param>
      <param name="state">The object passed to the delegate.</param>
    </member>
    <member name="M:System.Windows.Forms.WindowsFormsSynchronizationContext.Send(System.Threading.SendOrPostCallback,System.Object)">
      <summary>Dispatches a synchronous message to a synchronization context.</summary>
      <param name="d">The <see cref="T:System.Threading.SendOrPostCallback" /> delegate to call.</param>
      <param name="state">The object passed to the delegate.</param>
      <exception cref="T:System.ComponentModel.InvalidAsynchronousStateException">The destination thread no longer exists.</exception>
    </member>
    <member name="M:System.Windows.Forms.WindowsFormsSynchronizationContext.Uninstall">
      <summary>Uninstalls the currently installed <see cref="T:System.Windows.Forms.WindowsFormsSynchronizationContext" /> and replaces it with the previously installed context.</summary>
    </member>
    <member name="P:System.Windows.Forms.WindowsFormsSynchronizationContext.AutoInstall">
      <summary>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.WindowsFormsSynchronizationContext" /> is installed when a control is created.</summary>
      <returns>
        <see langword="true" /> if the <see cref="T:System.Windows.Forms.WindowsFormsSynchronizationContext" /> is installed; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
    </member>
  </members>
</doc>