Click here to Skip to main content
15,886,067 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am working on a c# project (.Net 4.0) where we are extracting data from word file using microsoft's interop assembly. I have read bold, italic, underline etc. Now I want to read bullet list from word file. How can I do this using interop?
Posted
Updated 10-Sep-14 0:04am
v3

1 solution

you can get that from the paragraph range itself

C#
Document ODocument = Application.ActiveDocument
Paragraph para= ODocument.Paragraphs[0];
ListFormat  lstFormat =  para.Range.ListFormat;



from lstFormat you can get listString
from range you can get ListStyle

---------------------
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900