Saves the document as PDF.
Doc.Save Path
The destination file path.
Use this method to export the current document as PDF. The supplied path is used as the destination. Any existing file will be overwritten.
If you need to obtain a PDF as raw data you can use the GetData function.
The following code illustrates how one might add text to a PDF and then save it out.
Set theDoc = Server.CreateObject("ABCpdf3.Doc") theDoc.FontSize = 96 theDoc.AddText "Hello World" theDoc.Save "c:\docsave.pdf"
Set theDoc = Server.CreateObject("ABCpdf3.Doc") theDoc.FontSize = 96 theDoc.AddText "Hello World"
theDoc.Save "c:\docsave.pdf"
docsave.pdf