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


In This Topic
    TimeValue Property (JobVariable)
    In This Topic
    Gets or sets the ArcanaDevelopment.adTempus.Shared.IJobVariable.Value as a DateTime value that stores only the time.
    Syntax
    'Declaration
     
    
    Public Property TimeValue As Nullable(Of Date)
    public Nullable<DateTime> TimeValue {get; set;}
    public:
    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