IDragBaseEventArgs

Reference to the original event that caused the interaction with the element. Can be PointerEvent, TouchEvent or MouseEvent.

originalEvent: PointerEvent | MouseEvent | TouchEvent | TransitionEvent | null

Defined in projects/igniteui-angular/directives/src/directives/drag-drop/drag-drop.directive.ts:99

The owner igxDrag directive that triggered this event.

owner: IgxDragDirective

Defined in projects/igniteui-angular/directives/src/directives/drag-drop/drag-drop.directive.ts:101

The current position of the pointer on X axis when the event was triggered. Note: The browser might trigger the event with some delay and pointer would be already inside the igxDrop.

pageX: number

Defined in projects/igniteui-angular/directives/src/directives/drag-drop/drag-drop.directive.ts:110

The current position of the pointer on Y axis when the event was triggered. Note: The browser might trigger the event with some delay and pointer would be already inside the igxDrop.

pageY: number

Defined in projects/igniteui-angular/directives/src/directives/drag-drop/drag-drop.directive.ts:115

The initial position of the pointer on X axis when the dragged element began moving

startX: number

Defined in projects/igniteui-angular/directives/src/directives/drag-drop/drag-drop.directive.ts:103

The initial position of the pointer on Y axis when the dragged element began moving

startY: number

Defined in projects/igniteui-angular/directives/src/directives/drag-drop/drag-drop.directive.ts:105