TextBoxBase.BorderStyle プロパティ

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

Public Property BorderStyle As BorderStyle
[C#]
public BorderStyle BorderStyle {get; set;}
[C++]
public: __property BorderStyle get_BorderStyle();public: __property void set_BorderStyle(BorderStyle);
[JScript]
public function get BorderStyle() : BorderStyle;public function set BorderStyle(BorderStyle);

プロパティ値

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

例外

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

解説

BorderStyle プロパティを使用すると、既定の 3D コントロールだけでなく、境界線のないコントロールやフラットなスタイルのコントロールを作成できます。

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

使用例

[Visual Basic, C#, C++] 派生クラス TextBox を使用して、20 ポイントの Arial のテキストを適切に表示する、一重線の境界線が付いたテキスト ボックスを作成する例を次に示します。この例では、 PreferredHeight プロパティを使用して、フォントと BorderStyle がコントロールに割り当てられた後のコントロールの適切な高さが判断されます。

 
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


[C#] 
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;
 }


[C++] 
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 System::Drawing::Font (S"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;
 }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

TextBoxBase クラス | TextBoxBase メンバ | System.Windows.Forms 名前空間