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

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

プロパティ値

Boolean:固定小数点表示を設定してプレースホルダの0を表示する場合はTrue、それ以外の場合はFalse
次のサンプルコードは、通貨型セルを作成し、固定小数点表示を設定します。
FarPoint.Web.Spread.CurrencyCellType curc = new FarPoint.Web.Spread.CurrencyCellType();
curc.FixedPoint = true;
FpSpread1.Sheets[0].Cells[0, 0].CellType = curc;
Dim curc As New FarPoint.Web.Spread.CurrencyCellType
curc.FixedPoint = True
FpSpread1.Sheets(0).Cells(0, 0).CellType = curc
参照

CurrencyCellType クラス
CurrencyCellType メンバ

 

 


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