如何使用itextsharp插入选项卡?

时间:2012-09-28 08:07:10

标签: c# itextsharp

我正在使用iTextSharp在我的.net应用程序中生成pdf 我被困在一个小而简单的地方,我似乎无法弄明白。

我正在使用PdfPTable生成表并向其添加单元格。

在其中一个单元格中,我想添加说明其中的3个标签 我试过跟随2个代码,但没有给我想要的输出。

table.AddCell(new Phrase("\t\tDate:", sampleFont)); //Date:

table.AddCell(Chunk.TAB + Chunk.TAB + new Phrase("Date:", sampleFont)); //TABTABDate:

1 个答案:

答案 0 :(得分:5)

不幸的是,iTextSharp不支持Tab,但您可以改为使用Paragraph Paragraph.IndentationLeft

您还可以将cell.PaddingLeft用于表格单元格。