[]
Defines events common for all acroform fields.
public class WidgetAnnotation.TriggerEvents : TriggerEvents
Gets or sets an action to be performed when the annotation is activated.
[Obsolete("Use WidgetAnnotation.Activate instead.")]
public ActionBase Activate { get; set; }
Gets or sets an action to be performed when the page containing the annotation is closed (for example, when the user navigates to the next or previous page, or follows a link annotation or outline item).
public ActionBase AnnotationPageClosed { get; set; }
Gets or sets an action to be performed when the page containing the annotation is no longer visible in the viewer application’s user interface.
public ActionBase AnnotationPageHide { get; set; }
Gets or sets an action to be performed when the page containing the annotation is opened (for example, when the user navigates to it from the next or previous page or by means of a link annotation or outline item).
public ActionBase AnnotationPageOpened { get; set; }
Gets or sets an action to be performed when the page containing the annotation becomes visible in the viewer application’s user interface.
public ActionBase AnnotationPageShow { get; set; }
Gets or sets an action to be performed when the annotation receives the input focus.
public ActionBase Enter { get; set; }
Gets or sets an action to be performed when the annotation loses the input focus.
public ActionBase Leave { get; set; }
Gets or sets an action to be performed when the mouse button is pressed inside the field’s active area.
public ActionBase MouseDown { get; set; }
Gets or sets an action to be performed when the mouse enters the field’s active area.
public ActionBase MouseEnter { get; set; }
Gets or sets an action to be performed when the cursor exits the field’s active area.
public ActionBase MouseLeave { get; set; }
Gets or sets an action to be performed when the mouse button is released inside the field’s active area.
public ActionBase MouseUp { get; set; }