Could someone point me in the right direction, or show me how to find paragraphs by their style name using word interop in c#.net.
Try loop like this:
using WN = Microsoft.Office.Interop.Word; //... WN::Application WordApp; WordApp = new WN.Application(); //... WN.Document WordDoc = WordApp.Documents.Open(Filename); //open document List SelectedParagraphs = new List(); for(int i=1;i