ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFWordFinder Class / ImGearPDFWordFinder Constructor / ImGearPDFWordFinder Constructor(ImGearPDFDocument,ImGearPDFWordFinderVersion,ImGearPDFContextFlags)
PDF document to find words in.
The version of the word-finding algorithm to use.
Word-finding options that determine the tables filled when using AcquireWordList. Must be an OR of one or more of ImGearPDFContextFlags.




In This Topic
    ImGearPDFWordFinder Constructor(ImGearPDFDocument,ImGearPDFWordFinderVersion,ImGearPDFContextFlags)
    In This Topic
    Initializes a new instance of the ImGearPDFWordFinder class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal document As ImGearPDFDocument, _
       ByVal algorithmVersion As ImGearPDFWordFinderVersion, _
       ByVal options As ImGearPDFContextFlags _
    )
    'Usage
     
    Dim document As ImGearPDFDocument
    Dim algorithmVersion As ImGearPDFWordFinderVersion
    Dim options As ImGearPDFContextFlags
     
    Dim instance As New ImGearPDFWordFinder(document, algorithmVersion, options)

    Parameters

    document
    PDF document to find words in.
    algorithmVersion
    The version of the word-finding algorithm to use.
    options
    Word-finding options that determine the tables filled when using AcquireWordList. Must be an OR of one or more of ImGearPDFContextFlags.

    Return Value

    The new instance of ImGearPDFWordFinder class object.
    Remarks
    Creates a word finder that is used to extract text in the host encoding from a PDF file. The word finder also extracts text from Form XObjects that are executed in the page contents. For information about Form XObjects, see Section 4.9 in the PDF Reference.
    See Also