ColumnStyle Class
Represents the look and feel of a column in a table layout.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The ColumnStyle class represents the user interface (UI) characteristics of column in a TableLayoutPanel. The styles for all the columns in such a table are collected in the TableLayoutPanel.ColumnStyles property.
This simple class offers the Width and SizeType properties for a column.
The following code example demonstrates how to extract a ColumnStyle from a TableLayoutColumnStyleCollection.
This code example is part of a larger example provided for the TableLayoutPanel class.
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
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.