ComponentOne Tiles for UWP
C1.UWP.Tile Assembly / C1.Xaml.Tile Namespace / C1TileService Class / HandlePointerMoved Method
The element for which C1TileService.PointerDownAnimation attached property is set to true.
The event data for the pointer message event.

In This Topic
    HandlePointerMoved Method
    In This Topic
    Handles PointerMoved event. If the pointer, which is currently used for PointerDown animation, is moved, the C1TileService stops PointerDown animation.
    Syntax
    'Declaration
     
    Public Shared Sub HandlePointerMoved( _
       ByVal sender As System.Object, _
       ByVal e As Windows.UI.Xaml.Input.PointerRoutedEventArgs _
    ) 
    public static void HandlePointerMoved( 
       System.object sender,
       Windows.UI.Xaml.Input.PointerRoutedEventArgs e
    )

    Parameters

    sender
    The element for which C1TileService.PointerDownAnimation attached property is set to true.
    e
    The event data for the pointer message event.
    Remarks
    Call this method explicitly if the sender element needs pointer capture for some actions.
    See Also