Uses of Class
javafx.scene.web.WebEvent
Packages that use WebEvent
Package
Description
This package provides means for loading and displaying Web content.
-
Uses of WebEvent in javafx.scene.web
Fields in javafx.scene.web with type parameters of type WebEventModifier and TypeFieldDescriptionWebEvent.ALERT
This event occurs when a script calls the JavaScriptalert
function.WebEvent.ANY
Common supertype for all Web event types.WebEvent.RESIZED
This event occurs when a script changes location of the JavaScriptwindow
object.WebEvent.STATUS_CHANGED
This event occurs when a script changes status line text.WebEvent.VISIBILITY_CHANGED
This event occurs when a script changes visibility of the JavaScriptwindow
object.Methods in javafx.scene.web that return types with arguments of type WebEventModifier and TypeMethodDescriptionWebEngine.getOnAlert()
Gets the value of the property onAlert.WebEngine.getOnResized()
Gets the value of the property onResized.WebEngine.getOnStatusChanged()
Gets the value of the property onStatusChanged.WebEngine.getOnVisibilityChanged()
Gets the value of the property onVisibilityChanged.WebEngine.onAlertProperty()
JavaScriptalert
handler property.WebEngine.onResizedProperty()
JavaScript window resize handler property.WebEngine.onStatusChangedProperty()
JavaScript status handler property.WebEngine.onVisibilityChangedProperty()
JavaScript window visibility handler property.Method parameters in javafx.scene.web with type arguments of type WebEventModifier and TypeMethodDescriptionvoid
WebEngine.setOnAlert(EventHandler<WebEvent<String>> handler)
Sets the value of the property onAlert.void
WebEngine.setOnResized(EventHandler<WebEvent<Rectangle2D>> handler)
Sets the value of the property onResized.void
WebEngine.setOnStatusChanged(EventHandler<WebEvent<String>> handler)
Sets the value of the property onStatusChanged.void
WebEngine.setOnVisibilityChanged(EventHandler<WebEvent<Boolean>> handler)
Sets the value of the property onVisibilityChanged.Constructor parameters in javafx.scene.web with type arguments of type WebEvent