Control.ControlCollection.Count プロパティ
コレクション内の Control オブジェクトの合計数を取得します。
Public Overridable ReadOnly Property Count As Integer Implements _ ICollection.Count
[C#]
public virtual int Count {get;}
[C++]
public: __property virtual int get_Count();
[JScript]
public function get Count() : int;
プロパティ値
コレクション内の Control オブジェクトの合計数。
実装
解説
Count プロパティは、コレクションに割り当てられている Control オブジェクトの数を保持します。コレクションを反復処理するときに、ループの上限として Count プロパティ値を使用できます。
コレクションのインデックス値は 0 から始まるため、この数値から 1 を引いた数値をループの上限として使用する必要があります。この点を考慮しないと、コレクションの上限を超えて処理することになり、 IndexOutOfRangeException 例外がスローされます。
使用例
[Visual Basic, C#, C++] コレクションの数が 0 より大きい場合に、派生クラス Panel の Control.ControlCollection 内の最初の Control を削除する例を次に示します。この例は、 Form 上に Panel 、 Button 、およびその他のコントロールが少なくとも 1 つ作成されていることを前提にしています。その他のコントロールは Panel コントロールに追加され、 Panel コントロールは Form に追加されます。ボタンがクリックされると、パネルに含まれている最初のコントロールが Control.ControlCollection から削除されます。
' Remove the first control in the collection.
Private Sub RemoveAtButton_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles RemoveAtButton.Click
If (Panel1.Controls.Count > 0) Then
Panel1.Controls.RemoveAt(0)
End If
End Sub
[C#]
// Remove the first control in the collection.
private void removeAtButton_Click(object sender, System.EventArgs e)
{
if (panel1.Controls.Count > 0)
{
panel1.Controls.RemoveAt(0);
}
}
[C++]
// Remove the first control in the collection.
private:
void removeAtButton_Click(Object* /*sender*/, System::EventArgs* /*e*/) {
if (panel1->Controls->Count > 0) {
panel1->Controls->RemoveAt(0);
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
Control.ControlCollection クラス | Control.ControlCollection メンバ | System.Windows.Forms 名前空間