TextBoxBase.BorderStyle プロパティ

定義

テキスト ボックス コントロールの境界線の種類を取得または設定します。

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

プロパティ値

テキスト コントロールの境界線の種類を表す BorderStyle。 既定値は、Fixed3D です。

例外

列挙体の有効値の範囲内にない値が、プロパティに代入されました。

次のコード例では、 派生クラスを使用 TextBoxして、20 ポイントの Arial と 1 つの罫線を使用してテキストを適切に表示できるテキスト ボックスを作成します。 この例では、 プロパティを PreferredHeight 使用して、フォントの後にコントロールの適切な高さを決定し、 BorderStyle コントロールに割り当てます。

public:
   void CreateTextBox()
   {
      // Create an instance of the TextBox control.
      TextBox^ textBox1 = gcnew TextBox;
      
      // Set the TextBox Font property to Arial 20.
      textBox1->Font = gcnew System::Drawing::Font( "Arial", 20 );
      // Set the BorderStyle property to FixedSingle.
      textBox1->BorderStyle = System::Windows::Forms::BorderStyle::FixedSingle;
      // Make the height of the control equal to the preferred height.
      textBox1->Height = textBox1->PreferredHeight;
   }
public void CreateTextBox()
 {
    // Create an instance of the TextBox control.
    TextBox textBox1 = new TextBox();
 
    // Set the TextBox Font property to Arial 20.
    textBox1.Font = new Font ("Arial" , 20);
    // Set the BorderStyle property to FixedSingle.
    textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
    // Make the height of the control equal to the preferred height.
    textBox1.Height = textBox1.PreferredHeight;
 }
Public Sub CreateTextBox()
    ' Create an instance of the TextBox control.
    Dim textBox1 As New TextBox()
    
    ' Set the TextBox Font property to Arial 20.
    textBox1.Font = New Font("Arial", 20)
    ' Set the BorderStyle property to FixedSingle.
    textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
    ' Make the height of the control equal to the preferred height.
    textBox1.Height = textBox1.PreferredHeight
End Sub

注釈

プロパティを使用すると、既定の BorderStyle 3 次元コントロールに加えて、罫線のないフラット スタイル コントロールを作成できます。

注意

派生クラス である は、 RichTextBoxスタイルを BorderStyle.FixedSingle サポートしていません。 このスタイルにより、 は BorderStyle 代わりに スタイルを BorderStyle.Fixed3D 使用します。

適用対象