Indicates whether or not accessibility is active.
Indicates whether or not accessibility is active. This property is typically set to true the first time an assistive technology, such as a screen reader, requests information about any JavaFX window or its children.
This method may be called from any thread.
the read-only boolean property indicating if accessibility is active
JavaFX 8u40
Causes the JavaFX application to terminate.
Gets the value of the implicitExit attribute.
Sets the implicitExit attribute to the specified value.
Returns true if the calling thread is the JavaFX Application Thread.
Queries whether a specific conditional feature is supported by the platform.
Run the specified code block on the JavaFX Application Thread at some unspecified time in the future.
Run the specified code block on the JavaFX Application Thread at some unspecified time in the future. Returns immediately.
Example use:
Platform.runLater {
println("Running on application thread.")
}
Run the specified Runnable on the JavaFX Application Thread at some unspecified time in the future.
Run the specified Runnable on the JavaFX Application Thread at some unspecified time in the future. Returns immediately.
Application platform support, wrapper for javafx.application.Platform.