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

コントロールのBorderStyle プロパティが FixedSingleに設定されているときの境界線の色を取得または設定します。
構文
Public Property SingleBorderColor As Color
public Color SingleBorderColor {get; set;}

プロパティ値

コントロールの境界線の色を指定するColor値。 既定値はColor [WindowFrame]です。
解説
このSystem.Drawing.Colorは、BorderStyleがFixedSingleの場合にのみ有効です。
使用例
一重線の境界線を設定した 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 メンバ
BorderStyle プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.