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


In This Topic
    DateValue Property (IJobVariable)
    In This Topic
    Gets or sets the Value as a DateTime containing only a date.
    Syntax
    'Declaration
     
    
    Property DateValue As Nullable(Of Date)
    Nullable<DateTime> DateValue {get; set;}
    property Nullable<DateTime> DateValue {
       Nullable<DateTime> get();
       void set (    Nullable<DateTime> value);
    }
    Remarks
    If the value is set using this property, the VariableType is changed to JobVariableType.Date. 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"
    See Also