﻿<?xml version="1.0" encoding="utf-8"?><Type Name="ListViewItem" FullName="System.Windows.Forms.ListViewItem"><TypeSignature Language="C#" Value="public class ListViewItem : ICloneable, System.Runtime.Serialization.ISerializable" /><AssemblyInfo><AssemblyName>System.Windows.Forms</AssemblyName><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Base><BaseTypeName>System.Object</BaseTypeName></Base><Interfaces><Interface><InterfaceName>System.ICloneable</InterfaceName></Interface><Interface><InterfaceName>System.Runtime.Serialization.ISerializable</InterfaceName></Interface></Interfaces><Attributes><Attribute><AttributeName>System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.ListViewItemConverter))</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.ToolboxItem(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignTimeVisible(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultProperty("Text")</AttributeName></Attribute></Attributes><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.ListView" /> control is similar to a <see cref="T:System.Windows.Forms.ListBox" /> in that it displays a list of items. The main difference is that the <see cref="T:System.Windows.Forms.ListView" /> control provides a number of different ways items can be viewed by the user. The <see cref="T:System.Windows.Forms.ListViewItem" /> class defines the appearance, behavior, and data associated with an item that is displayed in the <see cref="T:System.Windows.Forms.ListView" /> control. <see cref="T:System.Windows.Forms.ListViewItem" /> objects can be displayed in the <see cref="T:System.Windows.Forms.ListView" /> control in one of four different views. Items can be displayed as large or small icons or as small icons in a vertical list. Items can also have subitems that contain information that is related to the parent item. The fourth view style, details view, allows you to display the item and its subitems in a grid with column headers that can be used to identify the information being displayed in a subitem.</para><para>Most of the properties of the <see cref="T:System.Windows.Forms.ListViewItem" /> class provide ways to change the display of the item in the <see cref="T:System.Windows.Forms.ListView" /> control it is associated with. The <see cref="P:System.Windows.Forms.ListViewItem.BackColor" />, <see cref="P:System.Windows.Forms.ListViewItem.ForeColor" />, and <see cref="P:System.Windows.Forms.ListViewItem.Font" /> properties allow you to change how the text of the item is displayed in the <see cref="T:System.Windows.Forms.ListView" /> control. The <see cref="P:System.Windows.Forms.ListViewItem.ImageIndex" /> property allows you to specify the image to load from the <see cref="T:System.Windows.Forms.ImageList" /> that is assigned to the <see cref="T:System.Windows.Forms.ListView" /> control (by setting the <see cref="P:System.Windows.Forms.ListView.LargeImageList" /> or <see cref="P:System.Windows.Forms.ListView.SmallImageList" /> properties of the <see cref="T:System.Windows.Forms.ListView" />). Items can display check boxes in order to obtain item choices from the user in a way similar to a <see cref="T:System.Windows.Forms.CheckedListBox" /> control. You can use the <see cref="P:System.Windows.Forms.ListViewItem.Checked" /> property to determine if an item is checked, or to select or clear the check box at run time. Items can display any number of subitems when the <see cref="P:System.Windows.Forms.ListView.View" /> property of the associated <see cref="T:System.Windows.Forms.ListView" /> control is set to <see cref="F:System.Windows.Forms.View.Details" /> and columns are defined in the <see cref="T:System.Windows.Forms.ListView.ColumnHeaderCollection" /> of the <see cref="T:System.Windows.Forms.ListView" /> control. You can add subitems to an item by calling the <see cref="M:System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(System.Windows.Forms.ListViewItem.ListViewSubItem)" /> method of the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" /> class. The <see cref="P:System.Windows.Forms.ListViewItem.SubItems" /> property allows you to gain access to the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" /> class and its members.</para><para>Some of the properties and methods of the <see cref="T:System.Windows.Forms.ListViewItem" /> class are item-specific versions of properties and methods in the <see cref="T:System.Windows.Forms.ListView" /> control. For example, the <see cref="M:System.Windows.Forms.ListViewItem.EnsureVisible" /> method is similar to the <see cref="T:System.Windows.Forms.ListView" /> version of the method, but the <see cref="T:System.Windows.Forms.ListViewItem" /> version affects only the current item.</para><para>The <see cref="T:System.Windows.Forms.ListViewItem" /> class also provides methods that are not versions of <see cref="T:System.Windows.Forms.ListView" /> methods. The <see cref="M:System.Windows.Forms.ListViewItem.BeginEdit" /> method places the item's text into edit mode so the user can change the item's text (when the <see cref="P:System.Windows.Forms.ListView.LabelEdit" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control is set to true). The <see cref="M:System.Windows.Forms.ListViewItem.Clone" /> method allows you to create copies of existing <see cref="T:System.Windows.Forms.ListViewItem" /> objects to reuse in other <see cref="T:System.Windows.Forms.ListView" /> controls.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Represents an item in a <see cref="T:System.Windows.Forms.ListView" /> control.</para></summary></Docs><Members><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem ();" /><MemberType>Constructor</MemberType><Parameters /><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with default values.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string text);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="text" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The text of the <see cref="T:System.Windows.Forms.ListViewItem" /> should not exceed 259 characters or unexpected behavior could occur.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified item text.</para></summary><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text to display for the item. This should not exceed 259 characters.</param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with an array of strings representing subitems.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array of strings that represent the subitems of the new item. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This version of the constructor allows you to specify the group to which an item belongs.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class and assigns it to the specified group.</para></summary><param name="group"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to. </param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="protected ListViewItem (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" /><MemberType>Constructor</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Parameters><Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" /><Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified serialization information and streaming context.</para></summary><param name="info"><attribution license="cc4" from="Microsoft" modified="false" />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"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that indicates the source destination and context information of a serialized stream.</param></Docs></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string text, int imageIndex);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="text" Type="System.String" /><Parameter Name="imageIndex" Type="System.Int32" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The text of the <see cref="T:System.Windows.Forms.ListViewItem" /> should not exceed 259 characters or unexpected behavior could occur.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text to display for the item. This should not exceed 259 characters.</param><param name="imageIndex"><attribution license="cc4" from="Microsoft" modified="false" />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></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string text, string imageKey);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="text" Type="System.String" /><Parameter Name="imageKey" Type="System.String" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <paramref name="imageKey" /> parameter specifies an image in the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> associated with the owning <see cref="T:System.Windows.Forms.ListView" /> control, which can be accessed with the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> property.</para><para>The text of the <see cref="T:System.Windows.Forms.ListViewItem" /> should not exceed 259 characters or unexpected behavior could occur.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified text and image.</para></summary><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text to display for the item. This should not exceed 259 characters.</param><param name="imageKey"><attribution license="cc4" from="Microsoft" modified="false" />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></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string text, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="text" Type="System.String" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This version of the constructor allows you to specify the group to which an item belongs.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block><para>The text of the <see cref="T:System.Windows.Forms.ListViewItem" /> should not exceed 259 characters or unexpected behavior could occur.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text to display for the item. This should not exceed 259 characters.</param><param name="group"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to. </param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items, int imageIndex);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /><Parameter Name="imageIndex" Type="System.Int32" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array of strings that represent the subitems of the new item. </param><param name="imageIndex"><attribution license="cc4" from="Microsoft" modified="false" />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></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items, string imageKey);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /><Parameter Name="imageKey" Type="System.String" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <paramref name="imageKey" /> parameter specifies an image in the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> associated with the owning <see cref="T:System.Windows.Forms.ListView" /> control, which can be accessed with the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> property.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified item and subitem text and image.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array containing the text of the subitems of the <see cref="T:System.Windows.Forms.ListViewItem" />.</param><param name="imageKey"><attribution license="cc4" from="Microsoft" modified="false" />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></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This version of the constructor allows you to specify the group to which an item belongs.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array of strings that represent the subitems of the new item. </param><param name="group"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to. </param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, int imageIndex);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="subItems" Type="System.Windows.Forms.ListViewItem+ListViewSubItem[]" /><Parameter Name="imageIndex" Type="System.Int32" /></Parameters><Docs><param name="subItems">To be added.</param><param name="imageIndex">To be added.</param><summary>To be added.</summary><remarks>To be added.</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, string imageKey);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="subItems" Type="System.Windows.Forms.ListViewItem+ListViewSubItem[]" /><Parameter Name="imageKey" Type="System.String" /></Parameters><Docs><param name="subItems">To be added.</param><param name="imageKey">To be added.</param><summary>To be added.</summary><remarks>To be added.</remarks><since version=".NET 2.0" /></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string text, int imageIndex, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="text" Type="System.String" /><Parameter Name="imageIndex" Type="System.Int32" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This version of the constructor allows you to specify the group to which an item belongs.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block><para>The text of the <see cref="T:System.Windows.Forms.ListViewItem" /> should not exceed 259 characters or unexpected behavior could occur.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text to display for the item. This should not exceed 259 characters.</param><param name="imageIndex"><attribution license="cc4" from="Microsoft" modified="false" />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"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to. </param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string text, string imageKey, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="text" Type="System.String" /><Parameter Name="imageKey" Type="System.String" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This version of the constructor allows you to specify the group to which an item belongs.</para><para>The <paramref name="imageKey" /> parameter specifies an image in the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> associated with the owning <see cref="T:System.Windows.Forms.ListView" /> control, which can be accessed with the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> property.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block><para>The text of the <see cref="T:System.Windows.Forms.ListViewItem" /> should not exceed 259 characters or unexpected behavior could occur.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with the specified text, image, and group.</para></summary><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text to display for the item. This should not exceed 259 characters.</param><param name="imageKey"><attribution license="cc4" from="Microsoft" modified="false" />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"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items, int imageIndex, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /><Parameter Name="imageIndex" Type="System.Int32" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This version of the constructor allows you to specify the group to which an item belongs.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array of strings that represent the subitems of the new item. </param><param name="imageIndex"><attribution license="cc4" from="Microsoft" modified="false" />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"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to. </param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items, string imageKey, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /><Parameter Name="imageKey" Type="System.String" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This version of the constructor allows you to specify the group to which an item belongs.</para><para>The <paramref name="imageKey" /> parameter specifies an image in the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> associated with the owning <see cref="T:System.Windows.Forms.ListView" /> control, which can be accessed with the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> property.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class with subitems containing the specified text, image, and group.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array of strings that represents the text for subitems of the <see cref="T:System.Windows.Forms.ListViewItem" />.</param><param name="imageKey"><attribution license="cc4" from="Microsoft" modified="false" />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"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, int imageIndex, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="subItems" Type="System.Windows.Forms.ListViewItem+ListViewSubItem[]" /><Parameter Name="imageIndex" Type="System.Int32" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><param name="subItems">To be added.</param><param name="imageIndex">To be added.</param><param name="group">To be added.</param><summary>To be added.</summary><remarks>To be added.</remarks><since version=".NET 2.0" /></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, string imageKey, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="subItems" Type="System.Windows.Forms.ListViewItem+ListViewSubItem[]" /><Parameter Name="imageKey" Type="System.String" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><param name="subItems">To be added.</param><param name="imageKey">To be added.</param><param name="group">To be added.</param><summary>To be added.</summary><remarks>To be added.</remarks><since version=".NET 2.0" /></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /><Parameter Name="imageIndex" Type="System.Int32" /><Parameter Name="foreColor" Type="System.Drawing.Color" /><Parameter Name="backColor" Type="System.Drawing.Color" /><Parameter Name="font" Type="System.Drawing.Font" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array of strings that represent the subitems of the new item. </param><param name="imageIndex"><attribution license="cc4" from="Microsoft" modified="false" />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"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the item. </param><param name="backColor"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Color" /> that represents the background color of the item. </param><param name="font"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Font" /> that represents the font to display the item's text in. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items, string imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /><Parameter Name="imageKey" Type="System.String" /><Parameter Name="foreColor" Type="System.Drawing.Color" /><Parameter Name="backColor" Type="System.Drawing.Color" /><Parameter Name="font" Type="System.Drawing.Font" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <paramref name="imageKey" /> parameter specifies an image in the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> associated with the owning <see cref="T:System.Windows.Forms.ListView" /> control, which can be accessed with the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> property.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array of strings that represent the text of the subitems for the <see cref="T:System.Windows.Forms.ListViewItem" />.</param><param name="imageKey"><attribution license="cc4" from="Microsoft" modified="false" />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"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the item.</param><param name="backColor"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Color" /> that represents the background color of the item.</param><param name="font"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Font" /> to apply to the item text.</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /><Parameter Name="imageIndex" Type="System.Int32" /><Parameter Name="foreColor" Type="System.Drawing.Color" /><Parameter Name="backColor" Type="System.Drawing.Color" /><Parameter Name="font" Type="System.Drawing.Font" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This version of the constructor allows you to specify the group to which an item belongs.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array of strings that represent the subitems of the new item. </param><param name="imageIndex"><attribution license="cc4" from="Microsoft" modified="false" />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"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the item. </param><param name="backColor"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Color" /> that represents the background color of the item. </param><param name="font"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Font" /> that represents the font to display the item's text in. </param><param name="group"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to. </param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public ListViewItem (string[] items, string imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font, System.Windows.Forms.ListViewGroup group);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="items" Type="System.String[]" /><Parameter Name="imageKey" Type="System.String" /><Parameter Name="foreColor" Type="System.Drawing.Color" /><Parameter Name="backColor" Type="System.Drawing.Color" /><Parameter Name="font" Type="System.Drawing.Font" /><Parameter Name="group" Type="System.Windows.Forms.ListViewGroup" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This version of the constructor allows you to specify the group to which an item belongs.</para><para>The <paramref name="imageKey" /> parameter specifies an image in the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> associated with the owning <see cref="T:System.Windows.Forms.ListView" /> control, which can be accessed with the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> property.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary><param name="items"><attribution license="cc4" from="Microsoft" modified="false" />An array of strings that represents the text of the subitems for the <see cref="T:System.Windows.Forms.ListViewItem" />.</param><param name="imageKey"><attribution license="cc4" from="Microsoft" modified="false" />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"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Color" /> that represents the foreground color of the item.</param><param name="backColor"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Color" /> that represents the background color of the item.</param><param name="font"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Font" /> to apply to the item text.</param><param name="group"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.ListViewGroup" /> to assign the item to.</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="BackColor"><MemberSignature Language="C#" Value="public System.Drawing.Color BackColor { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Color</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can use the <see cref="P:System.Windows.Forms.ListViewItem.BackColor" /> property to change the color displayed behind the item text. This property can be used if you want to use different background and foreground color combinations (using the <see cref="P:System.Windows.Forms.ListViewItem.ForeColor" /> property to set the foreground color) to differentiate one item from another. For example, you could set the <see cref="P:System.Windows.Forms.ListViewItem.BackColor" /> property to <see cref="P:System.Drawing.Color.Red" /> to identify items that have failed validation or are missing subitem information.</para><para>If you want to use the same background color for all subitems of an item, set the <see cref="P:System.Windows.Forms.ListViewItem.UseItemStyleForSubItems" /> property to true. This will cause the colors and fonts specified for the item to be used for all subitem text.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the background color of the item's text.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="BeginEdit"><MemberSignature Language="C#" Value="public void BeginEdit ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This property is effective only if the <see cref="P:System.Windows.Forms.ListView.LabelEdit" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control that contains the item is set to true. You can use this method at run time to force the item's text to display in edit mode. For example, if you are validating the item text edited by the user, and an item fails validation, you could select the item in the <see cref="T:System.Windows.Forms.ListView" /> control and call the <see cref="M:System.Windows.Forms.ListViewItem.BeginEdit" /> method to force the user to change the text that failed validation.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Places the item text into edit mode.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Bounds"><MemberSignature Language="C#" Value="public System.Drawing.Rectangle Bounds { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Rectangle</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can use this method to obtain the bounding rectangle of an entire item. If you want to obtain the bounding rectangle for a portion of the entire item, use the <see cref="M:System.Windows.Forms.ListViewItem.GetBounds(System.Windows.Forms.ItemBoundsPortion)" /> method. The <see cref="T:System.Windows.Forms.ListView" /> class provides a <see cref="M:System.Windows.Forms.ListView.GetItemRect(System.Int32)" /> method that allows you to get the bounding rectangle of any item located within the control.</para><para>The returned bounding rectangle uses client control coordinates that are relative to the top-left corner of the currently visible area of the containing <see cref="T:System.Windows.Forms.ListBox" />. If the <see cref="T:System.Windows.Forms.ListBox" /> is scrollable and positioned so that the <see cref="T:System.Windows.Forms.ListViewItem" /> is not visible, the coordinates returned may be negative.</para><para>When the <see cref="P:System.Windows.Forms.ListView.View" /> property has a value of <see cref="F:System.Windows.Forms.View.List" />, the width of the bounding rectangle is the width of the column containing the item, not the width of the text in the item. If the <see cref="P:System.Windows.Forms.ListView.Columns" /> collection does not contain any columns, the default column width of 60 pixels is used.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the bounding rectangle of the item, including subitems.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Checked"><MemberSignature Language="C#" Value="public bool Checked { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This property is useful only if the <see cref="P:System.Windows.Forms.ListView.CheckBoxes" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control the item is contained in is set to true. You can use this property to determine if the item has been checked by the user or through code at run time. To determine all the items that are checked in a <see cref="T:System.Windows.Forms.ListView" /> control, you can use the <see cref="P:System.Windows.Forms.ListView.CheckedItems" /> property. To take action when an item has been checked, you can create an event handler for the <see cref="E:System.Windows.Forms.ListView.ItemCheck" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the item is checked.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Clone"><MemberSignature Language="C#" Value="public virtual object Clone ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can use this method to create a new instance of the <see cref="T:System.Windows.Forms.ListViewItem" /> class based on an existing item. Even the subitems of the item being cloned are specified for the new version. This feature is useful if you want to reuse a <see cref="T:System.Windows.Forms.ListViewItem" /> in more than one <see cref="T:System.Windows.Forms.ListView" /> control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an identical copy of the item.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An object that represents an item that has the same text, image, and subitems associated with it as the cloned item.</para></returns></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Deserialize"><MemberSignature Language="C#" Value="protected virtual void Deserialize (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" /><Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Deserializes the item.</para></summary><param name="info"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the data needed to deserialize the item. </param><param name="context"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that represents the source and destination of the stream being deserialized. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="EnsureVisible"><MemberSignature Language="C#" Value="public virtual void EnsureVisible ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can use this method to ensure that the item is visible within the <see cref="T:System.Windows.Forms.ListView" /> control. This method can be used when performing validation on the item. You can call the <see cref="M:System.Windows.Forms.ListViewItem.EnsureVisible" /> method to ensure that the item is displayed in the <see cref="T:System.Windows.Forms.ListView" /> control if it failed validation, to allow the user to perform changes on the item.</para><para>This method is similar to the <see cref="M:System.Windows.Forms.ListView.EnsureVisible(System.Int32)" /> method of the <see cref="T:System.Windows.Forms.ListView" /> control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Ensures that the item is visible within the control, scrolling the contents of the control, if necessary.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="FindNearestItem"><MemberSignature Language="C#" Value="public System.Windows.Forms.ListViewItem FindNearestItem (System.Windows.Forms.SearchDirectionHint searchDirection);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.ListViewItem</ReturnType></ReturnValue><Parameters><Parameter Name="searchDirection" Type="System.Windows.Forms.SearchDirectionHint" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.ListViewItem.FindNearestItem(System.Windows.Forms.SearchDirectionHint)" /> method returns null if no item is found in the given direction. </para><para>Identifying the nearest item can vary depending on the operating system the application is running on and will affect the results of <see cref="M:System.Windows.Forms.ListViewItem.FindNearestItem(System.Windows.Forms.SearchDirectionHint)" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Finds the next item from the <see cref="T:System.Windows.Forms.ListViewItem" />, searching in the specified direction.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.ListViewItem" /> that is closest to the given coordinates, searching in the specified direction.</para></returns><param name="searchDirection"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.SearchDirectionHint" /> values.</param></Docs></Member><Member MemberName="Focused"><MemberSignature Language="C#" Value="public bool Focused { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Because a <see cref="T:System.Windows.Forms.ListView" /> control does not have directly editable areas—only items contained in the <see cref="T:System.Windows.Forms.ListView" /> can be edited—the text of an item in the <see cref="T:System.Windows.Forms.ListView" /> will display the focus reticle when the <see cref="T:System.Windows.Forms.ListView" /> has focus. Typically, the last selected item in the <see cref="T:System.Windows.Forms.ListView" /> control is the item with focus. Although an item may display the focus reticle, it might not actually be a selected item in the <see cref="T:System.Windows.Forms.ListView" />. You can use the <see cref="P:System.Windows.Forms.ListViewItem.Focused" /> property to determine if the item is currently the focused item in the <see cref="T:System.Windows.Forms.ListView" /> control that contains it. If the <see cref="T:System.Windows.Forms.ListViewItem" /> is not associated with a <see cref="T:System.Windows.Forms.ListView" /> control, this property will return false.</para><para>The <see cref="T:System.Windows.Forms.ListView" /> control provides the <see cref="P:System.Windows.Forms.ListView.FocusedItem" /> property to allow you to determine which <see cref="T:System.Windows.Forms.ListViewItem" /> in the <see cref="T:System.Windows.Forms.ListView" /> has the focus.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the item has focus within the <see cref="T:System.Windows.Forms.ListView" /> control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Font"><MemberSignature Language="C#" Value="public System.Drawing.Font Font { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Font</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can use this method to change the font styles applied to the text of the item. Because a <see cref="T:System.Drawing.Font" /> is immutable (you cannot adjust any of its properties), you can only assign the <see cref="P:System.Windows.Forms.Control.Font" /> property a new <see cref="T:System.Drawing.Font" />. However, you can base the new font on the existing font.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the font of the text displayed by the item.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ForeColor"><MemberSignature Language="C#" Value="public System.Drawing.Color ForeColor { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Color</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can use the <see cref="P:System.Windows.Forms.ListViewItem.ForeColor" /> property to change the color of the item text. This property can be used if you want to use different background and foreground color combinations (using the <see cref="P:System.Windows.Forms.ListViewItem.BackColor" /> property to set the background color) to differentiate one item from another. For example, you could set the <see cref="P:System.Windows.Forms.ListViewItem.ForeColor" /> property to <see cref="P:System.Drawing.Color.Red" /> to identify items that have a negative number associated with them or have failed item validation.</para><para>If you want to use the same foreground color for all subitems of an item, set the <see cref="P:System.Windows.Forms.ListViewItem.UseItemStyleForSubItems" /> property to true. This will cause the colors and fonts specified for the item to be used for all subitem text.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the foreground color of the item's text.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GetBounds"><MemberSignature Language="C#" Value="public System.Drawing.Rectangle GetBounds (System.Windows.Forms.ItemBoundsPortion portion);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Drawing.Rectangle</ReturnType></ReturnValue><Parameters><Parameter Name="portion" Type="System.Windows.Forms.ItemBoundsPortion" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The bounding rectangle returned by the <see cref="M:System.Windows.Forms.ListViewItem.GetBounds(System.Windows.Forms.ItemBoundsPortion)" /> method represents only the section of the item specified in the <paramref name="portion" /> parameter. You can also call the <see cref="M:System.Windows.Forms.ListView.GetItemRect(System.Int32)" /> methods of the <see cref="T:System.Windows.Forms.ListView" /> class to obtain the bounding rectangle of any item in a <see cref="T:System.Windows.Forms.ListView" /> control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Retrieves the specified portion of the bounding rectangle for the item.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Drawing.Rectangle" /> that represents the bounding rectangle for the specified portion of the item.</para></returns><param name="portion"><attribution license="cc4" from="Microsoft" modified="false" />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></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GetSubItemAt"><MemberSignature Language="C#" Value="public System.Windows.Forms.ListViewItem.ListViewSubItem GetSubItemAt (int x, int y);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Windows.Forms.ListViewItem+ListViewSubItem</ReturnType></ReturnValue><Parameters><Parameter Name="x" Type="System.Int32" /><Parameter Name="y" Type="System.Int32" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Windows.Forms.ListViewItem.GetSubItemAt(System.Int32,System.Int32)" /> method will return null if the <see cref="T:System.Windows.Forms.ListView" /> is not in <see cref="F:System.Windows.Forms.View.Details" /> view, or there is not a <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> located at the specified point.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Returns the subitem of the <see cref="T:System.Windows.Forms.ListViewItem" /> at the specified coordinates.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItem" /> at the specified x- and y-coordinates.</para></returns><param name="x"><attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate. </param><param name="y"><attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate.</param></Docs></Member><Member MemberName="Group"><MemberSignature Language="C#" Value="public System.Windows.Forms.ListViewGroup Group { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ListViewGroup</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Use this property to set the group to which an item belongs. You can also set the group in the <see cref="M:System.Windows.Forms.ListViewItem.#ctor" /> constructor, or you can use this property to modify the group membership at run time. If you set this property to null and there are groups in the <see cref="P:System.Windows.Forms.ListView.Groups" /> collection, the item will appear in the default group, which has the header label "DefaultGroupSystem.Windows.Forms". The default group is not contained in the <see cref="P:System.Windows.Forms.ListView.Groups" /> collection, and cannot be altered. It is primarily useful in debugging to ensure that all items have been properly added to groups.</para><block subset="none" type="note"><para><see cref="T:System.Windows.Forms.ListView" /> groups are only available on Windows XP and the Windows Server 2003 family (WinXpFamily). For more information, see the <see cref="T:System.Windows.Forms.ListViewGroup" /> overview topic.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the group to which the item is assigned.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ImageIndex"><MemberSignature Language="C#" Value="public int ImageIndex { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.NoneExcludedImageIndexConverter))</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.ImageIndexEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultValue(-1)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The value of this property depends on the value of the <see cref="P:System.Windows.Forms.ListViewItem.ImageList" /> property. Depending on the current value of the <see cref="P:System.Windows.Forms.ListView.View" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control associated with the item, the <see cref="T:System.Windows.Forms.ImageList" /> used by the item could be one specified in the <see cref="P:System.Windows.Forms.ListView.LargeImageList" /> property or the <see cref="P:System.Windows.Forms.ListView.SmallImageList" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control. If the <see cref="P:System.Windows.Forms.ListView.View" /> property is set to <see cref="F:System.Windows.Forms.View.LargeIcon" />, the <see cref="T:System.Windows.Forms.ImageList" /> specified in the <see cref="P:System.Windows.Forms.ListView.LargeImageList" /> property is used; otherwise, the <see cref="T:System.Windows.Forms.ImageList" /> specified in the <see cref="P:System.Windows.Forms.ListView.SmallImageList" /> property is used. The images defined in the <see cref="T:System.Windows.Forms.ImageList" /> specified in the <see cref="P:System.Windows.Forms.ListView.SmallImageList" /> should have the same index positions as the images in the <see cref="T:System.Windows.Forms.ImageList" /> specified in the <see cref="P:System.Windows.Forms.ListView.LargeImageList" /> property. If the index positions are the same for both <see cref="T:System.Windows.Forms.ImageList" /> controls, you can set a single index value for the <see cref="P:System.Windows.Forms.ListViewItem.ImageIndex" /> property and the appropriate image will be displayed regardless of the value of the <see cref="P:System.Windows.Forms.ListView.View" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control. The <see cref="P:System.Windows.Forms.ListViewItem.ImageKey" /> and <see cref="P:System.Windows.Forms.ListViewItem.ImageIndex" /> properties are mutually exclusive, meaning if one is set, the other is ignored. Furthermore, if you set the <see cref="P:System.Windows.Forms.ListViewItem.ImageKey" /> property, the <see cref="P:System.Windows.Forms.ListViewItem.ImageIndex" /> property is automatically set to -1. Alternatively, if you set the <see cref="P:System.Windows.Forms.ListViewItem.ImageIndex" /> property, the <see cref="P:System.Windows.Forms.ListViewItem.ImageKey" /> is automatically set to an empty string ("").</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the index of the image that is displayed for the item.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ImageKey"><MemberSignature Language="C#" Value="public string ImageKey { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.ImageKeyConverter))</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.ImageIndexEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultValue("")</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.ListViewItem.ImageKey" /> property returns an empty string ("") when the <see cref="P:System.Windows.Forms.ListViewItem.ImageKey" /> is not set for the <see cref="T:System.Windows.Forms.ListViewItem" />. The <see cref="P:System.Windows.Forms.ListViewItem.ImageKey" /> and <see cref="P:System.Windows.Forms.ListViewItem.ImageIndex" /> properties are mutually exclusive, meaning if one is set, the other is ignored. If you set the <see cref="P:System.Windows.Forms.ListViewItem.ImageKey" /> property, the <see cref="P:System.Windows.Forms.ListViewItem.ImageIndex" /> property is automatically set to -1. Alternatively, if you set the <see cref="P:System.Windows.Forms.ListViewItem.ImageIndex" /> property, the <see cref="P:System.Windows.Forms.ListViewItem.ImageKey" /> is automatically set to an empty string ("").</para><block subset="none" type="note"><para>If you are using multiple image lists, for small and large icon view, with a <see cref="T:System.Windows.Forms.ListView" /> control, you should place small and large versions of the image at the same index location in their respective image lists. When switching between views, the index location of the image in one list is used to locate the image in the other list, regardless of the key value specified. </para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the key for the image that is displayed for the item.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ImageList"><MemberSignature Language="C#" Value="public System.Windows.Forms.ImageList ImageList { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ImageList</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Depending on the current value of the <see cref="P:System.Windows.Forms.ListView.View" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control associated with the item, the <see cref="T:System.Windows.Forms.ImageList" /> used by the item could be one specified in the <see cref="P:System.Windows.Forms.ListView.LargeImageList" /> property or the <see cref="P:System.Windows.Forms.ListView.SmallImageList" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control. If the <see cref="P:System.Windows.Forms.ListView.View" /> property is set to <see cref="F:System.Windows.Forms.View.LargeIcon" />, the <see cref="T:System.Windows.Forms.ImageList" /> specified in the <see cref="P:System.Windows.Forms.ListView.LargeImageList" /> property is used; otherwise, the <see cref="T:System.Windows.Forms.ImageList" /> specified in the <see cref="P:System.Windows.Forms.ListView.SmallImageList" /> property is used. You can use this property to determine which <see cref="T:System.Windows.Forms.ImageList" /> control is providing the image for the item. To determine the index position in the <see cref="T:System.Windows.Forms.ImageList" /> that contains the image to display for the item, use the <see cref="P:System.Windows.Forms.ListViewItem.ImageIndex" /> property.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the <see cref="T:System.Windows.Forms.ImageList" /> that contains the image displayed with the item.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IndentCount"><MemberSignature Language="C#" Value="public int IndentCount { set; get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(0)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.ListViewItem.IndentCount" /> property can be used only when the <see cref="P:System.Windows.Forms.ListView.View" /> property of the containing <see cref="T:System.Windows.Forms.ListView" /> is set to <see cref="F:System.Windows.Forms.View.Details" />, and the <see cref="P:System.Windows.Forms.ListView.SmallImageList" /> property of the <see cref="T:System.Windows.Forms.ListView" /> is set.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the number of small image widths by which to indent the <see cref="T:System.Windows.Forms.ListViewItem" />.</para></summary></Docs></Member><Member MemberName="Index"><MemberSignature Language="C#" Value="public int Index { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can use this property to determine if the item is associated with a <see cref="T:System.Windows.Forms.ListView" /> control as well as to determine its position within the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> of the <see cref="T:System.Windows.Forms.ListView" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the zero-based index of the item within the <see cref="T:System.Windows.Forms.ListView" /> control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ListView"><MemberSignature Language="C#" Value="public System.Windows.Forms.ListView ListView { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ListView</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can use this property to access the <see cref="T:System.Windows.Forms.ListView" /> control that owns the <see cref="T:System.Windows.Forms.ListViewItem" />.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the <see cref="T:System.Windows.Forms.ListView" /> control that contains the item.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Name"><MemberSignature Language="C#" Value="public string Name { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The value of the <see cref="P:System.Windows.Forms.ListViewItem.Name" /> property is also the key for the <see cref="T:System.Windows.Forms.ListViewItem" /> when the item is accessed in a collection.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the name associated with this <see cref="T:System.Windows.Forms.ListViewItem" />. </para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Position"><MemberSignature Language="C#" Value="public System.Drawing.Point Position { set; get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Drawing.Point</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.ListViewItem.Position" /> property should be set after the <see cref="T:System.Windows.Forms.ListViewItem" /> and containing <see cref="T:System.Windows.Forms.ListView" /> are constructed. Changing the <see cref="P:System.Windows.Forms.ListViewItem.Position" /> property when the containing <see cref="T:System.Windows.Forms.ListView" /> is in <see cref="F:System.Windows.Forms.View.Details" /> or <see cref="F:System.Windows.Forms.View.List" /> view will have no effect on the position of the items. Also, the <see cref="P:System.Windows.Forms.ListViewItem.Position" /> property will automatically change when the <see cref="P:System.Windows.Forms.ListView.View" /> property of the containing <see cref="T:System.Windows.Forms.ListView" /> is changed from <see cref="F:System.Windows.Forms.View.SmallIcon" />, <see cref="F:System.Windows.Forms.View.LargeIcon" />, or <see cref="F:System.Windows.Forms.View.Tile" /> view to <see cref="F:System.Windows.Forms.View.List" /> or <see cref="F:System.Windows.Forms.View.Details" />. When the <see cref="T:System.Windows.Forms.ListView" /> is in <see cref="F:System.Windows.Forms.View.SmallIcon" />, <see cref="F:System.Windows.Forms.View.LargeIcon" />, or <see cref="F:System.Windows.Forms.View.Tile" /> view, setting the <see cref="P:System.Windows.Forms.ListViewItem.Position" /> property for an item will cause the other items contained in the <see cref="T:System.Windows.Forms.ListView" /> to be rearranged.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the position of the upper-left corner of the <see cref="T:System.Windows.Forms.ListViewItem" />.</para></summary></Docs></Member><Member MemberName="Remove"><MemberSignature Language="C#" Value="public virtual void Remove ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This method is similar in function to the <see cref="M:System.Windows.Forms.ListView.ListViewItemCollection.Remove(System.Windows.Forms.ListViewItem)" /> method of the <see cref="T:System.Windows.Forms.ListView.ListViewItemCollection" /> in the <see cref="T:System.Windows.Forms.ListView" /> control that contains the item. You can use the <see cref="M:System.Windows.Forms.ListViewItem.Remove" /> method to remove an item from its <see cref="T:System.Windows.Forms.ListView" /> control. This feature can be useful if you want to move the item to a different <see cref="T:System.Windows.Forms.ListView" /> control or need to remove the item based on a request from the user to remove the item from within your application.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Removes the item from its associated <see cref="T:System.Windows.Forms.ListView" /> control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Selected"><MemberSignature Language="C#" Value="public bool Selected { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Browsable(false)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If the <see cref="P:System.Windows.Forms.ListView.MultiSelect" /> property of the <see cref="T:System.Windows.Forms.ListView" /> control the item is contained in is set to true, setting the value of this property adds or removes the item from the set of selected items. If the <see cref="P:System.Windows.Forms.ListView.MultiSelect" /> property is set to false, setting the value of this property to select an item automatically cancels the selection for any other items in the <see cref="T:System.Windows.Forms.ListView" /> control. You can use this property to determine if an item is selected or to select an item at run time. You can access all items that are selected in a <see cref="T:System.Windows.Forms.ListView" /> control by using the <see cref="P:System.Windows.Forms.ListView.SelectedItems" /> property.</para><block subset="none" type="note"><para>Items appear selected only when the <see cref="T:System.Windows.Forms.ListView" /> control has focus. To select items in response to a user action such as a button click, be sure to call the <see cref="M:System.Windows.Forms.Control.Focus" /> method in addition to setting this property.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value indicating whether the item is selected.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Serialize"><MemberSignature Language="C#" Value="protected virtual void Serialize (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" /><Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Serializes the item.</para></summary><param name="info"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the data needed to serialize the item. </param><param name="context"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that represents the source and destination of the stream being serialized. </param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="StateImageIndex"><MemberSignature Language="C#" Value="public int StateImageIndex { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.NoneExcludedImageIndexConverter))</AttributeName></Attribute><Attribute><AttributeName>System.Windows.Forms.RelatedImageList("ListView.StateImageList")</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.ImageIndexEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultValue(-1)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This property allows you to specify the index into the <see cref="T:System.Windows.Forms.ImageList" /> assigned to the <see cref="P:System.Windows.Forms.ListView.StateImageList" /> property of the associated <see cref="T:System.Windows.Forms.ListView" /> control, where the state images to display to the left of the item are stored. Typically, the state image is a selected or cleared check box or an image that is intended to represent selected or cleared states for the item. If no value is specified for the <see cref="P:System.Windows.Forms.ListView.StateImageList" /> property, the <see cref="T:System.Windows.Forms.ListView" /> control displays a default selected or cleared check box when the <see cref="P:System.Windows.Forms.ListView.CheckBoxes" /> property of the control is set to true.</para><block subset="none" type="note"><para>Although the <see cref="T:System.Windows.Forms.ImageList" /> specified in the <see cref="P:System.Windows.Forms.ListView.StateImageList" /> property can contain any number of images, and the <see cref="P:System.Windows.Forms.ListViewItem.StateImageIndex" /> property can be set to any value equal to or lower than 14, only the images at index positions 0 and 1 are displayed as state images.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="SubItems"><MemberSignature Language="C#" Value="public System.Windows.Forms.ListViewItem.ListViewSubItemCollection SubItems { get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.ListViewSubItemCollectionEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Windows.Forms.ListViewItem+ListViewSubItemCollection</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Using the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" />, you can add subitems, remove subitems, and obtain a count of subitems. For more information on the tasks that can be performed with the subitems in the collection, see the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" /> class reference topics.</para><block subset="none" type="note"><para>The first subitem in the <see cref="T:System.Windows.Forms.ListViewItem.ListViewSubItemCollection" /> is always the item that owns the subitems. When performing operations on subitems in the collection, be sure to reference index position 1 instead of 0 to make changes to the first subitem.</para></block></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a collection containing all subitems of the item.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="System.Runtime.Serialization.ISerializable.GetObjectData"><MemberSignature Language="C#" Value="void ISerializable.GetObjectData (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="info" Type="System.Runtime.Serialization.SerializationInfo" /><Parameter Name="context" Type="System.Runtime.Serialization.StreamingContext" /></Parameters><Docs><remarks>To be added.</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Serializes the item.</para></summary><param name="info"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the data needed to serialize the item.  </param><param name="context"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that represents the source and destination of the stream being serialized.</param></Docs></Member><Member MemberName="Tag"><MemberSignature Language="C#" Value="public object Tag { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.TypeConverter(typeof(System.ComponentModel.StringConverter))</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(false)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Bindable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.ListViewItem.Tag" /> property can be used to store any object that you want to associate with an item. Although you can store any item, the <see cref="P:System.Windows.Forms.ListViewItem.Tag" /> property is typically used to store string information about the item, such as a unique identifier or the index position of the item's data in a database.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets an object that contains data to associate with the item.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Text"><MemberSignature Language="C#" Value="public string Text { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName></Attribute><Attribute><AttributeName>System.ComponentModel.Localizable(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.ListViewItem.Text" /> property allows you to change the text displayed for the item. The text of the <see cref="T:System.Windows.Forms.ListViewItem" /> should not exceed 259 characters or unexpected behavior could occur.</para><para>You can use the <see cref="P:System.Windows.Forms.ListViewItem.BackColor" />, <see cref="P:System.Windows.Forms.ListViewItem.ForeColor" />, and <see cref="P:System.Windows.Forms.ListViewItem.Font" /> properties to specify how the text is displayed. The <see cref="T:System.Windows.Forms.ListView" /> class provides the <see cref="P:System.Windows.Forms.ListView.LabelWrap" /> property that determines whether text wraps to the next line or is displayed on a single line.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the text of the item.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="ToolTipText"><MemberSignature Language="C#" Value="public string ToolTipText { set; get; }" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue("")</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If both the <see cref="T:System.Windows.Forms.ListViewItem" /> and its containing <see cref="T:System.Windows.Forms.ListView" /> have ToolTips set, only the ToolTip for the <see cref="T:System.Windows.Forms.ListViewItem" /> will be shown.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the text shown when the mouse pointer rests on the <see cref="T:System.Windows.Forms.ListViewItem" />.</para></summary></Docs></Member><Member MemberName="ToString"><MemberSignature Language="C#" Value="public override string ToString ();" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters /><Docs><summary>To be added.</summary><returns>To be added.</returns><remarks>To be added.</remarks></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="UseItemStyleForSubItems"><MemberSignature Language="C#" Value="public bool UseItemStyleForSubItems { set; get; }" /><MemberType>Property</MemberType><Attributes><Attribute><AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName></Attribute></Attributes><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>If you do not want to have a uniform background color, foreground color, and font used for all items and subitems in your <see cref="T:System.Windows.Forms.ListView" /> control, you can set this property to false. When this property is set to true, any changes made to the subitem's <see cref="P:System.Windows.Forms.ListViewItem.ListViewSubItem.Font" />, <see cref="P:System.Windows.Forms.ListViewItem.ListViewSubItem.ForeColor" />, and <see cref="P:System.Windows.Forms.ListViewItem.ListViewSubItem.BackColor" /> properties are ignored, and the values of the item are used instead. You can use this property if you need to specify a different text color, background color, or font to be used for a subitem to highlight the item when subitems are displayed in the <see cref="T:System.Windows.Forms.ListView" /> control.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>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.</para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member></Members></Type>