|
In this example we add three blocks of text to a document. The
first block uses the default spacing. The second block uses a positive
value to stretch out the text. The last block uses a negative value
to condense the text.
Set theDoc = Server.CreateObject("ABCpdf6.Doc")
theText = "This is an example of word spacing."
theDoc.TextStyle.Size = 72
theDoc.AddText theText
theDoc.Rect.Move 0, -300
theDoc.TextStyle.WordSpacing = 20
theDoc.AddText theText
theDoc.Rect.Move 0, -300
theDoc.TextStyle.WordSpacing = -20
theDoc.AddText theText
theDoc.Save "c:\mypdfs\stylewspace.pdf"

stylewspace.pdf
|