The pan events on an object can be detected using the MSGestureStart (or MSGestureEnd) events.
When you tap and hold a MsGestureHold will be fired and then MSGestureStart and others when you start dragging Take a look to this page on MSDN for an example you can use to inspect these messages (below a quick extract):
When the user touches the surface and keeps their finger there, it fires an onmsgesturehold event. When the user swipes their finger, onmsgesturestart, onmsgesturechange, and onmsgestureend events are fired. If the user swipes quickly, an onmsinertiastart event is fired. The onmsinertiastart event is followed by a series of onmsgesturechange events, depending on the speed of the swipe, before an onmsgestureend event is fired. The onmsinertiastart event can help your code differentiate between a slow move and a quick flick, and react accordingly, like continuing movement of an object even though the contact with the surface is broken.