Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
575
Bulleted List - bold, italic, underline?
posted

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

Parents
  • 37774
    Verified Answer
    posted

     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 

Reply Children
No Data