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

派生クラスでオーバーライドされると、コントロールのBorderStyle プロパティが FixedSingleに設定されているときの境界線の色を取得または設定します。
構文
Public MustOverride Property SingleBorderColor As Color
public abstract Color SingleBorderColor {get; set;}

プロパティ値

コントロールの境界線の色を指定するColor値。 既定値はColor [WindowFrame]です。
解説
このSystem.Drawing.Colorは、BorderStyleがFixedSingleの場合にのみ有効です。
使用例
一重線の境界線を設定した GcMask コントロールを作成するコード例を次に示します。この例では他に 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 GcMask control.
    GcMask gcMask1 = new GcMask();
    // Sets the BorderStyle property.
    gcMask1.BorderStyle = BorderStyle.FixedSingle;
    // Sets the SingleBorderColor property.
    gcMask1.SingleBorderColor = Color.Red;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports System.Drawing;
'  Imports GrapeCity.Win.Editors;

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

EditBase クラス
EditBase メンバ
BorderStyle プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.