Package com.arbortext.epic.ui
Interface WebView2Event
- All Superinterfaces:
Event
- All Known Implementing Classes:
WebView2EventImpl
The
WebView2Event interface provides specific contextual
information associated with WebView2 events.- Since:
- Arbortext 8.3.0.0
-
Field Summary
Fields inherited from interface org.w3c.dom.events.Event
AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE -
Method Summary
Modifier and TypeMethodDescriptionvoidinitWebView2Event(String typeArg, boolean canBubbleArg, boolean cancelableArg) Initializes the value of aWebView2Eventcreated through theWindowcreateEventmethod.Methods inherited from interface org.w3c.dom.events.Event
getBubbles, getCancelable, getCurrentTarget, getEventPhase, getTarget, getTimeStamp, getType, initEvent, preventDefault, stopPropagation
-
Method Details
-
initWebView2Event
Initializes the value of aWebView2Eventcreated through theWindowcreateEventmethod. This method should only be called before theWebView2Eventhas been dispatched with thedispatchEventmethod, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.- Parameters:
typeArg- Specifies the event type.canBubbleArg- Specifies whether or not the event can bubble.cancelableArg- Specifies whether or not the event's default action can be prevented.
-