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

最大値を取得または設定します。
構文
'Declaration
 
Public Property MaximumValue As Double
public double MaximumValue {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 メンバ
MinimumValue プロパティ

 

 


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