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

固定小数点で数値を表示するために数値の小数部分に桁数を表すゼロを表示するかどうかを取得または設定します。
構文
'Declaration
 
Public Property FixedPoint As Boolean
public bool FixedPoint {get; set;}

プロパティ値

Boolean:固定小数点表示を設定してプレースホルダの0を表示する場合はTrue、それ以外の場合はFalse
次のサンプルコードは、倍精度数値型セルの表示を設定します。
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.