|
分類:[.NET 全般]
[開発環境]ASP.NET(VB)
itextsharpを使ってPDFを作成しています。
2×2の表を作成したいのですが、以下のコードでは、表が表示されません。
---------------------------------------------------------------------
Dim pcb As PdfContentByte = Nothing
pcb = pw.DirectContent
Dim pdfTable As New PdfPTable(2)
Dim pdfCell As New PdfPCell
pdfTable.TotalWidth = 400
pdfTable.SetTotalWidth(New Single() {200, 200})
pdfTable.WidthPercentage = 70
pdfCell = New PdfPCell(New Phrase("TEST", font))
pdfTable.AddCell(pdfCell)
doc.Add(pdfTable)
どなたかご存知の方がいらっしゃいましたら、教えて頂けませんでしょうか。
宜しくお願い致します。
|