Uses of Class
org.pepstock.charba.client.dom.enums.KeyboardModifierKey
-
Packages that use KeyboardModifierKey Package Description org.pepstock.charba.client.dom.enums Contains enumerations used inside the DOM tree to set properties or invokes methods of elements or items.org.pepstock.charba.client.dom.events Contains all classes to map and manage DOM events.org.pepstock.charba.client.enums Contains all enumerations of some chart options where only a specific set of values can be set. -
-
Uses of KeyboardModifierKey in org.pepstock.charba.client.dom.enums
Methods in org.pepstock.charba.client.dom.enums that return KeyboardModifierKey Modifier and Type Method Description static KeyboardModifierKey
KeyboardModifierKey. valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyboardModifierKey[]
KeyboardModifierKey. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.pepstock.charba.client.dom.enums with parameters of type KeyboardModifierKey Modifier and Type Method Description static boolean
KeyboardModifierKey. arePressed(NativeBaseEvent event, KeyboardModifierKey... keys)
Returnstrue
if all modifier keys are pressed when the event was emitted.static boolean
KeyboardModifierKey. arePressed(HasNativeEvent event, KeyboardModifierKey... keys)
Returnstrue
if all modifier keys are pressed when the event was emitted. -
Uses of KeyboardModifierKey in org.pepstock.charba.client.dom.events
Methods in org.pepstock.charba.client.dom.events with parameters of type KeyboardModifierKey Modifier and Type Method Description boolean
NativeUIEvent. getModifierState(KeyboardModifierKey modifier)
Returns the current state of the specified modifier key:true
if the modifier is active (that is the modifier key is pressed or locked), otherwise,false
. -
Uses of KeyboardModifierKey in org.pepstock.charba.client.enums
Methods in org.pepstock.charba.client.enums that return KeyboardModifierKey Modifier and Type Method Description KeyboardModifierKey
ModifierKey. getKeyboardKey()
Returns the relatedKeyboardModifierKey
.
-