|
The following code creates a PDF document and adds some text using
a number of the text style properties to control formatting.
Set theDoc = Server.CreateObject("ABCpdf3.Doc")
theText = "Gallia est omnis divisa in partes tres, quarum unam
incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua Celtae,
nostra Galli appellantur. Hi omnes lingua, institutis, legibus inter
se differunt. Gallos ab Aquitanis Garumna flumen, a Belgis Matrona
et Sequana dividit."
theText = theText & vbCrLf & theText & vbCrLf &
theText & vbCrLf
theDoc.Rect.Inset 20, 20
theDoc.TextStyle.Size = 32
theDoc.TextStyle.Justification = 1
theDoc.TextStyle.Indent = 64
theDoc.TextStyle.ParaSpacing = 32
theDoc.AddText theText
theDoc.Save "c:\mypdfs\doctextstyle.pdf"

doctextstyle.pdf
|
|
|