TableLayoutColumnStyleCollection クラス
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)


TableLayoutColumnStyleCollection クラスは、関連付けられた TableLayoutPanel に含まれる列を表すために使用するすべてのスタイルのコレクションを表します。

TableLayoutColumnStyleCollection の ColumnStyle を設定する方法を次の例に示します。このコード例は TableLayoutPanel コントロールのトピックで取り上げているコード例の一部です。
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
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; } } }

System.Windows.Forms.TableLayoutStyleCollection
System.Windows.Forms.TableLayoutColumnStyleCollection


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


TableLayoutColumnStyleCollection メンバ
System.Windows.Forms 名前空間
TableLayoutPanel
ArrayList
TableLayoutRowStyleCollection
- TableLayoutColumnStyleCollection クラスのページへのリンク