PowerTools SPREAD for ASP.NET 8.0J
MinimumValue プロパティ (DoubleCellType)

最小値を取得または設定します。
構文
'Declaration
 
Public Property MinimumValue As Double
public double MinimumValue {get; set;}

プロパティ値

最小値の倍精度浮動小数点数
次のサンプルコードは、倍精度数値型セルの最小値と最大値を設定します。
FarPoint.Web.Spread.DoubleCellType d = new FarPoint.Web.Spread.DoubleCellType("The values must be doubles!!");
d.CssClass = "CssStyle1";
d.MaximumValue = 1000.0;
d.MinimumValue = 0.25;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = d;
FpSpread1.ActiveSheetView.Cells[0, 0].Value = 223.45;
Dim d As New FarPoint.Web.Spread.DoubleCellType("The values must be doubles!!")
d.CssClass = "CssStyle1"
d.MaximumValue = 1000.0
d.MinimumValue = 0.25
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = d
FpSpread1.ActiveSheetView.Cells(0, 0).Value = 223.45
参照

DoubleCellType クラス
DoubleCellType メンバ
MaximumValue プロパティ

 

 


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