Skip to main content
All docs
V25.1
  • XlValueObject.IsNumeric Property

    Gets whether the current object contains a number.

    Namespace: DevExpress.Export.Xl

    Assembly: DevExpress.Printing.v25.1.Core.dll

    NuGet Package: DevExpress.Printing.Core

    Declaration

    public bool IsNumeric { get; }

    Property Value

    Type Description
    Boolean

    true, if the current value is of the numeric type; otherwise, false

    Remarks

    Use the NumericValue property to get the number stored by the XlValueObject object.

    Note

    Note that a date and time value is stored in the XlValueObject object as a serial number and displayed in a cell according to the applied date and time format. Therefore, if a date and time value is assigned to the XlValueObject object, the IsNumeric property returns true. The NumericValue property returns a number contained in a cell, and the XlValueObject.DateTimeValue property returns the DateTime object, which specifies the date and time value represented by that number.

    See Also