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

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

プロパティ値

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

public void SetRecommendedValueSettings()
{
    // Creates an instance of a GcTime control.
    GcTime gcTime1 = new GcTime();
    // Sets the RecommendedValue to 12:00:00.
    gcTime1.RecommendedValue = new TimeSpan(12, 0, 0);
    // Sets the ShowRecommendedValue to true, the control will display the RecommendedValue if the value is null.
    gcTime1.ShowRecommendedValue = true;
    // Clears the value of the GcTime to null.
    gcTime1.Clear();
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetRecommendedValueSettings()
    ' Creates an instance of a GcTime control.
    Dim gcTime1 As New GcTime()
    ' Sets the RecommendedValue to 12:00:00.
    gcTime1.RecommendedValue = New TimeSpan(12, 0, 0)
    ' Sets the ShowRecommendedValue to true, the control will display the RecommendedValue if the value is null.
    gcTime1.ShowRecommendedValue = True
    ' Clears the value of the GcTime to null.
    gcTime]1.Clear()
End Sub
参照

GcTime クラス
GcTime メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.