MESCIUS SPREAD for ASP.NET 10.0J
DoubleCellType コンストラクタ(Double,Double,String)

入力可能最小値
入力可能最大値
入力値が範囲内にない場合に表示するメッセージ
最小値、最大値、およびエラーメッセージを指定して、新しい倍精度浮動小数点データ型セルを作成します。
構文
'Declaration
 
Public Function New( _
   ByVal min As Double, _
   ByVal max As Double, _
   ByVal errorMessage As String _
)
public DoubleCellType( 
   double min,
   double max,
   string errorMessage
)

パラメータ

min
入力可能最小値
max
入力可能最大値
errorMessage
入力値が範囲内にない場合に表示するメッセージ
FarPoint.Web.Spread.DoubleCellType d = new FarPoint.Web.Spread.DoubleCellType(0.05, 1000.50, "The values must be doubles!!");
d.CssClass = "CssStyle1";
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = d;
FpSpread1.ActiveSheetView.Cells[0, 0].Value = 223.45;
Dim d As New FarPoint.Web.Spread.DoubleCellType(0.05, 1000.50, "The values must be doubles!!")
d.CssClass = "CssStyle1"
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = d
FpSpread1.ActiveSheetView.Cells(0, 0).Value = 223.45
参照

DoubleCellType クラス
DoubleCellType メンバ
オーバーロード一覧
ErrorMessage プロパティ

 

 


© MESCIUS inc. All rights reserved.