See Also

Form Members

Description

Base class representing an PDF form.

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

Object Model



Interfaces

Implemented InterfaceDescription
Object 

Example

[ASP - VBScript] 

<% 
    Dim MgOptions  
    Set MgOptions = Server.CreateObject( "DynamicPDF.MergeOptions" ) 
    MgOptions.MergeFormFields = True  
    Dim MyDocument 
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" ) 
    ' Load a existing pdf Document which has Form with Form fields which can be edited using Adobe Acrobat 
    MyDocument.LoadPdf Server.MapPath( "PDFs/fw9AcroForm_03.pdf" ), , , MgOptions 
    ' Name field with Name f1-1 in the Document 
    MyDocument.Form.Fields.Item( "f1-1" ).Value = "David Anthony"  
    ' Address field with Name f1-4 in the Document 
    MyDocument.Form.Fields.Item( "f1-4" ).Value = "#4,Garden Lane, L.A, USA"  
    MyDocument.DrawToWeb 
    Set MyDocument = Nothing 
%> 

See Also

Form Members

 

 


© Copyright 2007, ceTe Software