Sets the fixed value of a dictionary key, adding the key to the dictionary if it is not already present.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Sub PutFixed( _
   ByVal  As ImGearPDFAtom, _
   ByVal  As Boolean, _
   ByVal  As Integer _
) 
             
        
            
            'Usage
 
Dim instance As ImGearPDFBasDict
Dim key As ImGearPDFAtom
Dim isIndirect As Boolean
Dim value As Integer
 
instance.PutFixed(key, isIndirect, value)
             
        
            
            public void PutFixed( 
   ImGearPDFAtom ,
   bool ,
   int 
)
             
        
            
            public: void PutFixed( 
   ImGearPDFAtom* ,
   bool ,
   int 
) 
             
        
            
            public:
void PutFixed( 
   ImGearPDFAtom^ ,
   bool ,
   int 
) 
             
        
             
        
            Parameters
- key
 
- The key whose value is set. See the PDF Reference to obtain the names of keys in
            dictionary objects that are part of standard PDF, such as annotations or page objects.
 - isIndirect
 
- If true, creates the key value as an indirect object. If false, creates the
            key value as a direct object.
 - value
 
- The fixed value to set.
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            See Also