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

入力候補値を取得または設定します。
構文
Public Property RecommendedValue As String
public string RecommendedValue {get; set;}

プロパティ値

入力候補値を示すSystem.String値。
既定値はSystem.String.Emptyです。
例外
例外解説
System.ArgumentExceptionRecommendedValueプロパティに現在のパターンに一致しない無効な値が設定されるときに発生します。
解説
RecommendedValueプロパティには、値が完全に入力されていないときにユーザーに提示するヒントを設定します。値の入力中に特定のショートカットキーまたはキーの組み合わせを押すと、入力候補値を取得できます。
使用例
入力候補値を設定したGcMaskedComboBoxコントロールを作成するコード例を次に示します。この例では他にRecommendedValueShowRecommendedValueプロパティを使用しています。
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub InitalizeRecommendedValue()
    ' Create an instance of a GcMaskedComboBox control.
    Dim gcMaskedComboBox1 As New GcMaskedComboBox()
    ' Set the RecommendedValue property to a string value.
    gcMaskedComboBox1.RecommendedValue = "RecommendedValue"
    ' Allow the RecommendedValue to show in the GcMaskedComboBox control.
    gcMaskedComboBox1.ShowRecommendedValue = True
End Sub
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void InitalizeRecommendedValue()
{
    // Create an instance of a GcMaskedComboBox control.
    GcMaskedComboBox gcMaskedComboBox1 = new GcMaskedComboBox();
    // Set the RecommendedValue property to a string value.
    gcMaskedComboBox1.RecommendedValue = "RecommendedValue";
    // Allow the RecommendedValue to show in the GcMaskedComboBox control.
    gcMaskedComboBox1.ShowRecommendedValue = true;
}
参照

GcMaskedComboBox クラス
GcMaskedComboBox メンバ
ShowRecommendedValue プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.