|
All In-The-Box is available in 3 versions, corresponding to
different programming interfaces:
-
All In-The-Box ActiveX: to be used with Visual Basic, Visual C++,
and all development tools supporting the ActiveX standard.
-
All In-The-Box for Delphi:
offers a VCL programming interface, supporting the following Delphi
versions: 4, 5, 6, 7, 2005, 2006
and 2007 (in Win32 mode)
-
All 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 180 object-oriented methods, properties and
events. |
   |
|
' Language: Visual Basic
With
AllBox1
.Channel
= chDisplay
.DisplayHostHandle
= MyControl.Handle
.BeginDoc .TextOut 200, 300, "Hello world !" .EndDoc End With |
|
with
AllBox1 do
begin
Channel := chDisplay;
DisplayHost:= MyControl;
BeginDoc;
Canvas.TextOut (200, 300, 'Hello, world!');
EndDoc;
end; |
|
Move mouse over
blue highlighted words to get comments.
|