Core Library for WPF | ComponentOne
C1.WPF.Core Namespace / C1HoverHelper Class / PointerMoved Event

In This Topic
    PointerMoved Event
    In This Topic
    Occurs when the pointer moves over the bounds of the element.
    Syntax
    'Declaration
     
    
    Public Event PointerMoved As EventHandler(Of C1InputEventArgs)
    public event EventHandler<C1InputEventArgs> PointerMoved
    Event Data

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

    PropertyDescription
    Gets or sets a value that marks the routed event as handled. Setting to true prevents most handlers along the event route from handling the same event again.  
    Gets whether command key is pressed.  
    Gets whether ctrl key is pressed.  
    Gets whether shift key is pressed.  
    Gets the arguments of the original event which raised this event.  
    Gets a reference to the object that raised the event.  
    Gets the type of pointer which performed the action.  
    See Also