| Nicomsoft OCR: Developer's Guide |
| C++: | int Blk_SetWordText(HBLK BlkObj, int LineIndex, int WordIndex, UNICODECHAR* TextStr) |
| C#: | int Blk_SetWordText(int BlkObj, int LineIndex, int WordIndex, string TextStr) |
| Visual Basic: | Function Blk_SetWordText(ByVal BlkObj As Integer, ByVal LineIndex As Integer, ByVal WordIndex As Integer, ByVal TextStr As String) As Integer |
| Java: | int Blk_SetWordText(HBLK BlkObj, int LineIndex, int WordIndex, String TextStr) |
| Delphi: | function Blk_SetWordText(BlkObj:HBLK; LineIndex:integer; WordIndex:integer; TextStr:PWCHAR):integer |
| BlkObj [IN] – the Block object. You can also specify the Image object if you want to work with the global list of text lines for the entire image. | |
| LineIndex [IN] – the index of the text line to retrieve; 0 – the first line. | |
| WordIndex [IN] – the index of the word in the specified text line to retrieve; 0 – the first word. | |
| TextStr [IN] – the buffer that contains a Unicode, null-terminated string with the new word text. |