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

値が負のときの文字色を取得または設定します。
構文
Public Property NegativeColor As Color
public Color NegativeColor {get; set;}

プロパティ値

文字色を表すColor値。 既定値はColor [Red]です。
解説
Value プロパティが0未満で、UseNegativeColor プロパティがtrueの場合は、このプロパティに従ってテキストの色が決定されます。
使用例
値が負の場合に表示する色を設定した GcNumber コントロールを作成するコード例を次に示します。この例では他に NegativeColor と UseNegativeColor プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetNegativeColorSettings()
{
    // Creates an instance of a GcNumber control.
    GcNumber gcNumber1 = new GcNumber();
    // Sets the NegativeColor for displaying the text when the value is negative.
    gcNumber1.NegativeColor = Color.Red;
    // Sets the UseNegativeColor for applying the NegativeColor settings.
    gcNumber1.UseNegativeColor = true;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetNegativeColorSettings()
    ' Creates an instance of a GcNumber control.
    Dim gcNumber1 As New GcNumber()
    ' Sets the NegativeColor for displaying the text when the value is negative.
    gcNumber1.NegativeColor = Color.Red
    ' Sets the UseNegativeColor for applying the NegativeColor settings.
    gcNumber1.UseNegativeColor = True
End Sub
参照

GcNumber クラス
GcNumber メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.