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

入力候補値を表示するかどうかを示す値を取得または設定します。
構文
'宣言
 
Public Property ShowOutput As Boolean
public bool ShowOutput {get; set;}

プロパティ値

出力領域を表示するかどうかを示すbool値。
解説
このプロパティは、出力領域を表示するかどうかを決定します。値がfalseの場合、出力はGcNumberコントロールのEditBoxに表示されます。
使用例
次のサンプルコードは、ShowOutputプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType ncell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType(); 
ncell1.DropDownCalculator.ShowOutput = true;
ncell1.DropDownCalculator.OutputHeight = 25;
fpSpread1.ActiveSheet.Cells[1, 1].CellType = ncell1;
fpSpread1.ActiveSheet.Cells[1, 1].Value = 12.31;
Dim ncell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType()
ncell1.DropDownCalculator.ShowOutput = True
ncell1.DropDownCalculator.OutputHeight = 25
fpSpread1.ActiveSheet.Cells(1, 1).CellType = ncell1
fpSpread1.ActiveSheet.Cells(1, 1).Value = 12.31
参照

DropDownCalculatorInfo クラス
DropDownCalculatorInfo メンバ

 

 


© MESCIUS inc. All rights reserved.