Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / GcNumber Class / Decimal Property


In This Topic
    Decimal Property
    In This Topic
    Gets the decimal part value of the current Value.
    Syntax
    'Declaration
     
    Public ReadOnly Property Decimal As Nullable(Of Decimal)
    'Usage
     
    Dim instance As GcNumber
    Dim value As Nullable(Of Decimal)
     
    value = instance.Decimal
    public Nullable<decimal> Decimal {get;}

    Property Value

    A nullable decimal value indicates the decimal part of the entered number.
    Remarks

    This property allows you to retrieve the decimal portion of the current value at run time. You can also retrieve the integer portion using the Integer property. For example:

    number1.Value = -1234.120
    With the example above, the Decimal returns -0.12 and the Integer property returns -1234.

    number1.Value = 1234
    With the example above, the Decimal returns 0 and the Integer property returns 1234.

    If the underlying value is set to a null reference (Nothing in Visual Basic), this property will return a a null reference (Nothing in Visual Basic).

    See Also