iOSCanvas.PointerDrag

From Xojo Documentation

Event


iOSCanvas.PointerDrag(pos As Point, eventInfo As iOSEventInfo)

Supported on Mobile (iOS).

Called when the pointing device is dragged.

Sample Code

Saves the drag positions to draw as circles:

// mTouches is a property
// mTouches() As Point

mTouches.Append(pos)
Me.Invalidate