以下應根據文檔工作,但它不適合我。我錯過了什麼嗎?垂直對齊不能在複合模式下工作
PdfPTable rs1 = new PdfPTable(1);
PdfPCell c = new PdfPCell();
Paragraph p = new Paragraph("some text to align");
c.AddElement(p);
c.VerticalAlignment = Element.ALIGN_MIDDLE;
rs1.AddCell(c);
rs1.AddCell("more text");
return rs1;
我沒有設置垂直 – Rod 2010-12-15 13:37:09