See Also

PdfDocument Members

Description

Represents a PDF document for import.

For a list of all members defined in this module, see PdfDocument members.

Object Model


Remarks

This class should be used when you will be referencing an existing PDF document more than once. Using a PdfDocument is more efficient than specifying a file path because the document will not need to be parsed again on each subsequent reference. This class is safe for multithreaded operations.

Interfaces

Implemented InterfaceDescription
Object 

Example

[ASP - VBScript] 

<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"--> 
<% 
    'Create Pdf doc 
    Dim Pdf 
    Set Pdf = Server.CreateObject( "DynamicPdf.PdfDocument" ) 
    Pdf.LoadPdf Server.MapPath("../PDFs/DocumentA.pdf") 
    'Create document 
    Dim MyDocument  
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" )  
    MyDocument.LoadPdf Pdf 
    ' Save the PDF document 
    MyDocument.DrawToWeb() 
%>

See Also

PdfDocument Members

 

 


© Copyright 2007, ceTe Software