PowerTools SPREAD for ASP.NET 8.0J
Minimum プロパティ (NumericUpDownCellType)

数値スピン型セルの最小値を取得または設定します。
構文
'Declaration
 
Public Property Minimum As Double
public double Minimum {get; set;}

プロパティ値

最小値を表す倍精度浮動小数点数
次のサンプルコードは、数値の制限を設定します。
FarPoint.Web.Spread.Extender.NumericUpDownCellType n = new FarPoint.Web.Spread.Extender.NumericUpDownCellType();
n.Maximum = 1000;
n.Minimum = 10;
n.Step = 5;
n.Width = 130;
n.ShowEditor = true;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = n;
Dim n As New FarPoint.Web.Spread.Extender.NumericUpDownCellType
n.Maximum = 1000
n.Minimum = 10
n.Step = 5
n.Width = 130
n.ShowEditor = True
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = n
参照

NumericUpDownCellType クラス
NumericUpDownCellType メンバ

 

 


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