I need to find out all the paragraphs in a word document.
Word Document gives Paragraphs using struct Paragraphs * Paragraphs;
The Paragraphs gives First and Last Paragraph
struct Paragraph * First;
struct Paragraph * Last;
Now I do not know how to iterate all the paragraphs.
Need Help.
Probably has got to do something with __declspec(property(get=Get_NewEnum))
Additional info: