SPREAD for WPF 3.0J - GcSpreadGrid
AllowSpin プロパティ (FieldsEditorBaseCellType)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > FieldsEditorBaseCellType クラス : AllowSpin プロパティ
スピン動作が有効かどうかを示す値を取得または設定します。
シンタックス
'宣言
 
Public Property AllowSpin As Boolean
public bool AllowSpin {get; set;}

プロパティ値

System.Boolean 値。スピン動作を実行できる場合は true。それ以外の場合は false
使用例
次のサンプルは NumberCellType を作成します。スピンボタンを使用して値を変更します。
public void CreateNumberCell3()
{
NumberCellType numberCellType1 = new NumberCellType();
numberCellType1.MaxValue = 100;
numberCellType1.MinValue = 0;
numberCellType1.AllowSpin = true;
numberCellType1.SpinAllowWrap = true;
numberCellType1.SpinIncrement = 10;
this._gcSpreadGrid1[0, 0].CellType = numberCellType1;
}
Public Sub CreateNumberCell3()
Dim numberCellType1 As New NumberCellType()
numberCellType1.MaxValue = 100
numberCellType1.MinValue = 0
numberCellType1.AllowSpin = True
numberCellType1.SpinAllowWrap = True
numberCellType1.SpinIncrement = 10
Me._gcSpreadGrid1(0, 0).CellType = numberCellType1
End Sub
参照

FieldsEditorBaseCellType クラス
FieldsEditorBaseCellType メンバ