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

In This Topic
    BooleanValue Property (JobVariable)
    In This Topic
    Gets or sets the value as a boolean value.
    Syntax
    'Declaration
     
    
    Public Property BooleanValue As Nullable(Of Boolean)
    public Nullable<bool> BooleanValue {get; set;}
    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