Event emitted when the user starts dragging a draggable.
API
interface CdkDragStart<T = any> {
source: CdkDrag<T>;
event: MouseEvent | TouchEvent;
}
source
CdkDrag<T>Draggable that emitted the event.
event
MouseEvent | TouchEventNative event that started the drag sequence.