How to Report different bullets

Hi
I want to report different bullets from the word document
In the first table bullets contains A but in the second table it contains 1
I want to report numbering format bullets
Could you please provide me code for that?
Here is the sample document.please go through it
Code.zip (15.6 KB)

@Syedfahad You can use code like the following:

Document doc = new Document(@"C:\Temp\in.docx");
NodeCollection paragraphs = doc.GetChildNodes(NodeType.Paragraph, true);
foreach (Paragraph p in paragraphs)
{
    if (p.IsListItem)
        Console.WriteLine(p.ListFormat.ListLevel.NumberStyle);
}

the output of this code is:

LowercaseLetter
Arabic