我有一个表格,我试图从 pdf 文档的上边距缩小大约 20/30 浮点 (f)。我想留出一点空间的原因是因为我的 pdf 文档的边缘有一个矩形边框。
PdfPTable table = new PdfPTable(1);
table.SpacingBefore = 20f;
table.SpacingAfter = 20f;
table.TotalWidth = 700f;
table.LockedWidth = true;
table.SpacingAfter
工作得很好但table.SpacingBefore
不会,我的桌子只是坐在顶部边缘,根本不会空间/填充。