Count プロパティ (Collection オブジェクト)

更新 : 2007 年 11 月

コレクション内の要素数を含む整数 (Integer) を返します。読み取り専用です。

Public ReadOnly Property Count() As Integer

解説

Count プロパティを使用すると、Collection オブジェクトの要素の数を調べることができます。

使用例

Count プロパティを使って、変数 birthdays の Collection オブジェクト (Visual Basic) に含まれる要素の数を表示する例を次に示します。

Dim birthdays As New Collection()
birthdays.Add(New DateTime(2001, 1, 12), "Bill")
birthdays.Add(New DateTime(2001, 1, 13), "Joe")
birthdays.Add(New DateTime(2001, 1, 14), "Mike")
birthdays.Add(New DateTime(2001, 1, 15), "Pete")


...


MsgBox("Number of birthdays in collection: " & CStr(birthdays.Count))

Collection オブジェクトでは、要素のインデックス値が 1 から始まるため、インデックスは 1 ~ Count プロパティの値の範囲をとります。

必要条件

名前空間 : Microsoft.VisualBasic

クラス : Collection

アセンブリ : Visual Basic ランタイム ライブラリ (Microsoft.VisualBasic.dll)

参照

参照

Collection オブジェクト (Visual Basic)

Add メソッド (Collection オブジェクト)

Item プロパティ (Collection オブジェクト)

Remove メソッド (Collection オブジェクト)