PowerTools SPREAD for Windows Forms 8.0J
ShowRecommendedValue プロパティ (GcNumberCellType)


入力候補値を表示するかどうかを示す値を取得または設定します。
構文
'Declaration
 
Public Property ShowRecommendedValue As Boolean
'使用法
 
Dim instance As GcNumberCellType
Dim value As Boolean
 
instance.ShowRecommendedValue = value
 
value = instance.ShowRecommendedValue
public bool ShowRecommendedValue {get; set;}

プロパティ値

入力候補値を表示する場合は true。それ以外の場合は false
既定値は false です。
解説
ShowRecommendedValuetrueの場合、値が完全に入力されていないときにGcNumber.RecommendedValueプロパティの値が表示されます。それ以外の場合、RecommendedValueプロパティの値は表示されません。
次のサンプルコードは、ShowRecommendedValueプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType ncell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType();
//Press enter or double-click on the cell to see the recommended value
ncell1.RecommendedValue = 5;
ncell1.ShowRecommendedValue = true;
fpSpread1.Sheets[0].Cells[1, 1].CellType = ncell1;
Dim ncell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType()
'Press enter or double-click on the cell to see the recommended value
ncell1.RecommendedValue = 5
ncell1.ShowRecommendedValue = True
FpSpread1.Sheets(0).Cells(1, 1).CellType = ncell1
参照

GcNumberCellType クラス
GcNumberCellType メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.