# Move Event
This event is emitted to stencil to move a stencil. It emits, for example, by DraggableArea component.
This event is represented by MoveEvent
class instance that has two fields:
directions
is the object withleft
andtop
fields, that tells to move stencil atleft
pixels horizontally andtop
pixels vertically
# Example
The example of emitting the MoveEvent
:
import {MoveEvent} from 'vue-advanced-cropper'
// For example, inside a method of your stencil
this.$emit('move', new MoveEvent({
left: leftShift,
top: topShift
}))