PowerTools SPREAD for Windows Forms 8.0J
SpinIntegerIncrement プロパティ (CurrencyCellType)


スピンボタンを使用したときに値を増分する量を設定します (カーソルが整数部分にある場合)。
構文
'Declaration
 
Public Property SpinIntegerIncrement As Single
'使用法
 
Dim instance As CurrencyCellType
Dim value As Single
 
instance.SpinIntegerIncrement = value
 
value = instance.SpinIntegerIncrement
public float SpinIntegerIncrement {get; set;}

プロパティ値

値の増分量を示す数値(単精度浮動小数点数)
解説

この増分量は、カーソルが小数点区切り記号の左側にあり、値が整数に制限されていない場合に適用されます。

次のサンプルコードは、通貨型セルを指定し、スピンボタンプロパティを設定します。
FarPoint.Win.Spread.CellType.CurrencyCellType crcycell = new FarPoint.Win.Spread.CellType.CurrencyCellType();
crcycell.SpinButton = true;
crcycell.SpinDecimalIncrement = 0.5F;
crcycell.SpinIntegerIncrement = 5;
crcycell.SpinWrap = true;
crcycell.MaximumValue = 500;
crcycell.MinimumValue = -100;
fpSpread1.Sheets[0].Cells[6,2].CellType = crcycell;
fpSpread1.Sheets[0].Cells[6,2].Value = 443.3482;
Dim curr As New FarPoint.Win.Spread.CellType.CurrencyCellType()
curr.SpinButton = True
curr.SpinDecimalIncrement = 0.5
curr.SpinIntegerIncrement = 5
curr.SpinWrap = True
curr.MaximumValue = 500
curr.MinimumValue = -100
FpSpread1.ActiveSheet.Cells(0, 0).CellType = curr
FpSpread1.ActiveSheet.Cells(0, 0).Value = 443.3482
参照

CurrencyCellType クラス
CurrencyCellType メンバ

開発者ガイド

スピン ボタンの表示

 

 


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