The following code adds two ovals to a document. The outline
oval is semi-transparent.
Set theDoc = Server.CreateObject("ABCpdf11.Doc")
theDoc.Width = 80
theDoc.Rect.Inset 50, 50
theDoc.Color = "255 0 0"
theDoc.AddOval True
theDoc.Color = "0 255 0 a128"
theDoc.AddOval False
theDoc.Save "c:\mypdfs\docaddoval.pdf"

docaddoval.pdf
|