InkAnalyzer with wordsets
hintNode.Factoid = "WORDLIST";
hintNode.Location.MakeInfinite();
hintNode.Name = "Word List";
hintNode.WordMode = false;
hintNode.SetWordlist(wordset);
hintNode.CoerceToFactoid = true;
When I go to recognize the ink the words it predicts or recommends as alternates are no where close to what I am looking for.
For instance, if I were to write: "ABC", using the wordset = { "ABC shop", "ABC theatre", "ABC Hotel", ...} without the hintNode, it would give me ABC back correctly.
Once I apply the hintNode, ideally it would give me the 3 items in the wordset that contain ABC as alternates, and ideally picking one of them as the recognized string. However, it returns items from the word set that have nothing to do with what I am looking for.
Am I trying to use the Ink analyzer in a manner it wasn't intended? Or is there somewhere that explains how the InkAnalyzer/Recognizers actually match words?
I am trying to do this in C# on a Windows XP Tablet 2005 as opposed to vista.
Any help would be appreciated.

