ToolStripStatusLabel.BorderSides Property
.NET Framework 3.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)
Not applicable.
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 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.Community Additions
ADD
Show: