# DisplayEventDragMoved

`import { DisplayEventDragMoved } from "destack:display/binding";`

Drag moved display event.

```ds title="DisplayEventDragMoved"
export struct DisplayEventDragMoved {
    kind: "dragMoved";
    timestampNs: uint64;
    sequence: uint64;
    droppedCount: uint64;
    backend: DisplayBackendKind;
    window: WindowHandle;
    session: DisplayDragSessionHandle;
    position: WindowPoint;
}
```

[language/library/src/display/binding/event.ds:314:331](https://github.com/destack-sh/destack/blob/main/language/library/src/display/binding/event.ds#L314-L331)

## Members

### `kind: "dragMoved"`

Event discriminator.

### `timestampNs: uint64`

Event timestamp in nanoseconds.

### `sequence: uint64`

Event sequence number.

### `droppedCount: uint64`

Number of events dropped before this event.

### `backend: DisplayBackendKind`

Display backend.

### `window: WindowHandle`

Window handle.

### `session: DisplayDragSessionHandle`

Drag session handle.

### `position: WindowPoint`

Position inside the window.
