0

I am building a pdf. I would like to have some text and next to the text a check mark. Does anyone have an idea as to how to do this?

Thanks

Tony Borf
  • 4,579
  • 8
  • 43
  • 51

2 Answers2

1

Use this for checkmarks as bullets :

List myList = new ZapfDingbatsList(52);

ZapfDingbatsList(52) - checkmark in bold.
ZapfDingbatsList(51) - checkmark in normal.

Hans Olsson
  • 54,199
  • 15
  • 94
  • 116
0

One way is to create a PNG of a check mark, load the image and draw it next to your text. I've done something similar many times but not specifically with iTextSharp. Here is an iText example to get you started though.

John Lemberger
  • 2,689
  • 26
  • 25