Dovrei creare un footer con una tabella al suo interno, ho provato così ma non va:
codice:'Creo la Tabella Dim FooterTable As iTextSharp.text.Table = New iTextSharp.text.Table(1) FooterTable.Width = 100 FooterTable.BorderWidth = 1 FooterTable.BorderColor = New Color(0, 0, 0) FooterTable.Padding = 3 FooterTable.Spacing = 1 cell = New Cell("Questo è il Footer") : FooterTable.AddCell(cell) 'qui c'è l'errore Dim g As New HeaderFooter(FooterTable, False) ' iTextSharp.text.Table(FooterTable) doc.Footer = g

Rispondi quotando