Hi William,
Thank you for contacting Syncfusion support.
We have analyzed your requirement “Truncate the text ending with (…) in table”. But we do not have support for this truncation of text with expand using PdfStringFormat. However, if the text will be larger than the row height, we can able to set the row height in PdfGrid. Please refer the below code snippet for more details,
|
//Create a new PdfGrid
PdfGrid pdfGrid = new PdfGrid();
//Add rows
PdfGridRow pdfGridRow = pdfGrid.Rows.Add();
pdfGridRow.Height = 100;
|
Please try the above solution in your end and let us know if you have any concerns on this.
Regards,
Sowmiya Loganathan