AnnotationReaderEvents

Represents annotation reader events.

public class AnnotationReaderEvents
Public Class AnnotationReaderEvents

Inheritance: ObjectAnnotationReaderEvents

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 annotation reader events.
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 see the form field hide action : ", 50, 100, 330, 30)
    Dim Myfield As ceTe.DynamicPDF.PageElements.Forms.TextField = New ceTe.DynamicPDF.PageElements.Forms.TextField("Text1", 330, 100, 100, 30)
    Myfield.DefaultValue = "Text Field Value"
     
    ' Add the label, button and text field to the page
    MyPage.Elements.Add(MyButton)
    MyPage.Elements.Add(Myfield)
    MyPage.Elements.Add(MyLabel)
     
    ' Create a annotation show hide action and assign to the button events
    Dim MyAction As AnnotationShowHideAction = New AnnotationShowHideAction("Text1")
    MyButton.ReaderEvents.MouseDown = 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 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 see the form field hide action : ", 50, 100, 330, 30);
        ceTe.DynamicPDF.PageElements.Forms.TextField field = new ceTe.DynamicPDF.PageElements.Forms.TextField("Text1", 330, 100, 100, 30);
        field.DefaultValue = "Text Field Value";

        // Add the label, button and text field to the page
        page.Elements.Add(button);
        page.Elements.Add(field);
        page.Elements.Add(label1);

        // Create a annotation show hide action and assign to the button events.
        AnnotationShowHideAction action = new AnnotationShowHideAction("Text1");
        button.ReaderEvents.MouseDown = action;

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

Constructors

AnnotationReaderEvents()Initializes a new instance of the AnnotationReaderEvents class.

Properties

MouseDownGets or sets annotation mouse down event actions.
MouseEnterGets or sets annotation mouse enter event actions.
MouseExitGets or sets annotation mouse exit event actions.
MouseUpGets or sets annotation mouse up event actions.
OnBlurGets or sets annotation on blur event actions.
OnFocusGets or sets annotation on focus event actions.

Methods

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