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




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

    Parameters

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

    Return Value

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