TableLayoutPanel.ColumnStyles プロパティ

定義

TableLayoutPanel の列スタイルのコレクションを取得します。

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

プロパティ値

TableLayoutColumnStyleCollection コントロール内の各列の ColumnStyle を格納している TableLayoutPanel

属性

次のコード例では、 が ColumnStyle クリックされたときに各列のプロパティを Button 設定します。

private void toggleColumnStylesBtn_Click(
    System.Object sender, 
    System.EventArgs e)
{
    TableLayoutColumnStyleCollection styles = 
        this.TableLayoutPanel1.ColumnStyles;

    foreach( ColumnStyle style in styles )
    {
        if( style.SizeType == SizeType.Absolute )
        {
            style.SizeType = SizeType.AutoSize;
        }
        else if( style.SizeType == SizeType.AutoSize )
        {
            style.SizeType = SizeType.Percent;

            // Set the column width to be a percentage
            // of the TableLayoutPanel control's width.
            style.Width = 33;
        }
        else
        {
            // Set the column width to 50 pixels.
            style.SizeType = SizeType.Absolute;
            style.Width = 50;
        }
    }
}
Private Sub toggleColumnStylesBtn_Click( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles toggleColumnStylesBtn.Click

    Dim styles As TableLayoutColumnStyleCollection = _
    Me.TableLayoutPanel1.ColumnStyles

    For Each style As ColumnStyle In styles

        If style.SizeType = SizeType.Absolute Then

            style.SizeType = SizeType.AutoSize

        ElseIf style.SizeType = SizeType.AutoSize Then

            style.SizeType = SizeType.Percent

            ' Set the column width to be a percentage
            ' of the TableLayoutPanel control's width.
            style.Width = 33

        Else

            ' Set the column width to 50 pixels.
            style.SizeType = SizeType.Absolute
            style.Width = 50

        End If

    Next

End Sub

注釈

プロパティを ColumnStyles 使用して、特定の列のスタイル プロパティにアクセスします。 クラスのメンバーを ColumnStyle 使用して、テーブル内の個々の列の特性を設定できます。

コントロールは列を TableLayoutPanel 配置するときに、優先順位を次の順序でそれぞれに ColumnStyle 割り当てます。

  1. ColumnStyleが にAbsolute設定されている列は最初に考慮され、固定幅が割り当てられます。

  2. ColumnStyleが にAutoSize設定されている列は、その内容に合わせてサイズ変更されます。

  3. 残りの領域は、 が にPercent設定された列にColumnStyle分割されます。

適用対象

こちらもご覧ください