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

In This Topic
    Tapped Event (C1VectorItemBase)
    In This Topic
    Occurs when an otherwise unhandled Tap interaction occurs over the hit test area of this element.
    Syntax
    'Declaration
     
    
    Public Event Tapped As TappedEventHandler
    public event TappedEventHandler Tapped
    Event Data

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

    PropertyDescription
    Gets or sets a value that marks the routed event as handled. A true value for Handled prevents most handlers along the event route from handling the same event again.  
    (Inherited from Windows.UI.Xaml.RoutedEventArgs)
    Gets the PointerDeviceType for the pointer device that initiated the associated input event.  
    Remarks
    This event overrides Windows.UI.Xaml.UIElement's Tapped in order to allow handlers to prevent the default behavior of a tapped action.
    See Also