PowerTools SPREAD for Windows Forms 10.0J
AllowSpin プロパティ


スピン動作を許可するか、しないかを取得または設定します。
構文
'Declaration
 
Public Property AllowSpin As Boolean
'使用法
 
Dim instance As Spin
Dim value As Boolean
 
instance.AllowSpin = value
 
value = instance.AllowSpin
public bool AllowSpin {get; set;}

プロパティ値

bool値。スピン動作を実行できる場合はtrue。それ以外の場合はfalse
次のサンプルコードは、AllowSpin プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType datecell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
datecell.Spin.AllowSpin = true;
datecell.Spin.IncrementValue = new TimeSpan(2);
fpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;
Dim datecell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
datecell.Spin.AllowSpin = True
datecell.Spin.IncrementValue = New TimeSpan(2)
FpSpread1.Sheets(0).Cells(0, 0).CellType = datecell
参照

Spin クラス
Spin メンバ

 

 


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