SPREAD for WPF 3.0J - GcSpreadGrid
RecommendedValue プロパティ (TextCellType)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > TextCellType クラス : RecommendedValue プロパティ
入力候補値を取得または設定します。
シンタックス
'宣言
 
Public Property RecommendedValue As String
public string RecommendedValue {get; set;}

プロパティ値

エディタの既定値を示す System.String 値。
解説
入力候補値は、入力候補となる内容をユーザーにヒントとして提示するために使用されます。これは TextCellType セルがアクティブなときにのみ表示されます。
使用例
次のサンプルはTextCellTypeを作成し入力候補値を設定します。
public void SetTextCell4()
{
TextCellType textCellType1 = new TextCellType();
textCellType1.TextTrimming = System.Windows.TextTrimming.CharacterEllipsis;
textCellType1.ShowRecommendedValue = true;
textCellType1.RecommendedValue = "http://www.grapecity.com";

this._gcSpreadGrid1[0, 0].CellType = textCellType1;
}
Public Sub SetTextCell4()
Dim textCellType1 As New TextCellType()
textCellType1.TextTrimming = System.Windows.TextTrimming.CharacterEllipsis
textCellType1.ShowRecommendedValue = True
textCellType1.RecommendedValue = "http://www.grapecity.com"

Me._gcSpreadGrid1(0, 0).CellType = textCellType1
End Sub
参照

TextCellType クラス
TextCellType メンバ