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


In This Topic
    DateTimeValue Property (JobVariable)
    In This Topic
    Syntax
    'Declaration
     
    
    Public Property DateTimeValue As Nullable(Of Date)
    public Nullable<DateTime> DateTimeValue {get; set;}
    public:
    property Nullable<DateTime> DateTimeValue {
       Nullable<DateTime> get();
       void set (    Nullable<DateTime> value);
    }
    Remarks
    If the value is set using this property, the VariableType is changed to JobVariableType.DateTime. This property returns null if the variable has no value, or if the value cannot be converted to a DateTime. adTempus stores DateTime values in the format "yyyy-MM-dd HH:mm:ss.fff"
    See Also