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


In This Topic
    IntegerValue Property (IJobVariable)
    In This Topic
    Gets or sets the Value as an integer.
    Syntax
    'Declaration
     
    
    Property IntegerValue As Nullable(Of Integer)
    Nullable<int> IntegerValue {get; set;}
    property Nullable<int> IntegerValue {
       Nullable<int> get();
       void set (    Nullable<int> value);
    }
    Remarks
    If the value is set using this property, the VariableType is changed to JobVariableType.Integer. This property returns null if the variable has no value, or if the value cannot be converted to an integer.
    See Also