Thank you Bruno for your response ! I add a watermark like this : _Doc = New Document(PageSize.A4.Rotate) _Doc.SetMargins(40, 40, 40, 40) _Doc.Open() Dim Mywatermark As New Watermark(Image.GetInstance(Config.RepertoireApplication & "RessourcesEtats\demo.png"), 10, 10) _Doc.Add(Mywatermark)
I didn't find on documentation how to add a watermark UNDER PdfPTable :blush: Thanks again ! Bruno Lowagie (iText) wrote: > > morsi wrote: >> so I want to know the difference between Table and PdfPTable just to >> decide >> if it will be possible to transform all my PdfPTable to Table. > Do not switch from PdfPTable to Table! > Table is an old class, it's no longer supported. > How are you adding the watermark? > You should do this as explained in the book, namely with page events. > When adding the watermark you can choose if you add it UNDER > or ON TOP OF the existing content. > br, > Bruno > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > iText-questions mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/itext-questions > Buy the iText book: http://itext.ugent.be/itext-in-action/ > > -- View this message in context: http://www.nabble.com/Difference-between-Table-and-PdfPTable-tp14999442p15001376.html Sent from the iText - General mailing list archive at Nabble.com. ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://itext.ugent.be/itext-in-action/
