Search  Site map
Reporting Tools for Developers
 

Demo tour

Demo Tour previous pageAvailable versionsASP environmentFeaturesDemo Tour next page

Basic sample

Programming a PDF output using PDF In-The-Box is quite easy. It's similar to writing to a printer:

  1. Open the file by calling the BeginDoc method.

  2. Write text, draw graphics, insert images and hyperlinks using the various available methods.

  3. Close the file by calling the EndDoc method: your PDF document is generated!

A minimal example is displayed on the right. Naturally, PDF In-The-Box is capable of doing much more. The programming interface contains about 120 methods and properties.

 

Example
Programming language: Visual Basic

With PdfBox1
    .FileName = "c:\MyFile.pdf"
    .BeginDoc
    .TextOut 100, 100, "Hello world !"
    .EndDoc
End With

Move mouse over blue highlighted words to get comments.

 

 


Copyright © 1995-2008, Synactis Write to Webmaster