ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFBasInt Class / ImGearPDFBasInt Constructor
The document in which the integer is used.
If True, creates the integer as an indirect object. If False, creates the integer as a direct object.
The value the new integer will have.




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

    Parameters

    document
    The document in which the integer is used.
    isIndirect
    If True, creates the integer as an indirect object. If False, creates the integer as a direct object.
    value
    The value the new integer will have.

    Return Value

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