|
The following code creates a PDF document with text positioned
at a number of different points within it.
Set theDoc = Server.CreateObject("ABCpdf6.Doc")
theDoc.FontSize = 48
For i = 1 to 8
theDoc.Pos.X = i * 40
theDoc.Pos.Y = i * 80
theDoc.AddText "Pos = " & theDoc.Pos
Next
theDoc.Save "c:\mypdfs\docpos.pdf"

docpos.pdf
|