Hi,
I am trying to access numbering in a word document and so far I have been unable to access them. I want to change the Font of every numbering in a document.
I have tried something like:
for (i = 0; i < doc.Lists.Count; i++)
{
MessageBox.Show(doc.Lists[i].Style.Font.Name);
}
but this gives null exception. A sample document is attached for which I would like to change the font of the numbered list.