# 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:
directionsis the object withleftandtopfields, that tells to move stencil atleftpixels horizontally andtoppixels 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
}))