MESCIUS SPREAD for Windows Forms 15.0J
RecommendedValue プロパティ (GcTextBoxCellType)
使用例 

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

プロパティ値

テキストの回転を示す文字列値。
デフォルト値はSystem.String.Emptyです。
解説
RecommendedValueプロパティはユーザーへのヒントを提供するもので、値が完全に入力されていないときに表示されます。値の入力中に特定のショートカットキーまたはキーの組み合わせを押すと、入力候補値を取得できます。
使用例
次のサンプルコードは、RecommendedValue プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType datecell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
datecell.RecommendedValue = System.DateTime.Now;
datecell.ShowRecommendedValue = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;

GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType textcell = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
textcell.RecommendedValue = "Test";
textcell.ShowRecommendedValue = true;
fpSpread1.Sheets[0].Cells[1, 1].CellType = textcell;
Dim datecell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
datecell.RecommendedValue = System.DateTime.Now
datecell.ShowRecommendedValue = True
fpSpread1.Sheets(0).Cells(0, 0).CellType = datecell

Dim textcell As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
textcell.RecommendedValue = "Test"
textcell.ShowRecommendedValue = True
fpSpread1.Sheets(0).Cells(1, 1).CellType = textcell
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.