closeOutput

Close an output PDF file.
closeOutput([in] LONG outputHandle)
This function closes an output PDF file (which was opened with openOutput) and frees all associated memory.
VB6:
Dim out as Long out = pdf.openOutput "c:/test/newfile.pdf", 1.6 ... pdf.closeOutput out
VB.net:
Dim out as Long out = pdf.openOutput("c:/test/newfile.pdf", 1.6) ... pdf.closeOutput(out)
openOutput