ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFBasArray Class / ImGearPDFBasArray Constructor
The document in which the array is used.
If True, creates the array as an indirect object. If False, creates the array as a direct object.
Number of entries in the array. This value is only a hint - the arrays grow dynamically as needed.




In This Topic
    ImGearPDFBasArray Constructor
    In This Topic
    Initializes a new instance of the ImGearPDFBasArray class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal document As ImGearPDFDocument, _
       ByVal isIndirect As Boolean, _
       ByVal length As UInteger _
    )
    'Usage
     
    Dim document As ImGearPDFDocument
    Dim isIndirect As Boolean
    Dim length As UInteger
     
    Dim instance As New ImGearPDFBasArray(document, isIndirect, length)
    public ImGearPDFBasArray( 
       ImGearPDFDocument document,
       bool isIndirect,
       uint length
    )
    public: ImGearPDFBasArray( 
       ImGearPDFDocument* document,
       bool isIndirect,
       uint length
    )
    public:
    ImGearPDFBasArray( 
       ImGearPDFDocument^ document,
       bool isIndirect,
       uint length
    )

    Parameters

    document
    The document in which the array is used.
    isIndirect
    If True, creates the array as an indirect object. If False, creates the array as a direct object.
    length
    Number of entries in the array. This value is only a hint - the arrays grow dynamically as needed.

    Return Value

    The new instance of ImGearPDFBasArray class object.
    Remarks
    This constructor creates a new array object associated with the specified document and with the specified value.
    See Also