Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.CellType Namespace / CurrencyCellType Class / DecimalPlaces Property
Example


In This Topic
    DecimalPlaces Property (CurrencyCellType)
    In This Topic
    Gets or sets the number of decimal places.
    Syntax
    'Declaration
     
    Public Property DecimalPlaces As Integer
    'Usage
     
    Dim instance As CurrencyCellType
    Dim value As Integer
     
    instance.DecimalPlaces = value
     
    value = instance.DecimalPlaces
    public int DecimalPlaces {get; set;}

    Property Value

    Integer number of decimal places to display
    Remarks

    The maximum number is 16.

    Example
    This example specifies a currency cell and sets the formatting using the various properties.
    FarPoint.Win.Spread.CellType.CurrencyCellType currcell = new FarPoint.Win.Spread.CellType.CurrencyCellType();
    currcell.CurrencySymbol = "CN$";
    currcell.DecimalPlaces = 4;
    currcell.DecimalSeparator = "#";
    currcell.FixedPoint = true;
    currcell.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.Yes;
    currcell.MaximumValue = 999999999999;
    currcell.MinimumValue = 1;
    currcell.NegativeFormat = FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SignSymbolSpaceBefore;
    currcell.NegativeRed = true;
    currcell.PositiveFormat = FarPoint.Win.Spread.CellType.CurrencyPositiveFormat.CurrencySymbolBefore;
    currcell.Separator = ",";
    currcell.ShowCurrencySymbol = true;
    currcell.ShowSeparator = true;
    fpSpread1.Sheets[0].Cells[5,2].CellType = currcell;
    fpSpread1.Sheets[0].Cells[5,2].Value = 321.98;
    Dim currcell As New FarPoint.Win.Spread.CellType.CurrencyCellType()
    currcell.CurrencySymbol = "CN$"
    currcell.DecimalPlaces = 4
    currcell.DecimalSeparator = "#"
    currcell.FixedPoint = True
    currcell.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.Yes
    currcell.MaximumValue = 999999999999
    currcell.MinimumValue = 1
    currcell.NegativeFormat = FarPoint.Win.Spread.CellType.CurrencyNegativeFormat.SignSymbolSpaceBefore
    currcell.NegativeRed = true
    currcell.PositiveFormat = FarPoint.Win.Spread.CellType.CurrencyPositiveFormat.CurrencySymbolBefore
    currcell.Separator = ","
    currcell.ShowCurrencySymbol = True
    currcell.ShowSeparator = True
    fpSpread1.Sheets(0).Cells(5, 2).CellType = currcell
    fpSpread1.Sheets(0).Cells(5, 2).Value = 443.3482
    See Also