How do I create a Bulleted List where the items in the list are some combination of bold, italic or underline?
Also, what if I just want to apply B, I, or U formatting to a particular WORD in the list item, instead of the entire line?
Thank you,
Tom
Tom,
Use the AddRichContent off of an IText element, such as:
IList list = section.AddList();IListItem item = list.AddItem();item.AddText().AddRichContent("<b>Bold</b> <i>Italic</i> <u>Underline</u>");
-Matt
Perfect!
That was just what I needed to know!