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


スピン動作による値の変化量を取得または設定します。
構文
'Declaration
 
Public Property IncrementValue As TimeSpan
'使用法
 
Dim instance As DateSpin
Dim value As TimeSpan
 
instance.IncrementValue = value
 
value = instance.IncrementValue
public TimeSpan IncrementValue {get; set;}

プロパティ値

増分値を示すSystem.TimeSpan値。
次のサンプルコードは、IncrementValue プロパティを使用します。
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
参照

DateSpin クラス
DateSpin メンバ

 

 


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