Java javafx.stage WindowEvent fields, constructors, methods, implement or subclass

Example usage for Java javafx.stage WindowEvent fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javafx.stage WindowEvent.

The text is from its open source code.

Field

EventTypeWINDOW_SHOWN
This event occurs on window just after it is shown.
EventTypeWINDOW_HIDING
This event occurs on window just before it is hidden.
EventTypeWINDOW_CLOSE_REQUEST
This event is delivered to a window when there is an external request to close that window.

Constructor

WindowEvent(final @NamedArg("source") Window source, final @NamedArg("eventType") EventType eventType)
Construct a new Event with the specified event source, target and type.

Method

voidconsume()
Marks this Event as consumed.
EventTypegetEventType()
ObjectgetSource()
The object on which the Event initially occurred.