Windows.UI.Core.PointerEventArgs.GetIntermediatePoints C# (CSharp) Method

GetIntermediatePoints() public method

public GetIntermediatePoints ( ) : IVector
return IVector
		public extern IVector<PointerPoint> GetIntermediatePoints();
	}

Usage Example

Ejemplo n.º 1
0
 void OnPointerMoved(CoreWindow sender, PointerEventArgs args)
 {
     try
     {
         gestureRecognizer.ProcessMoveEvents(args.GetIntermediatePoints());
     }
     catch (System.Exception e)
     {
         System.Diagnostics.Debug.WriteLine("Lets do the time warp again.");
     }
 }
All Usage Examples Of Windows.UI.Core.PointerEventArgs::GetIntermediatePoints
PointerEventArgs