Example usage for Java javafx.scene.input KeyCombination fields, constructors, methods, implement or subclass
The text is from its open source code.
Modifier | SHIFT_DOWN Modifier which specifies that the shift key must be down. |
Modifier | CONTROL_DOWN Modifier which specifies that the control key must be down. |
Modifier | ALT_DOWN Modifier which specifies that the alt key must be down. |
Modifier | SHORTCUT_DOWN Modifier which specifies that the shortcut key must be down. |
KeyCombination | NO_MATCH A KeyCombination that will match with no events. |
KeyCombination(final Modifier... modifiers) Constructs a KeyCombination with the specified list of modifiers. |
boolean | match(final KeyEvent event) Tests whether this key combination matches the combination in the given KeyEvent . |