ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDEPlace Class / ImGearPDEPlace Constructor
The tag name for the place. It must not contain any white space characters (for example, spaces or tabs).
A Marked Content dictionary associated with the place. It cannot be null.
If true, it emits the place's dictionary into the content stream inline. If false, then the dictionary is emitted outside of the content stream and referenced by name.




In This Topic
    ImGearPDEPlace Constructor
    In This Topic
    Initializes a new instance of the ImGearPDEPlace class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal tag As ImGearPDFAtom, _
       ByVal dictionary As ImGearPDFBasObj, _
       ByVal isInline As Boolean _
    )
    'Usage
     
    Dim tag As ImGearPDFAtom
    Dim dictionary As ImGearPDFBasObj
    Dim isInline As Boolean
     
    Dim instance As New ImGearPDEPlace(tag, dictionary, isInline)
    public ImGearPDEPlace( 
       ImGearPDFAtom tag,
       ImGearPDFBasObj dictionary,
       bool isInline
    )
    public: ImGearPDEPlace( 
       ImGearPDFAtom* tag,
       ImGearPDFBasObj* dictionary,
       bool isInline
    )
    public:
    ImGearPDEPlace( 
       ImGearPDFAtom^ tag,
       ImGearPDFBasObj^ dictionary,
       bool isInline
    )

    Parameters

    tag
    The tag name for the place. It must not contain any white space characters (for example, spaces or tabs).
    dictionary
    A Marked Content dictionary associated with the place. It cannot be null.
    isInline
    If true, it emits the place's dictionary into the content stream inline. If false, then the dictionary is emitted outside of the content stream and referenced by name.

    Return Value

    The new instance of ImGearPDEPlace class object.
    See Also