Is there a way to read MS Office document word by word in C#.
I could read the whole stoyr like
doc.ActiveWindow.Selection.WholeStory();
doc.ActiveWindow.Selection.Copy();
IDataObject data = Clipboard.GetDataObject();
However then can we use any method using data object to read the ms word documents word by word?