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


In This Topic
    IntegerValue Property (JobVariable)
    In This Topic
    Syntax
    'Declaration
     
    
    Public Property IntegerValue As Nullable(Of Integer)
    public Nullable<int> IntegerValue {get; set;}
    public:
    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