ComponentOne Tiles for UWP
C1.UWP.Tile Assembly / C1.Xaml.Tile Namespace / C1TileService Class / SetPreservePointerCapture Method
The element from which to read the property value.
The property value to set.

In This Topic
    SetPreservePointerCapture Method
    In This Topic
    Sets the PreservePointerCapture attached property value on the specified element.
    Syntax
    'Declaration
     
    Public Shared Sub SetPreservePointerCapture( _
       ByVal obj As Windows.UI.Xaml.FrameworkElement, _
       ByVal value As System.Boolean _
    ) 
    public static void SetPreservePointerCapture( 
       Windows.UI.Xaml.FrameworkElement obj,
       System.bool value
    )

    Parameters

    obj
    The element from which to read the property value.
    value
    The property value to set.
    Remarks
    This property notifies the C1TileService, that it should not release pointer capture for the element. Set this property to true in the Control.OnPointerMoved override if the element needs pointer capture for some own functionality (for example, for dragging).
    See Also