how do i add another page to the document and start writing to it in vb.net please
Asked
Active
Viewed 927 times
-1
-
You've been down this road before? http://stackoverflow.com/questions/1940352/itextsharp-how-do-i-add-a-new-page-and-write-to-it – jball Dec 29 '09 at 18:54
2 Answers
1
The NewPage
method of the iTextSharp.Text.Document
class normally does this. What happens when you use that?

Aaronaught
- 120,909
- 25
- 266
- 342
1
Assuming you've got something like Dim document As New Document(...)
in your code, just call document.newPage()
.

jball
- 24,791
- 9
- 70
- 92