Spread Windows Forms 10.0 Product Documentation
FractionDenominatorPrecision Property
Example 


Gets or sets the precision when values are displayed as fractions.
Syntax
'Declaration
 
Public Overridable Property FractionDenominatorPrecision As FractionDenominatorPrecision
'Usage
 
Dim instance As NumberCellType
Dim value As FractionDenominatorPrecision
 
instance.FractionDenominatorPrecision = value
 
value = instance.FractionDenominatorPrecision
public virtual FractionDenominatorPrecision FractionDenominatorPrecision {get; set;}

Property Value

FractionDenominatorPrecision setting that determines the precision for fractions
Example
This example displays the value in the cell as a fraction.
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
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

NumberCellType Class
NumberCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.