Posted on: 12/19/2013 10:31:12 AM | Views : 1288

Hello,
I have a pdf that gets created and populated with a PDFPTable.
In one of the cells I need a (non-editable) check box - ASCII code - ☐ OR ☑
I tried
Dim chkCell As PdfPCell = New PdfPCell(New Phrase("☐")) But that just ouptuts the String ☐ which makes sense.
I tried escaping the string with "\" But that just outputs the string \☐

Does anyone know what I have to do to get the check box to appear?

Go to the complete details ...