Code Samples - Neevia docCreator

Example 17: Split an existing PDF file into single pages - Delphi Copy 

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
   procedure splitPDF();
   var
     DC   : Variant;
     RVal : Integer;
   begin
     try
       DC := CreateOleObject('Neevia.docCreator');

       RVal := DC.splitPDF('c:\users\public\test.pdf', 'c:\users\public\');

       if (RVal <> 0) then
          ShowMessage('There was an error!!! Code: '+IntToStr(RVal))
       else
          ShowMessage('Done !!!');
     finally
       DC := Unassigned;
     end;
   end;