The following code adds two pie slices to a document.
Set theDoc = Server.CreateObject("ABCpdf12.Doc")
theDoc.Width = 80
theDoc.Rect.Inset 50, 50
theDoc.Color = "255 0 0"
theDoc.AddPie 0, 90, True
theDoc.Color = "0 255 0"
theDoc.AddPie 180, 270, False
theDoc.Save "c:\mypdfs\docaddpie.pdf"

docaddpie.pdf
|
|
|