In my app I use PdfGrid's to show text in a pdf file. In the cells I also must add long text which has to be aligned vertical at the top like:
var pdfGridParagraph3 = new Syncfusion.Pdf.Grid.PdfGrid();
pdfGridParagraph3.Columns.Add(1);
pdfGridParagraph3.Columns[0].Width = 200;
var pdfGridRowParagraph3Details1 = pdfGridParagraph3.Rows.Add();
pdfGridRowParagraph3Details1.Cells[0].Value = "This is a test. This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.This is a test.";
PdfStringFormat format = new PdfStringFormat();
format.LineAlignment = PdfVerticalAlignment.Top;
pdfGridRowParagraph3Details1.Cells[0].StringFormat = format; //NOT WORKING
Unfortunetly the long text is aligned in the middle of the row in stead off at the top of the row.
Do you have a solution?