TableLayoutPanel.Controls プロパティ

定義

TableLayoutPanel 内に格納されているコントロールのコレクションを取得します。

public:
 property System::Windows::Forms::TableLayoutControlCollection ^ Controls { System::Windows::Forms::TableLayoutControlCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.TableLayoutControlCollection Controls { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Controls : System.Windows.Forms.TableLayoutControlCollection
Public ReadOnly Property Controls As TableLayoutControlCollection

プロパティ値

現在の TableLayoutControlCollection に関連付けられているコントロールを格納している TableLayoutPanel

属性

次のコード例では、 内 TableLayoutPanelのすべての子コントロールを列挙します。

private void enumerateChildrenBtn_Click(
    System.Object sender, 
    System.EventArgs e)
{
    foreach ( Control c in this.TableLayoutPanel1.Controls )
    {
        Trace.WriteLine(c.ToString());
    }
}
Private Sub enumerateChildrenBtn_Click( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles enumerateChildrenBtn.Click

    Dim c As Control
    For Each c In Me.TableLayoutPanel1.Controls

        Trace.WriteLine(c.ToString())

    Next

End Sub

注釈

プロパティにはControls、、、または RowCount の制限によりGrowStyleColumnCount現在表示されない可能性があるコントロールを含め、テーブルに関連付けられているすべてのコントロールが含まれます。

適用対象

こちらもご覧ください