ImportFormDataAction

Represents an import form data action.

public class ImportFormDataAction : OutlineAnnotationAction
Public Class ImportFormDataAction
    Inherits OutlineAnnotationAction

Inheritance: ObjectActionOutlineAnnotationActionImportFormDataAction

Licensing Info

This class is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Examples

The following example shows how to use import form data action.
Imports ceTe.DynamicPDF
Imports ceTe.DynamicPDF.PageElements.Forms
Imports ceTe.DynamicPDF.PageElements
     
Module MyModule
     
    Sub Main()	
     	
        ' Create a PDF Document
        Dim MyDocument As Document = New Document()
     
        ' Create a page and add it to the document
        Dim MyPage As Page = New Page()
        MyDocument.Pages.Add(MyPage)
     
        Dim MyButton As Button = New Button("btn", 50, 150, 100, 30)
        MyButton.Label = "Click Here"
     
        ' Create label and text field
        Dim MyLabel As Label = New Label("Click the button to fill the text field using import data action: ", 50, 100, 250, 30)
        Dim Myfield As ceTe.DynamicPDF.PageElements.Forms.TextField = New ceTe.DynamicPDF.PageElements.Forms.TextField("Text1", 320, 100, 100, 30)
         
        ' Add the label and form fields to the page
        MyPage.Elements.Add(MyButton)
        MyPage.Elements.Add(Myfield)
        MyPage.Elements.Add(MyLabel)
      
        ' Create a import form data action and assign to the button events.
        Dim MyAction As ImportFormDataAction = New ImportFormDataAction("FdfFilePath")
        MyButton.ReaderEvents.MouseUp = MyAction
     
        ' Save the PDF
        MyDocument.Draw("C:\MyDocument.pdf")
       
    End Sub
End Module
using ceTe.DynamicPDF;
using ceTe.DynamicPDF.PageElements.Forms;
using ceTe.DynamicPDF.PageElements;

public class Example 
{
    public static void CreatePDF(string fdfFilePath, string outputPath)
    {
        // Create a PDF Document
        Document document = new Document();

        // Create a page and add it to the document
        Page page = new Page();
        document.Pages.Add(page);

        Button button = new Button("btn", 50, 150, 100, 30);
        button.Label = "Click Here";

        // Create label and text field
        Label label1 = new Label("Click the button to fill the text field using import data action: ", 50, 100, 250, 30);
        ceTe.DynamicPDF.PageElements.Forms.TextField field = new ceTe.DynamicPDF.PageElements.Forms.TextField("Text1", 320, 100, 100, 30);

        // Add the label and form fields to the page
        page.Elements.Add(button);
        page.Elements.Add(field);
        page.Elements.Add(label1);

        // Create a import form data action and assign to the button events.
        ImportFormDataAction action = new ImportFormDataAction(fdfFilePath);
        button.ReaderEvents.MouseUp = action;

        // Save the PDF
        document.Draw(outputPath);
    }
}

Constructors

ImportFormDataAction()Initializes a new instance of the import form data action class.
ImportFormDataAction(String)Initializes a new instance of the import form data action class.

Properties

NextActionGets or sets next action for the current action.
(Inherited from OutlineAnnotationAction)

Methods

Draw(DocumentWriter)Draws the action to the specified DocumentWriter object.
Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicPDF

In this topic