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

入力候補値の表示あるいは非表示を取得または設定します。
構文
Public Property ShowRecommendedValue As Boolean
public bool ShowRecommendedValue {get; set;}

プロパティ値

説明
True 入力候補値を表示します。
False 入力候補値を表示しません。
既定値はFalseです。
解説
このShowRecommendedValueがtrueの場合、値が完全に入力されていないときにRecommendedValue プロパティの値が表示されます。それ以外の場合、RecommendedValue プロパティの値は表示されません。
使用例
入力候補値を設定した GcDateTime コントロールを作成するコード例を次に示します。この例では他に RecommendedValue と ShowRecommendedValue プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetRecommendedValueSettings()
{
    // Creates an instance of a GcDateTime control.
    GcDateTime GcDateTime1 = new GcDateTime();
    // Sets the RecommendedValue to 2009/08/31.
    GcDateTime1.RecommendedValue = new DateTime(2009, 8, 31);
    // Sets the ShowRecommendedValue to true, the control will display the RecommendedValue if the value is null.
    GcDateTime1.ShowRecommendedValue = true;
    // Clears the value of the GcDateTime to null.
    GcDateTime1.Clear();
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetRecommendedValueSettings()
    ' Creates an instance of a GcDateTime control.
    Dim GcDateTime1 As New GcDateTime()
    ' Sets the RecommendedValue to 2009/08/31.
    GcDateTime1.RecommendedValue = New DateTime(2009, 8, 31)
    ' Sets the ShowRecommendedValue to true, the control will display the RecommendedValue if the value is null.
    GcDateTime1.ShowRecommendedValue = True
    ' Clears the value of the GcDateTime to null.
    GcDateTime1.Clear()
End Sub
参照

GcDateTime クラス
GcDateTime メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.