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

通貨の最小値(10進数)
通貨の最大値(10進数)
入力値が有効でない場合に表示するメッセージ(文字列)
最小値、最大値、およびエラー メッセージを指定して、新しい通貨型セルを作成します。
構文
'Declaration
 
Public Function New( _
   ByVal min As Decimal, _
   ByVal max As Decimal, _
   ByVal errorMessage As String _
)
public CurrencyCellType( 
   decimal min,
   decimal max,
   string errorMessage
)

パラメータ

min
通貨の最小値(10進数)
max
通貨の最大値(10進数)
errorMessage
入力値が有効でない場合に表示するメッセージ(文字列)
この例では、最小値と最大値を指定して通貨型セルを作成します。
FarPoint.Web.Spread.CurrencyCellType c = new FarPoint.Web.Spread.CurrencyCellType(0.05, 300.5, "Must Use Decimals"); 
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = c;
Dim c As New FarPoint.Web.Spread.CurrencyCellType(0.05, 300.5, "Must Use Decimals")
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = c
参照

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

 

 


© MESCIUS inc. All rights reserved.