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

NegativeColorを使用して負数を表示するかどうかを示す値を取得または設定します。
構文
Public Property UseNegativeColor As Boolean
public bool UseNegativeColor {get; set;}

プロパティ値

NegativeColorを使用して負数を表示する場合はtrueForeColorを使用して負数を表示する場合はfalse
既定値はtrueです。
解説
Value プロパティが0未満で、UseNegativeColor プロパティがtrueの場合は、NegativeColor プロパティに従ってテキストの色が決定されます。
使用例
値が負の場合に表示する色を設定した 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.