adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / IJobVariable Interface / DecimalValue Property


In This Topic
    DecimalValue Property (IJobVariable)
    In This Topic
    Gets or sets the Value as a decimal.
    Syntax
    'Declaration
     
    
    Property DecimalValue As Nullable(Of Decimal)
    Nullable<decimal> DecimalValue {get; set;}
    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