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


編集中にスピンボタンを表示するかどうかを表す値を取得または設定します。
構文
'Declaration
 
Public Property SpinButton As Boolean
'使用法
 
Dim instance As CurrencyCellType
Dim value As Boolean
 
instance.SpinButton = value
 
value = instance.SpinButton
public bool SpinButton {get; set;}

プロパティ値

Boolean:スピン ボタンを表示する場合は True、それ以外の場合は False
次のサンプルコードは、通貨型セルを指定し、スピンボタンプロパティを設定します。
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.