Example 17: Split an existing PDF file into single pages from VB.NET
Dim DC AsObject : DC = CreateObject("Neevia.docConverter")
Dim RVal AsInteger = DC.splitPDF("c:\test.pdf","c:\out\")
DC = NothingIf RVal=0 Then
MsgBox("Done !!!")
Else
MsgBox("There was an error splitting the document !!!")
EndIf