getWordCharBox2

Get the bounding box of a character in a word.
getWordCharBox2([in] LONG wordHandle, [in] int charIdx, [out] double *xMin, [out] double *yMin, [out] double *xMax, [out] double *yMax)
This function returns the bounding box of the charIdxth character in a word (whose handle was obtained with getWord).

The xMin, yMin, xMax, and yMax coordinates are in PDF coordinate space.

This function works on Unicode characters (used internally in XpdfText). The getWordLength function returns the number of Unicode characters.

This function is identical to getWordCharBox except that it returns points in PDF coordinate space.

VB:
For i = 0 To pdf.getWordLength(word) - 1 pdf.getWordCharBox2(word, i, xMin, yMin, xMax, yMax) ... Next i
getWordCharBox
buildWordList
getNumWords
getWord
getWordText
getWordLength
getWordFontName
getWordColor
getWordBox
getWordBox2
getWordCharBox
getWordSpaceAfter
getWordFontSize
getWordFontIsFixedWidth
getWordFontIsSerif
getWordFontIsSymbolic
getWordFontIsItalic
getWordFontIsBold
getWordRotation
getWordCharPos
getWordCharLen