ComponentOne Tiles for WPF and Silverlight
C1.Silverlight.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 (C1TileService)
    In This Topic
    Sets the PreservePointerCapture attached property value on the specified element.
    Syntax
    'Declaration
     
    
    Public Shared Sub SetPreservePointerCapture( _
       ByVal obj As FrameworkElement, _
       ByVal value As Boolean _
    ) 
    public static void SetPreservePointerCapture( 
       FrameworkElement obj,
       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