Hi,
Thank you for using syncfusion products,
Please use the PdfTrueTypeFont with Unicode enabled to
preserve the Unicode characters.
Please find the code snippet.
Syncfusion.Pdf.Tables.PdfLightTable pdfLineItemsTable = new Syncfusion.Pdf.Tables.PdfLightTable();
//Set font
PdfFont font = new PdfTrueTypeFont(new Font("Arial", 12), true);
//Setting the
border to transparent pen
PdfPen borderPen = new PdfPen(PdfBrushes.Transparent, 10);
PdfCellStyle cellStyle = new PdfCellStyle(font,
PdfBrushes.Black, borderPen);
cellStyle.BorderPen =
borderPen;
pdfLineItemsTable.Style.DefaultStyle
= cellStyle;
Please try this and let
us know your result.
With Regards,
Praveen