NormalizedDragEvent
Represents a unified drag event that is triggered regardless if the native event underneath is a pointer, mouse, touch, or scroll event.
Definition
Package:@progress/kendo-angular-utils
Properties
altKey
boolean
Indicates if the alt key was pressed when the event occurred.
clientX
number
Represents the horizontal coordinate within the viewport
clientY
number
Represents the vertical coordinate within the viewport
ctrlKey
boolean
Indicates if the control key was pressed when the event occurred.
isTouch?
boolean
Indicates if the native event is a touch event.
metaKey
boolean
Indicates if the command (on Mac) key was pressed when the event occurred.
offsetX
number
Represents the horizontal offset coordinate of the mouse pointer between that event and the padding edge of the target node.
offsetY
number
Represents the vertical offset coordinate of the mouse pointer between that event and the padding edge of the target node.
originalEvent
MouseEvent | Event | PointerEvent | TouchEvent
Represents the original event which resulted in a drag event.
pageX
number
Represents the horizontal coordinate at which the mouse was clicked, relative to the left edge of the entire document.
pageY
number
Represents the vertical coordinate at which the mouse was clicked, relative to the left edge of the entire document.
scrollX
number
Represents the number of pixels that the document is currently scrolled horizontally.
scrollY
number
Represents the number of pixels that the document is currently scrolled vertically.
shiftKey
boolean
Indicates if the shift key was pressed when the event occurred.
type
string
Represents the event's type.