gpt4 book ai didi

c# - 在 iTextSharp 中操作行和单元格的宽度和高度

转载 作者:太空宇宙 更新时间:2023-11-03 20:02:19 24 4
gpt4 key购买 nike

我使用以下代码来填充我的 PdfPTable:

  public PdfPTable GetTable(List<hsp_Narudzbe_IzdavanjeFakture4_Result> proizvodi)
{
PdfPTable table = new PdfPTable(5);
table.WidthPercentage = 100F;
table.DefaultCell.UseAscender = true;
table.DefaultCell.UseDescender = true;
Font f = new Font(Font.FontFamily.HELVETICA, 13);
f.Color = BaseColor.WHITE;
PdfPCell cell = new PdfPCell(new Phrase("Stavke narudžbe: ", f));
cell.BackgroundColor = BaseColor.BLACK;
cell.HorizontalAlignment = Element.ALIGN_CENTER;
cell.Colspan = 5;
table.AddCell(cell);
for (int i = 0; i < 2; i++)
{
table.AddCell("Redni broj");
table.AddCell("Proizvod");
table.AddCell("Cijena");
table.AddCell("Šifra proizvoda");
table.AddCell("Kolicina");
}
table.DefaultCell.BackgroundColor = BaseColor.LIGHT_GRAY;
table.HeaderRows = 3;
table.FooterRows = 1;
int broj = 0;
table.DeleteLastRow();


foreach (hsp_Narudzbe_IzdavanjeFakture4_Result p in proizvodi)
{
broj++;
table.AddCell(broj.ToString());
table.AddCell(p.Naziv);
table.AddCell(p.Cijena);
table.AddCell(p.Sifra);
table.AddCell(p.Kolicina.ToString());
}
float[] widths = { 15.00F, 15.00F,15.00F,15.00F};
table.GetRow(1).SetWidths(widths);


return table;
}

代码小解释:

broj++;表示每次添加新行时递增的行号。这样我就得到了每一行的编号。

现在我的问题是:如何操作第一列的宽度(代表行号)。我尝试了以下代码:

float[] widths = { 15.00F, 15.00F,15.00F,15.00F};
table.GetRow(1).SetWidths(widths);

有人可以帮我解决这个问题吗?

最佳答案

结合您的原始帖子和您的评论,我看到两个问题:

  1. 您想创建一个表格,其中第一列不如其他列宽。
  2. 您希望这些列中的内容居中对齐。

我写了一个名为 ColumnWidthExample 的小样本应该会产生这样的 PDF:

enter image description here

这是生成此 PDF 的 Java 代码:

public void createPdf(String dest) throws IOException, DocumentException {
Document document = new Document(PageSize.A4.rotate());
PdfWriter.getInstance(document, new FileOutputStream(dest));
document.open();
float[] columnWidths = {1, 5, 5};
PdfPTable table = new PdfPTable(columnWidths);
table.setWidthPercentage(100);
table.getDefaultCell().setUseAscender(true);
table.getDefaultCell().setUseDescender(true);
Font f = new Font(FontFamily.HELVETICA, 13, Font.NORMAL, GrayColor.GRAYWHITE);
PdfPCell cell = new PdfPCell(new Phrase("This is a header", f));
cell.setBackgroundColor(GrayColor.GRAYBLACK);
cell.setHorizontalAlignment(Element.ALIGN_CENTER);
cell.setColspan(3);
table.addCell(cell);
table.getDefaultCell().setBackgroundColor(new GrayColor(0.75f));
for (int i = 0; i < 2; i++) {
table.addCell("#");
table.addCell("Key");
table.addCell("Value");
}
table.setHeaderRows(3);
table.setFooterRows(1);
table.getDefaultCell().setBackgroundColor(GrayColor.GRAYWHITE);
table.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
for (int counter = 1; counter < 101; counter++) {
table.addCell(String.valueOf(counter));
table.addCell("key " + counter);
table.addCell("value " + counter);
}
document.add(table);
document.close();
}

将此代码改编为 C# 应该相当简单。

第一个问题通过在表格级别定义列宽来解决。例如像这样(还有其他方法可以获得相同的结果):

float[] columnWidths = {1, 5, 5};
PdfPTable table = new PdfPTable(columnWidths);

值 1、5 和 5 不是绝对宽度。当我们将表格的宽度定义为页面边距内可用宽度的 100% 时,iText 会将可用宽度除以 11 (1 + 5 + 5),第一列将测量该值的 1 倍,而列二和三将测量该值的 5 倍。

第二个问题可以通过改变水平对齐来解决。如果您使用显式 PdfPCell 对象,则需要更改单元格级别的值,如以下行所示:

cell.setHorizontalAlignment(Element.ALIGN_CENTER);

如果将它留给 iText 来创建 PdfPCell 对象,则需要更改默认单元格级别的对齐方式:

table.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);

请注意,当您将 PdfPCell 对象添加到表格时,不会应用默认的单元格属性。在这种情况下,将使用 PdfPCell 的属性。

关于c# - 在 iTextSharp 中操作行和单元格的宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26628678/

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