RepeaterItemCollection.Count Property

 

Gets the number of RepeaterItem objects in the collection.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

Public ReadOnly Property Count As Integer

Property Value

Type: System.Int32

The number of DataListItem objects in the collection.

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.

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

Sub Item_Clicked(Sender As [Object], e As EventArgs)
   labelDisplay.Text = "Using item indexer.<br />"
   labelDisplay.Text += "The Items collection contains: <br />"

   ' Display the elements of the RepeaterItemCollection using the indexer.
   Dim myItemCollection As RepeaterItemCollection = myRepeater.Items
   Dim index As Integer
   For index = 0 To myItemCollection.Count - 1
      labelDisplay.Text += CType(myItemCollection(index).Controls(0), DataBoundLiteralControl).Text + "<br />"
   Next index
End Sub 'Item_Clicked

.NET Framework
Available since 1.1
Return to top
Show: