Puts the specified integer value into the specified location in an array.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Sub PutInt( _
   ByVal  As Integer, _
   ByVal  As Boolean, _
   ByVal  As Integer _
) 
             
        
            
            'Usage
 
Dim instance As ImGearPDFBasArray
Dim index As Integer
Dim isIndirect As Boolean
Dim value As Integer
 
instance.PutInt(index, isIndirect, value)
             
        
            
            public void PutInt( 
   int ,
   bool ,
   int 
)
             
        
            
            public: void PutInt( 
   int ,
   bool ,
   int 
) 
             
        
            
            public:
void PutInt( 
   int ,
   bool ,
   int 
) 
             
        
             
        
            Parameters
- index
 
- The location in array to store a value. The first element of an array has an index of zero.
 - isIndirect
 
- If true, creates the key value as an isIndirect object. If false, creates the
            key value as a direct object.
 - value
 
- Integer value to put in the array.
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            See Also