Problem in applying bullets to document builder

Hi,
I have a word document which has a header and a table. I want to apply bullets to items which are present in the table. I am using MoveToCell method of DocumentBuilder object and i am using paragraph format class to aaply bullets through documentbuilder object. What i found is that bullets are applied to items present in header as well. I just want to apply bullets to items present in the table. Please help me in this issue.
Thanx in advance.

Hi
Thanks for your request. Try to use the following code.

Document doc = new Document(@"143_92478_paragkale\in.doc");
Table table = doc.Sections[0].HeadersFooters[HeaderFooterType.HeaderPrimary].Tables[0];
foreach (Paragraph par in table.Rows[0].Cells[0].Paragraphs)
{
    par.ListFormat.ApplyBulletDefault();
}
doc.Save(@"143_92478_paragkale\out.doc");

Also see the attachment.
I hope that it will help you.