gpt4 book ai didi

c# - iTextsharp) 边距宽度

转载 作者:可可西里 更新时间:2023-11-01 07:53:39 25 4
gpt4 key购买 nike

看起来我不能将左边距设置为小于 42pt 宽度。我将它设置为 0f,但它总是以 42pt 结尾。如果我将边距设置为大于 0 的任何数字,它只会将其添加到 42pt 的初始边距。我正在设置文档对象的边距:

iTextSharp.text.Rectangle docRect = new iTextSharp.text.Rectangle(pageWidth, pageHeight);
DC = new Document(docRect);
DC.SetMargins(0f, 0f, 0f, 0f);

页面宽度和高度为 6x9 英寸。

最后我说:

42pt 边距|CONTENT CONTENT

如果有任何帮助,我将不胜感激。谢谢。

最佳答案

我正在使用 PdfPTable,问题是默认的 PdfPTable 水平对齐方式是 CENTER。一旦我将 alignmentof table 设置为 left 问题就消失了。

PdfPTable bTable = new PdfPTable(2);
bTable.HorizontalAlignment = Element.ALIGN_LEFT;

谢谢,韦利亚

关于c# - iTextsharp) 边距宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1958951/

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