AnnotationReaderEvents

Represents annotation reader events.

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.
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