gpt4 book ai didi

c# - 如何在 itextsharp 中给表格留下边距

转载 作者:太空狗 更新时间:2023-10-29 20:13:04 26 4
gpt4 key购买 nike

我正在使用这些代码......我的表格被粘在文档的左侧,因为我没有在文档中提供任何填充......

Document document = new Document(PageSize.A4, 0, 0, 0, 0);

但现在我想给我的表格留出边距和右边距......我用过

outerTable.SpacingBefore = 20f;

没用然后我尝试将填充留给我的单元格,但它也不起作用..

outerCell.PaddingLeft = 20f;

现在我的 table 粘在左边了..我该如何移动它们?如果您已经尝试在 itextsharp 中移动表格,请提供帮助...

请查看附件屏幕以供引用

enter image description here

最佳答案

获得带有“左边距”的表格的最简单方法可能是将表格包裹在一个段落中并在该段落上设置左缩进

Paragraph p = new Paragraph();
p.IndentationLeft = 100;
outerTable.HorizontalAlignment = Element.ALIGN_LEFT;
p.Add(outerTable);
document.Add(p);

关于c# - 如何在 itextsharp 中给表格留下边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33132220/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com