|
PDF In-The-Box is available in 3 versions, corresponding to
different programming interfaces:
-
PDF In-The-Box ActiveX: to be used with Visual Basic, Visual C++,
and all development tools supporting the ActiveX standard. This
version can also
be used in ASP mode.
-
PDF In-The-Box for Delphi:
offers a VCL programming interface, supporting the following Delphi versions: 4, 5, 6, 7, 2005, 2006
and 2007 (in Win 32 mode)
-
PDF In-The-Box DLL:
based on a plain dynamic link library (not an ActiveX library).
Can be used with all Win32 development tools.
The three APIs are functionally
equivalent and can be used on all Microsoft Windows (Win32) platforms.
They contain about 110 object-oriented methods, properties and
events. |
   |
|
' Language: Visual Basic
With
PdfBox1
.FileName = "c:\MyFile.pdf"
.BeginDoc
.TextOut 200, 300, "Hello world !"
.EndDoc
End With |
|
with
PdfBox1 do
begin
FileName := 'c:\MyFile.pdf';
BeginDoc;
Canvas.TextOut (200, 300, 'Hello, world!');
EndDoc;
end; |
|
Move mouse over
blue highlighted words to get comments.
|