MESCIUS SPREAD for ASP.NET 10.0J
NumberFormat プロパティ (CurrencyCellType)

通貨など数値の書式を設定するためのNumberFormatInfoを取得または設定します。
構文
'Declaration
 
Public Overrides Property NumberFormat As NumberFormatInfo
public override NumberFormatInfo NumberFormat {get; set;}

プロパティ値

数値の書式情報を含むNumberFormatInfoオブジェクト
次のサンプル コードは、セル型の書式を設定します。
FarPoint.Web.Spread.GeneralCellType c = new FarPoint.Web.Spread.GeneralCellType(); 
System.Globalization.NumberFormatInfo nfi = new System.Globalization.NumberFormatInfo(); 
nfi.NumberDecimalDigits = 3; 
nfi.NumberDecimalSeparator = ","; 
c.NumberFormat = nfi; 
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = c; 
FpSpread1.ActiveSheetView.Cells[0, 0].Value = 234.56;
Dim c As New FarPoint.Web.Spread.CurrencyCellType
Dim nfi As New System.Globalization.NumberFormatInfo
nfi.NumberDecimalDigits = 3
nfi.NumberDecimalSeparator = ","
c.NumberFormat = nfi
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = c
FpSpread1.ActiveSheetView.Cells(0, 0).Value = 234.56
参照

CurrencyCellType クラス
CurrencyCellType メンバ

 

 


© MESCIUS inc. All rights reserved.