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


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