The UIEvent interface represents simple user interface events.
The UIEvent interface represents simple user interface events.
(cancel-bubble this)
Property.
[Deprecated] [Non Standard]
The UIEvent.cancelBubble property indicates if event bubbling this event has been canceled or not. It is set to false by default, the event to bubble up the DOM, if it is a bubbleable event. this property to true stops the event from bubbling up the DOM. all events are allowed to bubble up the DOM.
event.cancelBubble = bool; var bool = event.cancelBubble;
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/cancelBubble
Property. [Deprecated] [Non Standard] The UIEvent.cancelBubble property indicates if event bubbling this event has been canceled or not. It is set to false by default, the event to bubble up the DOM, if it is a bubbleable event. this property to true stops the event from bubbling up the DOM. all events are allowed to bubble up the DOM. `event.cancelBubble = bool; var bool = event.cancelBubble;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/cancelBubble`
(detail this)
Property.
[Read Only]
The UIEvent.detail read-only property, when non-zero, provides current (or next, depending on the event) click count.
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/detail
Property. [Read Only] The UIEvent.detail read-only property, when non-zero, provides current (or next, depending on the event) click count. See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/detail`
(init-ui-event this type can-bubble cancelable view detail)
Method.
[Deprecated]
The UIEvent.initUIEvent() method initializes a UI event once been created.
event.initUIEvent(type, canBubble, cancelable, view, detail)
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/initUIEvent
Method. [Deprecated] The UIEvent.initUIEvent() method initializes a UI event once been created. `event.initUIEvent(type, canBubble, cancelable, view, detail)` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/initUIEvent`
(is-char this)
Property.
[Read Only] [Obsolute]
The UIEvent.isChar read-only property returns a js.Boolean
whether the event produced a key character or not.
var isChar = UIEvent.isChar;
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/isChar
Property. [Read Only] [Obsolute] The UIEvent.isChar read-only property returns a `js.Boolean` whether the event produced a key character or not. `var isChar = UIEvent.isChar;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/isChar`
(layer-x this)
Property.
[Read Only] [Non Standard]
The UIEvent.layerX read-only property returns the horizontal of the event relative to the current layer.
`var xpos = event.layerX
xpos is an integer value in pixels for the x-coordinate of the mouse pointer, when the mouse event fired.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/layerX
Property. [Read Only] [Non Standard] The UIEvent.layerX read-only property returns the horizontal of the event relative to the current layer. `var xpos = event.layerX xpos is an integer value in pixels for the x-coordinate of the mouse pointer, when the mouse event fired.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/layerX`
(layer-y this)
Property.
[Read Only] [Non Standard]
The UIEvent.layerY read-only property returns the vertical coordinate the event relative to the current layer.
`var ypos = event.layerY;
ypos is an integer value in pixels for the y-coordinate of the mouse pointer, when the mouse event fired.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/layerY
Property. [Read Only] [Non Standard] The UIEvent.layerY read-only property returns the vertical coordinate the event relative to the current layer. `var ypos = event.layerY; ypos is an integer value in pixels for the y-coordinate of the mouse pointer, when the mouse event fired.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/layerY`
(page-x this)
Property.
[Read Only] [Obsolute]
The non-standard, read-only web.event.UIEvent
property pageX
the horizontal coordinate of the event relative to the whole
var pos = event.pageX
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/pageX
Property. [Read Only] [Obsolute] The non-standard, read-only `web.event.UIEvent` property pageX the horizontal coordinate of the event relative to the whole `var pos = event.pageX` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/pageX`
(page-y this)
Property.
[Read Only] [Non Standard]
The UIEvent.pageY read-only property returns the vertical coordinate the event relative to the whole document.
`var pageY = event.pageY;
pageY is an integer value in pixels for the y-coordinate of the mouse pointer, relative to the whole document, when the mouse event fired. This property takes into account any vertical scrolling of the page.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/pageY
Property. [Read Only] [Non Standard] The UIEvent.pageY read-only property returns the vertical coordinate the event relative to the whole document. `var pageY = event.pageY; pageY is an integer value in pixels for the y-coordinate of the mouse pointer, relative to the whole document, when the mouse event fired. This property takes into account any vertical scrolling of the page.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/pageY`
(set-cancel-bubble! this val)
Property.
[Deprecated] [Non Standard]
The UIEvent.cancelBubble property indicates if event bubbling this event has been canceled or not. It is set to false by default, the event to bubble up the DOM, if it is a bubbleable event. this property to true stops the event from bubbling up the DOM. all events are allowed to bubble up the DOM.
event.cancelBubble = bool; var bool = event.cancelBubble;
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/cancelBubble
Property. [Deprecated] [Non Standard] The UIEvent.cancelBubble property indicates if event bubbling this event has been canceled or not. It is set to false by default, the event to bubble up the DOM, if it is a bubbleable event. this property to true stops the event from bubbling up the DOM. all events are allowed to bubble up the DOM. `event.cancelBubble = bool; var bool = event.cancelBubble;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/cancelBubble`
(set-which! this val)
Property.
Returns the numeric keyCode of the key pressed, or the character (charCode) for an alphanumeric key pressed.
Property. Returns the numeric keyCode of the key pressed, or the character (charCode) for an alphanumeric key pressed.
(source-capabilities this)
Property.
[Read Only] [Experimental]
The UIEvent.sourceCapabilities read-only property returns an
of the web.other.InputDeviceCapabilities
interface which provides
about the physical device responsible for generating a touch
If no input device was responsible for the event, it returns
var iDC = event.sourceCapabilities
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/sourceCapabilities
Property. [Read Only] [Experimental] The UIEvent.sourceCapabilities read-only property returns an of the `web.other.InputDeviceCapabilities` interface which provides about the physical device responsible for generating a touch If no input device was responsible for the event, it returns `var iDC = event.sourceCapabilities` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/sourceCapabilities`
(view this)
Property.
[Read Only]
The UIEvent.view read-only property returns the WindowProxy
from which the event was generated. In browsers, this is the
object the event happened in.
`var view = event.view;
view is a reference to an AbstractView object.`
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/view
Property. [Read Only] The UIEvent.view read-only property returns the `WindowProxy` from which the event was generated. In browsers, this is the object the event happened in. `var view = event.view; view is a reference to an AbstractView object.` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/view`
(which this)
Property.
Returns the numeric keyCode of the key pressed, or the character (charCode) for an alphanumeric key pressed.
Property. Returns the numeric keyCode of the key pressed, or the character (charCode) for an alphanumeric key pressed.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close