ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFWordFinder Class / GetWord Method
Word-finding options. Must be an OR of one or more of ImGearPDFContextFlags.
The index of the word to obtain. The first word on a page has an index of zero. Words are counted in PDF order.




In This Topic
    GetWord Method
    In This Topic
    Gets the word in the word list obtained using AcquireWordList.
    Syntax
    'Declaration
     
    Public Function GetWord( _
       ByVal options As ImGearPDFContextFlags, _
       ByVal index As Integer _
    ) As ImGearPDFWord
    'Usage
     
    Dim instance As ImGearPDFWordFinder
    Dim options As ImGearPDFContextFlags
    Dim index As Integer
    Dim value As ImGearPDFWord
     
    value = instance.GetWord(options, index)
    public ImGearPDFWord GetWord( 
       ImGearPDFContextFlags options,
       int index
    )
    public: ImGearPDFWord* GetWord( 
       ImGearPDFContextFlags options,
       int index
    ) 
    public:
    ImGearPDFWord^ GetWord( 
       ImGearPDFContextFlags options,
       int index
    ) 

    Parameters

    options
    Word-finding options. Must be an OR of one or more of ImGearPDFContextFlags.
    index
    The index of the word to obtain. The first word on a page has an index of zero. Words are counted in PDF order.

    Return Value

    ImGearPDFWord class object.
    See Also