2017-03-07 9 views
0

私はこの面白いと思うが、私はどこに私がつかまったか知りません。 IAMのは、あなたが画像の下にPdfptable重複テーブルを取得

Duplicate table

を見ることができるようにitextsharpを使用し、正常にテーブルを作成することにより、PDF文書内のテーブルを作成しようとは、PDFを生成するために使用してコードIAMです。

private static void TestPDF() 
    { 
     Document document = new Document(iTextSharp.text.PageSize.A4, 60, 60, 10, 0); 
     try 
     { 
      PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(@"C:\PdfUpload\" + "testFile" + ".pdf", FileMode.Create)); 
      document.Open(); 
      PdfPTable table = new PdfPTable(new float[] { 4, 16, 4, 10, 4, 10, 4, 10, 10, 10, 4, 10, 10, 7, 6, 8 }); 
      table.TotalWidth = 580; 
      //table.WidthPercentage = 120; 

      PdfPCell cell = null; 

      modifycell(cell, "", ref table, 2, 0); 
      modifycell(cell, "Formative Asssessment", ref table, 8, 0); 
      modifycell(cell, "Summetive Assessment", ref table, 3, 0); 
      modifycell(cell, "Final Result", ref table, 3, 0); 

      modifycell(cell, "Year", ref table, 0, 2); 
      modifycell(cell, "Module Name", ref table, 0, 2); 
      modifycell(cell, "Digital Assessment", ref table, 2, 0); 
      modifycell(cell, "Group work", ref table, 2, 0); 
      modifycell(cell, "Assignment", ref table, 2, 0); 
      modifycell(cell, "Subtotal", ref table, 2, 0); 
      modifycell(cell, "Examanation", ref table, 3, 0); 
      modifycell(cell, "Final (100%)", ref table, 0, 2); 
      modifycell(cell, "Symbol", ref table, 0, 2); 
      modifycell(cell, "Status (Pass/Fail)", ref table, 0, 2); 

      modifycell(cell, "%", ref table, 0, 0); 
      modifycell(cell, "Weighted Controbution (20%)", ref table, 0, 0); 
      modifycell(cell, "%", ref table, 0, 0); 
      modifycell(cell, "Weighted Controbution (10%)", ref table, 0, 0); 
      modifycell(cell, "%", ref table, 0, 0); 
      modifycell(cell, "Weighted Controbution (30%)", ref table, 0, 0); 
      modifycell(cell, "Weighted Controbution (60%)", ref table, 0, 0); 
      modifycell(cell, "Subminimum achieved", ref table, 0, 0); 
      modifycell(cell, "%", ref table, 0, 0); 
      modifycell(cell, "Weighted Controbution (40%)", ref table, 0, 0); 
      modifycell(cell, "Subminimum achieved", ref table, 0, 0); 
      table.WriteSelectedRows(0, -1, 8, 700, writer.DirectContent); 
      document.Add(table); 
      document.Close(); 
     } 
     catch (Exception oException) { string sMessage = oException.ToString(); } 
    } 

    private static void modifycell(PdfPCell cell, string str, ref PdfPTable table, int Colspan = 0, int RowSpan = 0, 
     int Width = 0) 
    { 
     BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.EMBEDDED); 
     Font font = new Font(bf, 6); 
     cell = new PdfPCell(new Phrase(str, font)); 
     if (RowSpan > 0) 
      cell.Rowspan = RowSpan; 
     if (Colspan > 0) 
      cell.Colspan = Colspan; 
     if (Width > 0) 
      cell.Width = Width; 
     cell.HorizontalAlignment = Element.ALIGN_CENTER; 
     cell.VerticalAlignment = Element.ALIGN_MIDDLE; 
     cell.BackgroundColor = new iTextSharp.text.BaseColor(220, 220, 220); 
     cell.Border = 1; 
     cell.BorderColorLeft = BaseColor.BLACK; 
     cell.BorderWidthLeft = .5f; 
     cell.BorderColorRight = BaseColor.BLACK; 
     cell.BorderWidthRight = .5f; 
     cell.BorderColorBottom = BaseColor.BLACK; 
     cell.BorderWidthBottom = .5f; 
     table.AddCell(cell); 
    } 

答えて

0

なぜ2度テーブルを追加しますか?これは、表があるとあなたを驚かべきではありません

document.Add(table); 

table.WriteSelectedRows(0, -1, 8, 700, writer.DirectContent); 

はその後あなたがこの行でそれをもう一度追加します。あなたはこのラインで絶対位置に一度それを追加

2度追加されました。あなたの心を作り、その行の一つを削除してください。

+0

こんにちは@Bruno Lowagieちょうど1週間前に私はiTextSharpを使い始めましたが、私はちょっと混乱していましたが、素早く返信いただきありがとうございます。 – shiva

+0

問題を解決した場合は、回答を受け入れることが習慣です。 (現在スコア0の横にあるチェックマークを参照してください) –

関連する問題