GrapeCity SPREAD for Windows Forms 11.0J
SpinOnWheel プロパティ


ユーザーがマウスホイールを使用してスピン操作を実行できるかどうかを示す値を取得または設定します。
構文
'Declaration
 
Public Property SpinOnWheel As Boolean
'使用法
 
Dim instance As Spin
Dim value As Boolean
 
instance.SpinOnWheel = value
 
value = instance.SpinOnWheel
public bool SpinOnWheel {get; set;}

プロパティ値

bool値。ユーザーがマウスホイールを使用してスピン操作を実行できる場合はtrue。それ以外の場合はfalse
次のサンプルコードは、SpinOnWheelプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType ncell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType();
ncell1.Spin.AllowSpin = true;
ncell1.Spin.IncrementValue = 2;
//Put the edit cursor to the left of the digit, then use the mouse wheel
ncell1.Spin.SpinMode = GrapeCity.Win.Spread.InputMan.CellType.NumberSpinMode.Digits;
ncell1.Spin.SpinOnWheel = true;
fpSpread1.Sheets[0].Cells[1, 1].CellType = ncell1;
fpSpread1.ActiveSheet.Cells[1, 1].Value = 12.3189;
Dim ncell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType()
ncell1.Spin.AllowSpin = True
ncell1.Spin.IncrementValue = 2
'Put the edit cursor to the left of the digit, then use the mouse wheel
ncell1.Spin.SpinMode = GrapeCity.Win.Spread.InputMan.CellType.NumberSpinMode.Digits
ncell1.Spin.SpinOnWheel = True
FpSpread1.Sheets(0).Cells(1, 1).CellType = ncell1
FpSpread1.ActiveSheet.Cells(1, 1).Value = 12.3189
参照

Spin クラス
Spin メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.