adTempus API
ArcanaDevelopment.adTempus.Client Namespace / JobVariable Class / DecimalValue Property


In This Topic
    DecimalValue Property (JobVariable)
    In This Topic
    Syntax
    'Declaration
     
    
    Public Property DecimalValue As Nullable(Of Decimal)
    public Nullable<decimal> DecimalValue {get; set;}
    public:
    property Nullable<decimal> DecimalValue {
       Nullable<decimal> get();
       void set (    Nullable<decimal> value);
    }
    Remarks
    If the value is set using this property, the VariableType is changed to JobVariableType.Decimal. This property returns null if the variable has no value, or if the value cannot be converted to a decimal.
    See Also