Manager class with API for recognizing user gestures.
GestureRecognizer performs only the minimal disambiguation between the set of gestures that you request. For example, if you request just Tap, the user may hold their finger down as long as they like and a Tap will still occur when the user releases their finger. For more details on the types of gestures available see GestureSettings.
GestureRecognizers will only receive events after StartCapturingGestures is called. StopCapturingGestures can be called again to stop events. This allows for GestureRecognizer to be activated and deactivated on demand such as when a users gaze moves over and away from an object.
GestureRecognizer | Create a GestureRecognizer. |
CancelGestures | Cancels any pending gesture events. Additionally this will call StopCapturingGestures. |
Dispose | Disposes the resources used by gesture recognizer. |
GetRecognizableGestures | Retrieve a mask of the currently enabled gestures. |
IsCapturingGestures | Used to query if the GestureRecognizer is currently receiving Gesture events. |
SetRecognizableGestures | Set the recognizable gestures to the ones specified in newMaskValues and return the old settings. |
StartCapturingGestures | Call to begin receiving gesture events on this recognizer. No events will be received until this method is called. |
StopCapturingGestures | Call to stop receiving gesture events on this recognizer. |
GestureErrorDelegate | Callback indicating an error or warning occurred. |
HoldCanceledEventDelegate | Callback indicating a cancel event. |
HoldCompletedEventDelegate | Callback indicating a hold completed event. |
HoldStartedEventDelegate | Callback indicating a hold started event. |
ManipulationCanceledEventDelegate | Callback indicating a cancel event. |
ManipulationCompletedEventDelegate | Callback indicating a completed event. |
ManipulationStartedEventDelegate | Callback indicating a started event. |
ManipulationUpdatedEventDelegate | Callback indicating a updated event. |
NavigationCanceledEventDelegate | Callback indicating a cancel event. |
NavigationCompletedEventDelegate | Callback indicating a completed event. |
NavigationStartedEventDelegate | Callback indicating a started event. |
NavigationUpdatedEventDelegate | Callback indicating a update event. |
RecognitionEndedEventDelegate | Callback indicating the gesture event has completed. |
RecognitionStartedEventDelegate | Callback indicating the gesture event has started. |
TappedEventDelegate | Callback indicating a tap event. |