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


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