RepeaterItemCollection.Count Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает количество объектов RepeaterItem в коллекции.
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
Значение свойства
Количество объектов DataListItem в коллекции.
Реализации
Примеры
Чтобы увидеть этот код в контексте полного примера, см. раздел класса RepeaterItemCollection .
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
Комментарии
Используйте свойство , Count чтобы определить количество RepeaterItem объектов в RepeaterItemCollection коллекции. Свойство Count обычно используется при переборе коллекции для определения верхней границы коллекции.