I need to create a bulleted list that has numbers and letters as follows
1. Blah Blah
2. Blah Blah
a. Blah
b. Blah
Is there some sample code that shows how to do this?
To do this, you can just add a new List element to an IListItem that has already been created
Report r = new Report();IList list = r.AddSection().AddList();IListItem item = list.AddItem();item.AddText().AddContent("Blah");list = item.AddList();list.AddItem().AddText().AddContent("SubBlah");
Perhaps you have more interesting content to add to your list, though [:)]
-Matt
Thank you for this reply.
I should have a chance to try this out soon.