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

In This Topic
    GetBooleanValue Method
    In This Topic
    Gets or sets the value as a boolean value.
    Syntax
    'Declaration
     
    
    Public Shared Function GetBooleanValue( _
       ByVal variable As IJobVariable _
    ) As Nullable(Of Boolean)
    public static Nullable<bool> GetBooleanValue( 
       IJobVariable variable
    )

    Parameters

    variable
    Remarks
    If the value is set using this property, the VariableType is changed to JobVariableType.Boolean. This property returns null if the variable has no value, or if the value cannot be converted to a boolean. adTempus stores boolean values as "1" (true) or "0" (false).
    See Also