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 void borderStyleOutsetRadioBtn_CheckedChanged( System.Object sender, System.EventArgs e) { this.TableLayoutPanel1.CellBorderStyle = TableLayoutPanelCellBorderStyle.Outset; } private void borderStyleNoneRadioBtn_CheckedChanged( System.Object sender, System.EventArgs e) { this.TableLayoutPanel1.CellBorderStyle = TableLayoutPanelCellBorderStyle.None; } private void borderStyleInsetRadioBtn_CheckedChanged( System.Object sender, System.EventArgs e) { this.TableLayoutPanel1.CellBorderStyle = TableLayoutPanelCellBorderStyle.Inset; }
Windows 98, Windows Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.