|
There are four public namespaces in ABCpdf. You can reference these
using the following directives.
[C#]
using WebSupergoo.ABCpdf6;
using WebSupergoo.ABCpdf6.Objects;
using WebSupergoo.ABCpdf6.Atoms;
using WebSupergoo.ABCpdf6.Operations;
[Visual Basic]
Imports WebSupergoo.ABCpdf6
Imports WebSupergoo.ABCpdf6.Objects
Imports WebSupergoo.ABCpdf6.Atoms
Imports WebSupergoo.ABCpdf6.Operations
The ABCpdf6 namespace contains the objects you will use for page
layout. Most of the time it is the only namespace you will need.
The Objects namespace allows you to access and manipulate content
you've already added. You may use this namespace for complex operations
in which the standard page layout functionality requires some modification.
The Atoms namespace allows you low level access to the raw PDF
data structures. You are unlikely to use objects from this namespace
unless you are writing very low level code.
The Operations namespace allows you to perform complex operations
with multiple parameters and callbacks.
|