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 、コレクションを反復処理してコレクションの上限を決定するときによく使用されます。

適用対象

こちらもご覧ください