RepeaterItemCollection.Count Property

Definition

Gets the number of RepeaterItem objects in the collection.

C#
public int Count { get; }

Property Value

The number of DataListItem objects in the collection.

Implements

Examples

To see this code in the context of a complete example, see the RepeaterItemCollection class topic.

C#
      void Item_Clicked(Object Sender, EventArgs e)
      {
labelDisplay.Text = "Using item indexer.<br />";
labelDisplay.Text += "The Items collection contains: <br />";

// Display the elements of the RepeaterItemCollection using the indexer.
RepeaterItemCollection  myItemCollection = myRepeater.Items;
for(int index=0;index < myItemCollection.Count;index++)
labelDisplay.Text += ((DataBoundLiteralControl)
   myItemCollection[index].Controls[0]).Text + "<br />";
      }

Remarks

Use the Count property to determine the number of RepeaterItem objects in the RepeaterItemCollection collection. The Count property is commonly used when iterating through the collection to determine the upper bound of the collection.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also