|
First we create an ABCpdf Doc object and define the content
we're going to be adding.
[C#]
Doc theDoc = new Doc();
int theID = 0, theCount = 0, i = 0;
string theText = "Gallia est omnis divisa in partes tres, quarum
unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua
Celtae, nostra Galli appellantur. Hi omnes..."; // truncated for
clarity
[Visual Basic]
Dim theDoc As Doc = New Doc()
Dim theID As Integer = 0
Dim theCount As Integer = 0
Dim i As Integer = 0
Dim theText As String = "Gallia est omnis divisa in partes tres,
quarum unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum
lingua Celtae, nostra Galli appellantur. Hi omnes..." ' truncated
for clarity
|
|
|