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




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

    Parameters

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

    Return Value

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