WinUI | ComponentOne
C1.WinUI.Core Assembly / C1.WinUI.Core Namespace / C1TapHelper Class / ManipulationStarted Event
In This Topic
    ManipulationStarted Event
    In This Topic
    Occurs when one or more fingers get in contact with the screen or mouse button was pressed.
    Syntax
    public event EventHandler<C1InputEventArgs> ManipulationStarted
    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