TableLayoutPanelCellBorderStyle Enumeration
Assembly: System.Windows.Forms (in system.windows.forms.dll)
The TableLayoutPanelCellBorderStyle enumeration represents the different border style options for a cell in a TableLayoutPanel. The width of the cell border for each style is determined by the TableLayoutPanel class. The space for the border is taken from the TableLayoutPanel control's DisplayRectangle.
The following example shows how to use the TableLayoutPanelCellBorderStyle enumeration to set the CellBorderStyle for a TableLayoutPanel control. This code example is part of a larger example provided for the TableLayoutPanel control.
Private Sub borderStyleOutsetRadioBtn_CheckedChanged( _ ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles borderStyleOutsetRadioBtn.CheckedChanged Me.TableLayoutPanel1.CellBorderStyle = TableLayoutPanelCellBorderStyle.Outset End Sub Private Sub borderStyleNoneRadioBtn_CheckedChanged( _ ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles borderStyleNoneRadioBtn.CheckedChanged Me.TableLayoutPanel1.CellBorderStyle = TableLayoutPanelCellBorderStyle.None End Sub Private Sub borderStyleInsetRadioBtn_CheckedChanged( _ ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles borderStyleInsetRadioBtn.CheckedChanged Me.TableLayoutPanel1.CellBorderStyle = TableLayoutPanelCellBorderStyle.Inset End Sub
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
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.