ToolStripStatusLabel.BorderSides Property
.NET Framework 2.0
Note: This property is new in the .NET Framework version 2.0.
Gets or sets a value that indicates which sides of the ToolStripStatusLabel show borders.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Assembly: System.Windows.Forms (in system.windows.forms.dll)
'Declaration Public Property BorderSides As ToolStripStatusLabelBorderSides 'Usage Dim instance As ToolStripStatusLabel Dim value As ToolStripStatusLabelBorderSides value = instance.BorderSides instance.BorderSides = value
/** @property */ public ToolStripStatusLabelBorderSides get_BorderSides () /** @property */ public void set_BorderSides (ToolStripStatusLabelBorderSides value)
public function get BorderSides () : ToolStripStatusLabelBorderSides public function set BorderSides (value : ToolStripStatusLabelBorderSides)
Property Value
One of the ToolStripStatusLabelBorderSides values. The default is None.The following code example demonstrates the syntax for various ToolStripStatusLabel common properties, including the BorderSides property.
' toolStripStatusLabel1.BorderSides = CType(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left Or System.Windows.Forms.ToolStripStatusLabelBorderSides.Top Or System.Windows.Forms.ToolStripStatusLabelBorderSides.Right Or System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom, System.Windows.Forms.ToolStripStatusLabelBorderSides) toolStripStatusLabel1.BorderStyle = System.Windows.Forms.Border3DStyle.Raised toolStripStatusLabel1.IsLink = True toolStripStatusLabel1.Name = "toolStripStatusLabel1" toolStripStatusLabel1.Size = New System.Drawing.Size(246, 20) toolStripStatusLabel1.Spring = True toolStripStatusLabel1.Text = "toolStripStatusLabel1" toolStripStatusLabel1.Alignment = ToolStripItemAlignment.Left
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.
Community Additions
ADD
Show: