ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFWordFinder Class / CreateUnicode Method
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
    CreateUnicode Method
    In This Topic
    Creates a word finder that is used to extract text in the Unicode from a PDF file.
    Syntax
    'Declaration
     
    Public Shared Function CreateUnicode( _
       ByVal document As ImGearPDFDocument, _
       ByVal algorithmVersion As ImGearPDFWordFinderVersion, _
       ByVal options As ImGearPDFContextFlags _
    ) As ImGearPDFWordFinder
    'Usage
     
    Dim document As ImGearPDFDocument
    Dim algorithmVersion As ImGearPDFWordFinderVersion
    Dim options As ImGearPDFContextFlags
    Dim value As ImGearPDFWordFinder
     
    value = ImGearPDFWordFinder.CreateUnicode(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.
    See Also