ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFBasDict Class / PutInt Method
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.
If true, creates the key value as an indirect object. If false, creates the key value as a direct object.
The integer value to set.




In This Topic
    PutInt Method (ImGearPDFBasDict)
    In This Topic
    Sets the integer value of a dictionary key, adding the key to the dictionary if it is not already present.
    Syntax
    'Declaration
     
    Public Sub PutInt( _
       ByVal key As ImGearPDFAtom, _
       ByVal isIndirect As Boolean, _
       ByVal value As Integer _
    ) 
    'Usage
     
    Dim instance As ImGearPDFBasDict
    Dim key As ImGearPDFAtom
    Dim isIndirect As Boolean
    Dim value As Integer
     
    instance.PutInt(key, isIndirect, value)
    public void PutInt( 
       ImGearPDFAtom key,
       bool isIndirect,
       int value
    )
    public: void PutInt( 
       ImGearPDFAtom* key,
       bool isIndirect,
       int value
    ) 
    public:
    void PutInt( 
       ImGearPDFAtom^ key,
       bool isIndirect,
       int value
    ) 

    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 integer value to set.
    See Also