MESCIUS SPREAD for Windows Forms 15.0J
SpinOnKeys プロパティ
使用例 

ユーザーがキーを使用してスピン操作を実行できるかどうかを示す値を取得または設定します。
構文
'宣言
 
Public Property SpinOnKeys As Boolean
public bool SpinOnKeys {get; set;}

プロパティ値

bool値。ユーザーがキーを使用してスピン操作を実行できる場合はtrue。それ以外の場合はfalse
使用例
次のサンプルコードは、SpinOnKeysプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType ncell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType();
ncell1.Spin.AllowSpin = true;
ncell1.Spin.IncrementValue = 2;
ncell1.Spin.SpinMode = GrapeCity.Win.Spread.InputMan.CellType.NumberSpinMode.Value;
//Use up or down arrow keys to change the value
ncell1.Spin.SpinOnKeys = true;
fpSpread1.Sheets[0].Cells[1, 1].CellType = ncell1;
fpSpread1.ActiveSheet.Cells[1, 1].Value = 12.3189;
Dim ncell1 = New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType()
ncell1.Spin.AllowSpin = True
ncell1.Spin.IncrementValue = 2
ncell1.Spin.SpinMode = GrapeCity.Win.Spread.InputMan.CellType.NumberSpinMode.Value
'Use up or down arrow keys to change the value
ncell1.Spin.SpinOnKeys = True
fpSpread1.Sheets(0).Cells(1, 1).CellType = ncell1
fpSpread1.ActiveSheet.Cells(1, 1).Value = 12.3189
参照

Spin クラス
Spin メンバ

 

 


© MESCIUS inc. All rights reserved.