GrapeCity SPREAD for Windows Forms 11.0J
FractionDenominatorPrecision プロパティ


値が分数として表示される場合の精度を取得または設定します。
構文
'Declaration
 
Public Overridable Property FractionDenominatorPrecision As FractionDenominatorPrecision
'使用法
 
Dim instance As NumberCellType
Dim value As FractionDenominatorPrecision
 
instance.FractionDenominatorPrecision = value
 
value = instance.FractionDenominatorPrecision
public virtual FractionDenominatorPrecision FractionDenominatorPrecision {get; set;}

プロパティ値

分数の精度を決定するFractionDenominatorPrecision設定
次のサンプルコードは、セルの値を分数で表示します。
FarPoint.Win.Spread.CellType.NumberCellType n = new FarPoint.Win.Spread.CellType.NumberCellType(); 
n.FractionMode = true; 
n.FractionConvertWholeNumbers = true; 
n.DecimalPlaces = 2; 
n.FractionDenominatorDigits = 2; 
n.FractionCustomFormat = "# ??/??"; 
n.FractionDenominatorPrecision = FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Hundredths; 
fpSpread1.ActiveSheet.Cells[0, 0].CellType = n; 
fpSpread1.ActiveSheet.Cells[0, 0].Value = 5.005;
Dim n As New FarPoint.Win.Spread.CellType.NumberCellType
n.FractionMode = True
n.FractionConvertWholeNumbers = True
n.DecimalPlaces = 2
n.FractionDenominatorDigits = 2
n.FractionCustomFormat = "# ??/??"
n.FractionDenominatorPrecision = FarPoint.Win.Spread.CellType.FractionDenominatorPrecision.Hundredths
FpSpread1.ActiveSheet.Cells(0, 0).CellType = n
FpSpread1.ActiveSheet.Cells(0, 0).Value = 5
参照

NumberCellType クラス
NumberCellType メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.