All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.cesium.KeyboardEventModifier.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:JsModule("cesium")

package cesium

/**
 * This enumerated type is for representing keyboard modifiers. These are keys
 * that are held down in addition to other event types.
 * @see Online Documentation
 */

external enum class KeyboardEventModifier {

    /**
     * Represents the shift key being held down.
     */
    SHIFT,

    /**
     * Represents the control key being held down.
     */
    CTRL,

    /**
     * Represents the alt key being held down.
     */
    ALT,

    ;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy