ComponentOne Maps for UWP
C1.UWP.Maps Assembly / C1.Xaml.Maps Namespace / C1VectorItemBase Class / PointerPressed Event

In This Topic
    PointerPressed Event (C1VectorItemBase)
    In This Topic
    Occurs when the pointer device initiates a Press action within this element.
    Syntax
    'Declaration
     
    
    Public Event PointerPressed As PointerEventHandler
    public event PointerEventHandler PointerPressed
    Event Data

    The event handler receives an argument of type PointerRoutedEventArgs containing data related to this event. The following PointerRoutedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets a value that marks the routed event as handled, and prevents most handlers along the event route from handling the same event again.  
    Gets a value that indicates which key modifiers were active at the time that the pointer event was initiated.  
    (Inherited from Windows.UI.Xaml.RoutedEventArgs)
    Gets a reference to a pointer token.  
    Remarks
    This event overrides Windows.UI.Xaml.UIElement's PointerPressed in order to allow handlers to prevent the default behavior of a press action.
    See Also