adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / JobVariableHelper Class / GetTimeValue Method

In This Topic
    GetTimeValue Method
    In This Topic
    Gets or sets the value as a DateTime value that stores only the time.
    Syntax
    'Declaration
     
    
    Public Shared Function GetTimeValue( _
       ByVal variable As IJobVariable _
    ) As Nullable(Of Date)
    public static Nullable<DateTime> GetTimeValue( 
       IJobVariable variable
    )

    Parameters

    variable
    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