RepeaterItemCollection.Count Proprietà

Definizione

Ottiene il numero di oggetti RepeaterItem contenuti nell'insieme.

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

Valore della proprietà

Numero di oggetti DataListItem nella raccolta.

Implementazioni

Esempio

Per visualizzare questo codice nel contesto di un esempio completo, vedere l'argomento relativo alla RepeaterItemCollection classe.

      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

Commenti

Utilizzare la Count proprietà per determinare il numero di RepeaterItem oggetti nell'insieme RepeaterItemCollection . La Count proprietà viene comunemente utilizzata durante l'iterazione dell'insieme per determinare il limite superiore dell'insieme.

Si applica a

Vedi anche