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


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