Something to keep in mind is that there are no objects from the DLL that you can insert and use from the toolbar; you need to programmatically create iTextSharp objects.
Like this:
Add import:
Imports iTextSharp.text.pdf
And in your code:
Dim writer As PdfWriter = PdfWriter.GetInstance(document, iostream)
source
share