The UIEvent interface represents simple user interface events.
The UIEvent interface represents simple user interface events.
(cancel-bubble this)
Property.
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. 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`
Constructor.
The UIEvent() constructor creates a new web.UIEvent
.
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/UIEvent
Constructor. The UIEvent() constructor creates a new `web.UIEvent`. See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/UIEvent`
(detail this)
Property.
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. 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.
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. 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.
The UIEvent.isChar read-only property returns a web.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. The UIEvent.isChar read-only property returns a `web.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.
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. 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.
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. 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.
The non-standard, read-only web.UIEvent
property pageX returns
horizontal coordinate of the event relative to the whole document.
var pos = event.pageX
See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/pageX
Property. The non-standard, read-only `web.UIEvent` property pageX returns horizontal coordinate of the event relative to the whole document. `var pos = event.pageX` See also: `https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/pageX`
(page-y this)
Property.
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. 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.
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. 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-source-capabilities! this val)
Property.
The UIEvent.sourceCapabilities read-only property returns an
of the web.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. The UIEvent.sourceCapabilities read-only property returns an of the `web.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`
(source-capabilities this)
Property.
The UIEvent.sourceCapabilities read-only property returns an
of the web.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. The UIEvent.sourceCapabilities read-only property returns an of the `web.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.
The UIEvent.view read-only property returns the web.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. The UIEvent.view read-only property returns the `web.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`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close