Description
Represents a page element containing the data of an imported page from a PDF document.
For a list of all members defined in this module, see ImportedPageData members.
Object Model
Remarks
This class can be used to pull a single selected page from an existing PDF document. It can be scaled or rotated and can be placed on another page.
Interfaces
| Implemented Interface | Description |
| Object | |
Example
[ASP - VBScript]
<% Dim MyDocument Dim MyPage Set MyDocument = Server.CreateObject( "DynamicPDF.Document" ) MyDocument.DefaultPageWidth = 1200 MyDocument.DefaultPageHeight = 800 Set MyPage = MyDocument.AddPage() MyPage.AddImportedPageData Server.MapPath( "PDFs/DocumentA.pdf" ), 1, -306, 0 MyPage.AddImportedPageData Server.MapPath( "PDFs/DocumentA.pdf" ), 4, 306, 0 MyDocument.DrawToWeb Set MyPage = Nothing Set MyDocument = Nothing %>
|
See Also
ImportedPageData Members
© Copyright 2007, ceTe Software