In my application I am using this code for select first word from selected text in MS Word:
Globals.ThisAddIn.Application.Selection.Words[1].Select();
But how I find index of this word in Words collection of all words in document??
This code shows, how to find first word from collection of all words from document.
ActiveDocument.Words[1].Select;