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

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

プロパティ値

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

public void InitalizeRecommendedValue()
{
    // Create an instance of a GcMask control.
    GcMask gcMask1 = new GcMask();
    // Set the RecommendedValue property to a string value.
    gcMask1.RecommendedValue = "RecommendedValue";
    // Allow the RecommendedValue to show in the GcMask control.
    gcMask1.ShowRecommendedValue = true;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub InitalizeRecommendedValue()
    ' Create an instance of a GcMask control.
    Dim gcMask1 As New GcMask()
    ' Set the RecommendedValue property to a string value.
    gcMask1.RecommendedValue = "RecommendedValue"
    ' Allow the RecommendedValue to show in the GcMask control.
    gcMask1.ShowRecommendedValue = True
End Sub
参照

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

 

 


© 2004-2015 GrapeCity inc. All rights reserved.