ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFBasArray Class / PutBool Method
The location in array to store a value. The first element of an array has an index of zero.
If true, creates the key value as an indirect object. If false, creates the key value as a direct object.
The integer value to insert into array.




In This Topic
    PutBool Method (ImGearPDFBasArray)
    In This Topic
    Puts the specified boolean value into the specified location in an array.
    Syntax
    'Declaration
     
    Public Sub PutBool( _
       ByVal index As Integer, _
       ByVal isIndirect As Boolean, _
       ByVal value As Boolean _
    ) 
    'Usage
     
    Dim instance As ImGearPDFBasArray
    Dim index As Integer
    Dim isIndirect As Boolean
    Dim value As Boolean
     
    instance.PutBool(index, isIndirect, value)
    public void PutBool( 
       int index,
       bool isIndirect,
       bool value
    )
    public: void PutBool( 
       int index,
       bool isIndirect,
       bool value
    ) 
    public:
    void PutBool( 
       int index,
       bool isIndirect,
       bool value
    ) 

    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 indirect object. If false, creates the key value as a direct object.
    value
    The integer value to insert into array.
    Remarks
    The array is extended as much as necessary.
    See Also