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

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

プロパティ値

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

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

Public Sub InitalizeRecommendedValue()
    ' Create an instance of a GcTextBox control.
    Dim gcTextBox1 As New GcTextBox()

    ' Set the RecommendedValue property to a string value.
    gcTextBox1.RecommendedValue = "RecommendedValue"
    ' Allow the RecommendedValue to show in the GcTextBox control.
    gcTextBox1.ShowRecommendedValue = True
End Sub
参照

GcTextBox クラス
GcTextBox メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.