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




In This Topic
    ImGearPDFBasDict Constructor
    In This Topic
    Initializes a new instance of the ImGearPDFBasDict 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 ImGearPDFBasDict(document, isIndirect, length)
    public ImGearPDFBasDict( 
       ImGearPDFDocument document,
       bool isIndirect,
       uint length
    )
    public: ImGearPDFBasDict( 
       ImGearPDFDocument* document,
       bool isIndirect,
       uint length
    )
    public:
    ImGearPDFBasDict( 
       ImGearPDFDocument^ document,
       bool isIndirect,
       uint length
    )

    Parameters

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

    Return Value

    The new instance of ImGearPDFBasDict class object.
    Remarks
    Creates a new dictionary object associated with the specified document and with the specified value.
    See Also