Hi ,
After opening the word document through the following code we can get the Text content of Word Document.
IDispatch* pDispRange = oDocument.GetContent();
Range objRange(pDispRange);
AfxMessageBox(objRange.Get
Text());
How to get the entire word document content ( text, images and tables) in Byte Array.
Start Free Trial