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

入力候補値を取得または設定します。
構文
Public Shadows Property RecommendedValue As Nullable(Of Date)
public new Nullable<DateTime> RecommendedValue {get; set;}

プロパティ値

エディタの既定値を示す null 許容の System.DateTime 値。
例外
例外解説
System.ArgumentException値が有効ではありません。
解説
RecommendedValue プロパティには、値が完全に入力されていないときにユーザーに提示するヒントを設定します。値の入力中に特定のショートカットキーまたはキーの組み合わせを押すと、入力候補値を取得できます。
使用例
次のサンプルコードは、入力候補値を持つ GcDate コントロールを作成します。また、RecommendedValue プロパティと ShowRecommendedValue プロパティも使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

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

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

GcDate クラス
GcDate メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.