Uses of Class
org.faceless.pdf2.Event
-
Packages that use Event Package Description org.faceless.pdf2 Contains the classes used to create a PDF document -
-
Uses of Event in org.faceless.pdf2
Fields in org.faceless.pdf2 declared as Event Modifier and Type Field Description static Event[]
Event. ALL
A list of all the Event objects, to make iterating over them easierstatic Event
Event. BLUR
Occurs when aWidgetAnnotation
loses the cursor focusstatic Event
Event. CHANGE
Occurs when aFormElement
has it's value changedstatic Event
Event. CLOSE
static Event
Event. FOCUS
Occurs when aWidgetAnnotation
gains the cursor focusstatic Event
Event. FORMAT
Occurs when aFormElement
has had it's value changed and is about to be reformatted for display.static Event
Event. HIDE
Occurs when a page containing an annotation is hidden.static Event
Event. INVALID
An Event that can be used to retrieve or clear any invalid event types from an object.static Event
Event. KEYPRESS
Occurs when aFormElement
has a key pressed in one of it's annotations.static Event
Event. MOUSEDOWN
Occurs when aWidgetAnnotation
has the mouse button depressed inside itstatic Event
Event. MOUSEOUT
Occurs when aWidgetAnnotation
has the mouse roll off itstatic Event
Event. MOUSEOVER
Occurs when aWidgetAnnotation
has the mouse roll over itstatic Event
Event. MOUSEUP
Occurs when aWidgetAnnotation
has the mouse button released after having it depressed inside itstatic Event
Event. OPEN
static Event
Event. OTHERCHANGE
Occurs when aFormElement
other than itself has it's value changed.static Event
Event. POST_PRINT
Occurs when aPDF
has just been be printed (Doc/DidPrint).static Event
Event. POST_SAVE
Occurs when aPDF
has just been be saved (Doc/DidSave).static Event
Event. PRE_PRINT
Occurs when aPDF
is about to be printed (Doc/WillPrint).static Event
Event. PRE_SAVE
Occurs when aPDF
is about to be saved (Doc/WillSave).static Event
Event. SHOW
Occurs when a page containing an annotation becomes visible.Methods in org.faceless.pdf2 with parameters of type Event Modifier and Type Method Description PDFAction
FormElement. getAction(Event event)
Get the action that's performed when the specified event takes place on this field.PDFAction
PDF. getAction(Event event)
Return the action that's performed when the specified event occurs on the document, as set bysetAction
.PDFAction
PDFAnnotation. getAction(Event event)
Return the action assocaited with this event, as set byPDFAnnotation.setAction(org.faceless.pdf2.Event, org.faceless.pdf2.PDFAction)
, or null if its unset.PDFAction
PDFPage. getAction(Event event)
Get the action that's perform when this page is displayed.PDFAction
WidgetAnnotation. getAction(Event event)
Return the action that occurs when the specified event happens to this annotation.void
FormElement. setAction(Event event, PDFAction action)
Set the action to perform when the specified event takes place on this field.void
PDF. setAction(Event event, PDFAction action)
Specify an action to perform when the specified event occurs on the document.void
PDFAnnotation. setAction(Event event, PDFAction action)
Set an action to occur when the specified event happens to this annotation.void
PDFPage. setAction(Event event, PDFAction action)
Set the action to perform when the specified event occurs.void
WidgetAnnotation. setAction(Event event, PDFAction action)
Set an action to occur when the specified event happens to this annotation.
-