Uses of Class
javafx.scene.input.InputMethodEvent
Package
Description
Provides the core set of base
classes for the JavaFX Scene Graph API.
The javafx.scene.control.skin package is where the skin classes, typically
one for each UI control, are located
Provides the set of classes for mouse and keyboard input event handling.
-
Uses of InputMethodEvent in javafx.scene
Modifier and TypeMethodDescriptionfinal EventHandler<? super InputMethodEvent>
Node.getOnInputMethodTextChanged()
Gets the value of theonInputMethodTextChanged
property.final EventHandler<? super InputMethodEvent>
Scene.getOnInputMethodTextChanged()
Gets the value of theonInputMethodTextChanged
property.final ObjectProperty<EventHandler<? super InputMethodEvent>>
Defines a function to be called when thisNode
has input focus and the input method text has changed.final ObjectProperty<EventHandler<? super InputMethodEvent>>
Scene.onInputMethodTextChangedProperty()
Defines a function to be called when thisNode
has input focus and the input method text has changed.Modifier and TypeMethodDescriptionfinal void
Node.setOnInputMethodTextChanged
(EventHandler<? super InputMethodEvent> value) Sets the value of theonInputMethodTextChanged
property.final void
Scene.setOnInputMethodTextChanged
(EventHandler<? super InputMethodEvent> value) Sets the value of theonInputMethodTextChanged
property. -
Uses of InputMethodEvent in javafx.scene.control.skin
Modifier and TypeMethodDescriptionprotected void
TextInputControlSkin.handleInputMethodEvent
(InputMethodEvent event) Handles an input method event. -
Uses of InputMethodEvent in javafx.scene.input
Modifier and TypeFieldDescriptionstatic final EventType<InputMethodEvent>
InputMethodEvent.ANY
Common supertype for all input method event types.static final EventType<InputMethodEvent>
InputMethodEvent.INPUT_METHOD_TEXT_CHANGED
The only valid EventType for the InputMethodEvent.Modifier and TypeMethodDescriptionInputMethodEvent.copyFor
(Object newSource, EventTarget newTarget) ModifierConstructorDescriptionInputMethodEvent
(Object source, EventTarget target, EventType<InputMethodEvent> eventType, List<InputMethodTextRun> composed, String committed, int caretPosition) Constructs new InputMethodEvent event.InputMethodEvent
(EventType<InputMethodEvent> eventType, List<InputMethodTextRun> composed, String committed, int caretPosition) Constructs new InputMethodEvent event with empty source and target.