PowerTools InputMan for Windows Forms 8.0J
BorderStyle プロパティ (GcRichTextBox)
使用例 

コントロールの境界線の種類を取得または設定します。
構文
Public Property BorderStyle As BorderStyle
public BorderStyle BorderStyle {get; set;}

プロパティ値

コントロールの境界線の種類を指定するBorderStyle列挙体。 既定値はFixed3Dです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException プロパティに指定された値が有効な列挙値ではありません。
解説
BorderStyle プロパティを使用すると、既定の3次元コントロールに加えて、境界線のないフラットスタイルのコントロールを作成できます。
使用例
一重線の境界線を設定した GcRichTextBox コントロールを作成するコード例を次に示します。この例では他に BorderStyle と SingleBorderColor プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using System.Drawing;
//  using GrapeCity.Win.Editors;

public void SetBorderStyleSettings()
{
    // Create an instance of a GcRichTextBox control.
    GcRichTextBox gcRichTextBox1 = new GcRichTextBox();
    // Sets the BorderStyle property.
    gcRichTextBox1.BorderStyle = BorderStyle.FixedSingle;
    // Sets the SingleBorderColor property.
    gcRichTextBox1.SingleBorderColor = Color.Blue;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports System.Drawing;
'  Imports GrapeCity.Win.Editors;

Public Sub SetBorderStyleSettings()
    ' Create an instance of a GcRichTextBox control.
    Dim gcRichTextBox1 As New GcRichTextBox()
    ' Sets the BorderStyle property.
    gcRichTextBox1.BorderStyle = BorderStyle.FixedSingle
    ' Sets the SingleBorderColor property.
    gcRichTextBox1.SingleBorderColor = Color.Blue
End Sub
参照

GcRichTextBox クラス
GcRichTextBox メンバ
SingleBorderColor プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.