ToolStripStatusLabel.BorderSides 속성

정의

ToolStripStatusLabel에 테두리를 표시할 방향을 나타내는 값을 가져오거나 설정합니다.

public:
 property System::Windows::Forms::ToolStripStatusLabelBorderSides BorderSides { System::Windows::Forms::ToolStripStatusLabelBorderSides get(); void set(System::Windows::Forms::ToolStripStatusLabelBorderSides value); };
public System.Windows.Forms.ToolStripStatusLabelBorderSides BorderSides { get; set; }
member this.BorderSides : System.Windows.Forms.ToolStripStatusLabelBorderSides with get, set
Public Property BorderSides As ToolStripStatusLabelBorderSides

속성 값

ToolStripStatusLabelBorderSides 값 중 하나입니다. 기본값은 None입니다.

예제

다음 코드 예제에서는 속성을 포함 하 여 BorderSides 다양 ToolStripStatusLabel 한 공통 속성에 대 한 구문을 보여 줍니다.

// 
toolStripStatusLabel1.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
            | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
            | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
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;
' 
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

적용 대상