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

表示する小数点以下の桁数を取得または設定します。
構文
'Declaration
 
Public Property DecimalDigits As Integer
public int DecimalDigits {get; set;}

プロパティ値

小数点以下の桁数を表すInteger
次のサンプルコードは、倍精度数値型セルの小数点以下の桁数を3桁に設定します。
FarPoint.Web.Spread.DoubleCellType dblc = new FarPoint.Web.Spread.DoubleCellType();
dblc.DecimalDigits = 3;
dblc.FixedPoint = True;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = dblc;
FpSpread1.ActiveSheetView.Cells[0, 0].Value = 435.98745;
Dim dblc As New FarPoint.Web.Spread.DoubleCellType
dblc.DecimalDigits = 3
dblc.FixedPoint = true
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = dblc
FpSpread1.ActiveSheetView.Cells(0, 0).Value = 435.98745
参照

DoubleCellType クラス
DoubleCellType メンバ

 

 


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