ListItemCollection Class
A collection of ListItem objects in a list control. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
The ListItemCollection type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Capacity | Gets or sets the maximum number of items that the ListItemCollection can store. |
![]() | Count | Gets the number of ListItem objects in the collection. |
![]() | IsReadOnly | Gets a value indicating whether the ListItemCollection is read-only. |
![]() | IsSynchronized | Gets a value indicating whether access to the ListItemCollection is synchronized (thread-safe). |
![]() | Item | Gets a ListItem at the specified index in the collection. |
![]() | SyncRoot | Gets the object that can be used to synchronize access to the ListItemCollection. |
| Name | Description | |
|---|---|---|
![]() | Add(ListItem) | Appends the specified ListItem to the end of the collection. |
![]() | Add(String) | Appends a ListItem to the end of the collection that represents the specified string. |
![]() | AddRange | Adds the items in an array of ListItem objects to the collection. |
![]() | Clear | Removes all ListItem objects from the collection. |
![]() | Contains | Determines whether the collection contains the specified item. |
![]() | CopyTo | Copies the items from the ListItemCollection to the specified System.Array, starting with the specified index. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | FindByText | Searches the collection for a ListItem with a Text property that equals the specified text. |
![]() | FindByValue | Searches the collection for a ListItem with a Value property that contains the specified value. |
![]() | GetEnumerator | Returns a System.Collections.IEnumerator implemented object that contains all ListItem objects in the ListItemCollection. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | IndexOf | Determines the index value that represents the position of the specified ListItem in the collection. |
![]() | Insert(Int32, String) | Inserts a ListItem which represents the specified string in the collection at the specified index location. |
![]() | Insert(Int32, ListItem) | Inserts the specified ListItem in the collection at the specified index location. |
![]() | Remove(ListItem) | Removes the specified ListItem from the collection. |
![]() | Remove(String) | Removes a ListItem from the collection that represents the specified string. |
![]() | RemoveAt | Removes the ListItem at the specified index from the collection. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() | AsParallel | Enables parallelization of a query. (Defined by ParallelEnumerable.) |
![]() | AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
![]() | Cast<TResult> | Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
![]() | OfType<TResult> | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IList.Add | Infrastructure. For a description of this member, see Add. |
![]() ![]() | IList.Contains | Infrastructure. For a description of this member, see Contains. |
![]() ![]() | IList.IndexOf | Infrastructure. For a description of this member, see IndexOf. |
![]() ![]() | IList.Insert | Infrastructure. For a description of this member, see Insert. |
![]() ![]() | IList.IsFixedSize | Infrastructure. For a description of this member, see IsFixedSize. |
![]() ![]() | IList.Item | Infrastructure. For a description of this member, see Item. |
![]() ![]() | IList.Remove | Infrastructure. For a description of this member, see Remove. |
![]() ![]() | IStateManager.IsTrackingViewState | Infrastructure. For a description of this member, see IsTrackingViewState. |
![]() ![]() | IStateManager.LoadViewState | Infrastructure. Loads the previously saved state. |
![]() ![]() | IStateManager.SaveViewState | Infrastructure. Returns object containing state changes. |
![]() ![]() | IStateManager.TrackViewState | Infrastructure. Starts tracking state of changes. |
The ListItemCollection class represents a collection of ListItem objects. The ListItem objects, in turn, represent the items displayed in list controls, such as the ListBox. To programmatically retrieve ListItem objects from a list control, use one of following methods:
Use the indexer to get a single ListItem from the collection, using array notation.
Use the CopyTo method to copy the contents of the collection to a System.Array object, which can then be used to get items from the collection.
Use the GetEnumerator method to create a System.Collections.IEnumerator implemented object, which can then be used to get items from the collection.
Use foreach (C#) or For Each (Visual Basic) to iterate through the collection.
The Count property specifies the total number of items in the collection, and is commonly used to determine the upper bound of the collection. You can add and remove items from the collection by using the Add and Remove methods.
The following code example demonstrates creating ListItemCollection objects, adding items to the collections, and removing items from the collections. In the example, the ListItemCollection named listBoxData is used as the data source for a ListBox control called ListBox1, and the ListItemCollection called ddBoxData is used as the data source for a DropDownList control called DropDownList1.
<%@ Page language="C#" AutoEventWireup="true" %> <%@ Import Namespace="System.Data" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> private void Page_Load(object sender, System.EventArgs e) { // If this isn't the first time the page is loaded in this session, // then don't recreate the DataTables. if (!IsPostBack) { // Create a new ListItemCollection. ListItemCollection listBoxData = new ListItemCollection(); // Add items to the collection. listBoxData.Add(new ListItem("apples")); listBoxData.Add(new ListItem("bananas")); listBoxData.Add(new ListItem("cherries")); listBoxData.Add("grapes"); listBoxData.Add("mangos"); listBoxData.Add("oranges"); // Set the ListItemCollection as the data source for ListBox1. ListBox1.DataSource = listBoxData; ListBox1.DataBind(); // Create a new ListItemCollection. ListItemCollection ddBoxData = new ListItemCollection(); // For now, just bind the data to the DropDownList. DropDownList1.DataSource = ddBoxData; DropDownList1.DataBind(); } } private void moveButton1_Click(object sender, System.EventArgs e) { //Set the SelectedIndex to -1 so no items are selected. // The new item will be set as the selected item when it is added. DropDownList1.SelectedIndex = -1; // Add the selected item to DropDownList1. DropDownList1.Items.Add(ListBox1.SelectedItem); // Delete the selected item from ListBox1. ListBox1.Items.Remove(ListBox1.SelectedItem); } private void moveButton2_Click(object sender, System.EventArgs e) { //Set the SelectedIndex to -1 so no items are selected. // The new item will be set as the selected item when it is added. ListBox1.SelectedIndex = -1; // Add the selected item to ListBox1. ListBox1.Items.Add(DropDownList1.SelectedItem); //Delete the selected item from DropDownList1. DropDownList1.Items.Remove(DropDownList1.SelectedItem); } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>ASP.NET Example</title> </head> <body> <form id="form1" runat="server"> <table cellpadding="6" border="0"> <tr> <td rowspan="2" valign="top"> <asp:ListBox id="ListBox1" runat="server" SelectionMode="Single" Width="100px"> </asp:ListBox> </td> <td> <asp:Button id="moveButton1" runat="server" Text="Move -->" Width="100px" OnClick="moveButton1_Click"></asp:Button> </td> <td rowspan="2" valign="top"> <asp:DropDownList Runat="server" ID="DropDownList1" Width="100px"> </asp:DropDownList> </td> </tr> <tr> <td> <asp:Button ID="moveButton2" Runat="server" Text="<-- Move" Width="100px" onClick="moveButton2_Click"></asp:Button> </td> </tr> </table> </form> </body> </html>
<%@ Page language="c#" AutoEventWireup="true"%> <%@ Import Namespace="System.Data" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script language="C#" runat="server"> // Global Variables. private DataView dv; private DataTable dt = new DataTable(); private void Page_Load(object sender, System.EventArgs e) { // Set the number of rows displayed in the ListBox to be // the number of items in the ListBoxCollection. ListBox1.Rows = ListBox1.Items.Count; // If the DataTable is already stored in the Web form's default // HttpSessionState variable, then don't recreate the DataTable. if (Session["data"] == null) { // Add columns to the DataTable. dt.Columns.Add(new DataColumn("Item")); dt.Columns.Add(new DataColumn("Price")); // Store the DataTable in the Session variable so it can // be accessed again later. Session["data"] = dt; // Use the table to create a DataView, because the DataGrid // can only bind to a data source that implements IEnumerable. dv = new DataView(dt); // Set the DataView as the data source, and bind it to the DataGrid. DataGrid1.DataSource = dv; DataGrid1.DataBind(); } } private void addButton_Click(object sender, System.EventArgs e) { // Add the items selected in ListBox1 to DataGrid1. foreach (ListItem item in ListBox1.Items) { if (item.Selected) { // Add the item to the DataGrid. // First, get the DataTable from the Session variable. dt = (DataTable)Session["data"]; if (dt != null) { // Create a new DataRow in the DataTable. DataRow dr = dt.NewRow(); // Add the item to the new DataRow. dr["Item"] = item.Text; // Add the item's value to the DataRow. dr["Price"] = item.Value; // Add the DataRow to the DataTable. dt.Rows.Add(dr); // Rebind the data to DataGrid1. dv = new DataView(dt); DataGrid1.DataSource = dv; DataGrid1.DataBind(); } } } } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title> ListItemCollection Example </title> </head> <body> <form id="form1" runat="server"> <h3> ListItemCollection Example </h3> <table cellpadding="6" border="0"> <tr> <td valign="top"> <asp:ListBox id="ListBox1" runat="server" SelectionMode="Multiple"> <asp:ListItem Value=".89">apples</asp:ListItem> <asp:ListItem Value=".49">bananas</asp:ListItem> <asp:ListItem Value="2.99">cherries</asp:ListItem> <asp:ListItem Value="1.49">grapes</asp:ListItem> <asp:ListItem Value="2.00">mangos</asp:ListItem> <asp:ListItem Value="1.09">oranges</asp:ListItem> </asp:ListBox> </td> <td valign="top"> <asp:Button id="addButton" runat="server" Text="Add -->" Width="100px" OnClick="addButton_Click"></asp:Button> </td> <td valign="top"> <asp:DataGrid Runat="server" ID="DataGrid1" CellPadding="4"> </asp:DataGrid> </td> </tr> </table> </form> </body> </html>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

