Exemple #1
0
 //*** para aplicar datos al arhcivo
 private static void MetaDatos(PdfDocument doc)
 {
     // Setting Document properties e.g.
     // 1. Title
     // 2. Subject
     // 3. Keywords
     // 4. Creator
     // 5. Author
     // 6. Header
     doc.AddTitle("Hello World example");
     doc.AddSubject("This is an Example 4 of Chapter 1 of Book 'iText in Action'");
     doc.AddKeywords("Metadata, iTextSharp 5.4.4, Chapter 1, Tutorial");
     doc.AddCreator("iTextSharp 5.4.4");
     doc.AddAuthor("Debopam Pal");
     doc.AddHeader("Nothing", "No Header");
 }