Compartir vía


RepeaterItemCollection.Count Propiedad

Definición

Obtiene el número de objetos de RepeaterItem la colección.

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

Valor de propiedad

Número de objetos de DataListItem la colección.

Implementaciones

Ejemplos

Para ver este código en el contexto de un ejemplo completo, consulte el tema de la RepeaterItemCollection clase .

      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 />";
      }
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

Comentarios

Utilice la Count propiedad para determinar el número de objetos de RepeaterItem la RepeaterItemCollection colección. La Count propiedad se usa normalmente al recorrer en iteración la colección para determinar el límite superior de la colección.

Se aplica a

Consulte también