Uses of Class
javafx.scene.input.InputMethodEvent
Packages that use 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
Methods in javafx.scene that return types with arguments of type InputMethodEventModifier and TypeMethodDescriptionfinal EventHandler<? super InputMethodEvent>
Node.getOnInputMethodTextChanged()
Gets the value of the property onInputMethodTextChanged.final EventHandler<? super InputMethodEvent>
Scene.getOnInputMethodTextChanged()
Gets the value of the property onInputMethodTextChanged.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.Method parameters in javafx.scene with type arguments of type InputMethodEventModifier and TypeMethodDescriptionfinal void
Node.setOnInputMethodTextChanged
(EventHandler<? super InputMethodEvent> value) Sets the value of the property onInputMethodTextChanged.final void
Scene.setOnInputMethodTextChanged
(EventHandler<? super InputMethodEvent> value) Sets the value of the property onInputMethodTextChanged. -
Uses of InputMethodEvent in javafx.scene.control.skin
Methods in javafx.scene.control.skin with parameters of type InputMethodEventModifier and TypeMethodDescriptionprotected void
TextInputControlSkin.handleInputMethodEvent
(InputMethodEvent event) Handles an input method event. -
Uses of InputMethodEvent in javafx.scene.input
Fields in javafx.scene.input with type parameters of type InputMethodEventModifier 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.Methods in javafx.scene.input that return InputMethodEventModifier and TypeMethodDescriptionInputMethodEvent.copyFor
(Object newSource, EventTarget newTarget) Methods in javafx.scene.input that return types with arguments of type InputMethodEventConstructor parameters in javafx.scene.input with type arguments of type InputMethodEventModifierConstructorDescriptionInputMethodEvent
(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.